Besides a major cleanup and refactoring, OMX is now a singleton living in the media server, it listens for death notifications of node observers/clients that allocated OMX nodes and performs/attempts cleanup. Changed APIs to conform to the rest of the system.
60 lines
1.4 KiB
Makefile
60 lines
1.4 KiB
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
|
|
#
|
|
# libmediaplayerservice
|
|
#
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
MediaRecorderClient.cpp \
|
|
MediaPlayerService.cpp \
|
|
MetadataRetrieverClient.cpp \
|
|
TestPlayerStub.cpp \
|
|
VorbisPlayer.cpp \
|
|
VorbisMetadataRetriever.cpp \
|
|
MidiMetadataRetriever.cpp \
|
|
MidiFile.cpp
|
|
|
|
ifeq ($(BUILD_WITH_FULL_STAGEFRIGHT),true)
|
|
|
|
LOCAL_SRC_FILES += \
|
|
StagefrightPlayer.cpp \
|
|
StagefrightMetadataRetriever.cpp
|
|
|
|
LOCAL_CFLAGS += -DBUILD_WITH_FULL_STAGEFRIGHT=1
|
|
|
|
endif
|
|
|
|
ifeq ($(TARGET_OS)-$(TARGET_SIMULATOR),linux-true)
|
|
LOCAL_LDLIBS += -ldl -lpthread
|
|
endif
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libcutils \
|
|
libutils \
|
|
libbinder \
|
|
libvorbisidec \
|
|
libsonivox \
|
|
libopencore_player \
|
|
libopencore_author \
|
|
libmedia \
|
|
libandroid_runtime \
|
|
libstagefright \
|
|
libstagefright_omx
|
|
|
|
ifneq ($(TARGET_SIMULATOR),true)
|
|
LOCAL_SHARED_LIBRARIES += libdl
|
|
endif
|
|
|
|
LOCAL_C_INCLUDES := external/tremor/Tremor \
|
|
$(JNI_H_INCLUDE) \
|
|
$(call include-path-for, graphics corecg) \
|
|
$(TOP)/external/opencore/extern_libs_v2/khronos/openmax/include \
|
|
$(TOP)/frameworks/base/media/libstagefright/include
|
|
|
|
LOCAL_MODULE:= libmediaplayerservice
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
|