aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat
diff options
context:
space:
mode:
authorChih-Wei Huang <cwhuang@linux.org.tw>2013-11-03 00:08:04 +0800
committerSteve Kondik <steve@cyngn.com>2016-02-15 11:28:42 -0500
commitba499596a9e22d9f0dd9356e9a73038a7046c78e (patch)
tree1b6feeaf0e6a43b9789a5fa85a4e53d779b2b0d9 /libavformat
parent0aa2fbddb19035cd715130bc9b7c643e240ed74e (diff)
downloadandroid_external_ffmpeg-ba499596a9e22d9f0dd9356e9a73038a7046c78e.tar.gz
android_external_ffmpeg-ba499596a9e22d9f0dd9356e9a73038a7046c78e.tar.bz2
android_external_ffmpeg-ba499596a9e22d9f0dd9356e9a73038a7046c78e.zip
Android porting for ffmpeg 2.1 release
Add Android.mk to build ffmpeg libraries with AOSP tree. Based on the nice work of Chia-I Wu (olv): git://gitorious.org/~olvaffe/ffmpeg/ffmpeg-android Tested built OK on Android 4.3 for x86, mips, armv7-a and armv7-a-neon. Change-Id: Id97768f8716f7933078fa0b6c936bd2ae20c090a
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/Android.mk24
1 files changed, 24 insertions, 0 deletions
diff --git a/libavformat/Android.mk b/libavformat/Android.mk
new file mode 100644
index 0000000000..68e53d518d
--- /dev/null
+++ b/libavformat/Android.mk
@@ -0,0 +1,24 @@
+#
+# Copyright (C) 2013 The Android-x86 Open Source Project
+#
+# Licensed under the GNU General Public License Version 2 or later.
+# You may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.gnu.org/licenses/gpl.html
+#
+
+LOCAL_PATH := $(call my-dir)
+
+include $(LOCAL_PATH)/../android/build.mk
+
+LOCAL_C_INCLUDES += \
+ external/openssl/include \
+ external/zlib
+
+LOCAL_SHARED_LIBRARIES += \
+ libcrypto \
+ libssl \
+ libz
+
+include $(BUILD_SHARED_LIBRARY)