blob: df533ecdd32c0868752e6b5e76a9ed522b5d891d [file] [log] [blame]
John Grossman761defc2012-02-09 15:09:05 -08001LOCAL_PATH:= $(call my-dir)
2#
3# libaah_rtp
4#
5
6include $(CLEAR_VARS)
7
8LOCAL_MODULE := libaah_rtp
9LOCAL_MODULE_TAGS := optional
10
11LOCAL_SRC_FILES := \
12 aah_decoder_pump.cpp \
13 aah_rx_player.cpp \
14 aah_rx_player_core.cpp \
15 aah_rx_player_ring_buffer.cpp \
16 aah_rx_player_substream.cpp \
17 aah_tx_packet.cpp \
18 aah_tx_player.cpp \
19 aah_tx_sender.cpp \
20 pipe_event.cpp
21
22LOCAL_C_INCLUDES := \
James Dong559bf282012-03-28 10:29:14 -070023 frameworks/av/include \
24 frameworks/av/media \
25 frameworks/av/media/libstagefright \
James Dong6c6b4d02012-03-12 14:37:53 -070026 frameworks/native/include/media/openmax
John Grossman761defc2012-02-09 15:09:05 -080027
28LOCAL_SHARED_LIBRARIES := \
29 libcommon_time_client \
30 libbinder \
31 libmedia \
Glenn Kastenb12153e2012-03-16 11:42:24 -070032 libmedia_native \
John Grossman761defc2012-02-09 15:09:05 -080033 libstagefright \
34 libstagefright_foundation \
35 libutils
36
37LOCAL_LDLIBS := \
38 -lpthread
39
40include $(BUILD_SHARED_LIBRARY)