Bionic/Android support eventfd, so there is really no reason to have PipeEvent around any more. This change gets rid of it in LibAAH_RTP and replaces it with eventfds. Change-Id: I841fcb71bf5015d521d7517c69f44eac0ea92278 Signed-off-by: John Grossman <johngro@google.com>
42 lines
798 B
Makefile
42 lines
798 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_group.cpp \
|
|
aah_tx_packet.cpp \
|
|
aah_tx_player.cpp \
|
|
utils.cpp
|
|
|
|
LOCAL_C_INCLUDES := \
|
|
frameworks/base/include \
|
|
frameworks/base/include/media/stagefright/openmax \
|
|
frameworks/base/media \
|
|
frameworks/base/media/libstagefright
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libbinder \
|
|
libcommon_time_client \
|
|
libcutils \
|
|
libmedia \
|
|
libstagefright \
|
|
libstagefright_foundation \
|
|
libutils
|
|
|
|
LOCAL_LDLIBS := \
|
|
-lpthread
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
|