mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
3c1041d5eb
This reverts commit d2d79e3bc2
,
which was accidentially pushed.
56 lines
1.7 KiB
Makefile
56 lines
1.7 KiB
Makefile
plugin_LTLIBRARIES = libgstplayback.la
|
|
|
|
csp_cflags = -DCOLORSPACE=\"videoconvert\"
|
|
|
|
libgstplayback_la_SOURCES = \
|
|
gstdecodebin2.c \
|
|
gsturidecodebin.c \
|
|
gstplayback.c \
|
|
gstplaybin2.c \
|
|
gstplaysink.c \
|
|
gstplay-enum.c \
|
|
gstsubtitleoverlay.c \
|
|
gstplaysinkvideoconvert.c \
|
|
gstplaysinkaudioconvert.c \
|
|
gstplaysinkconvertbin.c \
|
|
gststreamsynchronizer.c
|
|
|
|
nodist_libgstplayback_la_SOURCES = $(built_sources)
|
|
libgstplayback_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(csp_cflags)
|
|
libgstplayback_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstplayback_la_LIBADD = \
|
|
$(top_builddir)/gst-libs/gst/pbutils/libgstpbutils-@GST_API_VERSION@.la \
|
|
$(top_builddir)/gst-libs/gst/audio/libgstaudio-@GST_API_VERSION@.la \
|
|
$(top_builddir)/gst-libs/gst/video/libgstvideo-@GST_API_VERSION@.la \
|
|
$(GST_LIBS)
|
|
libgstplayback_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
noinst_HEADERS = \
|
|
gstplayback.h \
|
|
gstplaysink.h \
|
|
gstplay-enum.h \
|
|
gstrawcaps.h \
|
|
gstsubtitleoverlay.h \
|
|
gstplaysinkvideoconvert.h \
|
|
gstplaysinkaudioconvert.h \
|
|
gstplaysinkconvertbin.h \
|
|
gststreamsynchronizer.h
|
|
|
|
BUILT_SOURCES = $(built_headers) $(built_sources)
|
|
|
|
CLEANFILES = $(BUILT_SOURCES)
|
|
|
|
Android.mk: Makefile.am $(BUILT_SOURCES)
|
|
androgenizer \
|
|
-:PROJECT libgstplayback -:SHARED libgstplayback \
|
|
-:TAGS eng debug \
|
|
-:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \
|
|
-:SOURCES $(libgstplayback_la_SOURCES) \
|
|
$(nodist_libgstplayback_la_SOURCES) \
|
|
-:CFLAGS $(DEFS) $(DEFAULT_INCLUDES) $(libgstplayback_la_CFLAGS) $(csp_cflags) \
|
|
-:LDFLAGS $(libgstplayback_la_LDFLAGS) \
|
|
$(libgstplayback_la_LIBADD) \
|
|
-ldl \
|
|
-:PASSTHROUGH LOCAL_ARM_MODE:=arm \
|
|
LOCAL_MODULE_PATH:='$$(TARGET_OUT)/lib/gstreamer-0.10' \
|
|
> $@
|