gstreamer/android/playbin.mk

46 lines
1.2 KiB
Makefile
Raw Normal View History

2010-12-03 16:41:18 +00:00
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_ARM_MODE := arm
playbin_LOCAL_SRC_FILES_BASE:= \
gst/playback/gstplayback.c \
gst/playback/gstplaybin.c \
gst/playback/gstplaybin2.c \
gst/playback/gstplaysink.c \
gst/playback/gstplaybasebin.c \
gst/playback/gstplay-enum.c \
gst/playback/gststreaminfo.c \
gst/playback/gststreamselector.c \
gst/playback/gstsubtitleoverlay.c \
gst/playback/gststreamsynchronizer.c \
2010-12-03 16:41:18 +00:00
gst/playback/gstplay-marshal.c
LOCAL_SRC_FILES:= $(addprefix ../,$(playbin_LOCAL_SRC_FILES_BASE))
2010-12-03 16:41:18 +00:00
LOCAL_SHARED_LIBRARIES := \
libgstreamer-0.10 \
libgstbase-0.10 \
libglib-2.0 \
libgthread-2.0 \
libgmodule-2.0 \
libgobject-2.0 \
libgstpbutils-0.10 \
libgstinterfaces-0.10 \
libgstvideo-0.10
LOCAL_MODULE:= libgstplaybin
LOCAL_CFLAGS := -DHAVE_CONFIG_H -DGSTREAMER_BUILT_FOR_ANDROID \
$(GST_PLUGINS_BASE_CFLAGS)
2010-12-03 16:41:18 +00:00
#
# define LOCAL_PRELINK_MODULE to false to not use pre-link map
#
LOCAL_PRELINK_MODULE := false
#It's a gstreamer plugins, and it must be installed on ..../lib/gstreamer-0.10
LOCAL_MODULE_PATH := $(TARGET_OUT)/lib/gstreamer-0.10
LOCAL_MODULE_TAGS := optional
2010-12-03 16:41:18 +00:00
include $(BUILD_SHARED_LIBRARY)