blob: 1b3088f58eef42015fb1775a6c56797f3721b5a3 [file] [log] [blame]
Andreas Huber47ba30e2010-05-24 14:38:02 -07001LOCAL_PATH := $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_SRC_FILES := \
Andreas Huber4b3913a2011-05-11 14:13:42 -07005 VPXDecoder.cpp \
Andreas Huber47ba30e2010-05-24 14:38:02 -07006
7LOCAL_MODULE := libstagefright_vpxdec
8
9LOCAL_C_INCLUDES := \
10 $(TOP)/frameworks/base/media/libstagefright/include \
Andreas Huber4b3913a2011-05-11 14:13:42 -070011 frameworks/base/include/media/stagefright/openmax \
Andreas Huber47ba30e2010-05-24 14:38:02 -070012 $(TOP)/external/libvpx \
13 $(TOP)/external/libvpx/vpx_codec \
14 $(TOP)/external/libvpx/vpx_ports
15
16include $(BUILD_STATIC_LIBRARY)
Andreas Huber4b3913a2011-05-11 14:13:42 -070017
18################################################################################
19
20include $(CLEAR_VARS)
21
22LOCAL_SRC_FILES := \
23 SoftVPX.cpp
24
25LOCAL_C_INCLUDES := \
26 $(TOP)/external/libvpx \
27 $(TOP)/external/libvpx/vpx_codec \
28 $(TOP)/external/libvpx/vpx_ports \
29 frameworks/base/media/libstagefright/include \
30 frameworks/base/include/media/stagefright/openmax \
31
32LOCAL_STATIC_LIBRARIES := \
33 libstagefright_vpxdec \
34 libvpx
35
36LOCAL_SHARED_LIBRARIES := \
37 libstagefright libstagefright_omx libstagefright_foundation libutils
38
39LOCAL_MODULE := libstagefright_soft_vpxdec
40LOCAL_MODULE_TAGS := eng
41
42include $(BUILD_SHARED_LIBRARY)
43