OSDN Git Service

8db7c8c772c798d59e87e73d7081c94c67969f23
[android-x86/external-stagefright-plugins.git] / utils / Android.mk
1 LOCAL_PATH:= $(call my-dir)
2
3 include $(SF_COMMON_MK)
4
5 LOCAL_SRC_FILES := \
6         ffmpeg_source.cpp \
7         ffmpeg_utils.cpp \
8         ffmpeg_cmdutils.c \
9         codec_utils.cpp
10
11 LOCAL_MODULE := libffmpeg_utils
12
13 # Workaround for inline assembly tricks in FFMPEG which don't play nice with
14 # Clang when included from C++
15 LOCAL_CLANG_CFLAGS += -DAVUTIL_ARM_INTREADWRITE_H
16
17 # Quiet some noise from FFMPEG
18 LOCAL_CLANG_CFLAGS += -Wno-unknown-attributes -Wno-deprecated-declarations
19
20 include $(BUILD_SHARED_LIBRARY)