41 lines
788 B
Makefile
41 lines
788 B
Makefile
|
LOCAL_PATH:= $(call my-dir)
|
||
|
#
|
||
|
# libaah_rtp
|
||
|
#
|
||
|
|
||
|
include $(CLEAR_VARS)
|
||
|
|
||
|
LOCAL_MODULE := libaah_rtp
|
||
|
LOCAL_MODULE_TAGS := optional
|
||
|
|
||
|
LOCAL_SRC_FILES := \
|
||
|
aah_decoder_pump.cpp \
|
||
|
aah_rx_player.cpp \
|
||
|
aah_rx_player_core.cpp \
|
||
|
aah_rx_player_ring_buffer.cpp \
|
||
|
aah_rx_player_substream.cpp \
|
||
|
aah_tx_packet.cpp \
|
||
|
aah_tx_player.cpp \
|
||
|
aah_tx_sender.cpp \
|
||
|
pipe_event.cpp
|
||
|
|
||
|
LOCAL_C_INCLUDES := \
|
||
|
frameworks/base/include \
|
||
|
frameworks/base/include/media/stagefright/openmax \
|
||
|
frameworks/base/media \
|
||
|
frameworks/base/media/libstagefright
|
||
|
|
||
|
LOCAL_SHARED_LIBRARIES := \
|
||
|
libcommon_time_client \
|
||
|
libbinder \
|
||
|
libmedia \
|
||
|
libstagefright \
|
||
|
libstagefright_foundation \
|
||
|
libutils
|
||
|
|
||
|
LOCAL_LDLIBS := \
|
||
|
-lpthread
|
||
|
|
||
|
include $(BUILD_SHARED_LIBRARY)
|
||
|
|