mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
5baae6df6f
This was committed by mistake. The solution forward is to use the appropriate combination of urisourcebin and decodebin3
50 lines
1.4 KiB
Makefile
50 lines
1.4 KiB
Makefile
plugin_LTLIBRARIES = libgstplayback.la
|
|
|
|
csp_cflags = -DCOLORSPACE=\"videoconvert\"
|
|
|
|
libgstplayback_la_SOURCES = \
|
|
gstdecodebin2.c \
|
|
gstdecodebin3.c \
|
|
gsturidecodebin.c \
|
|
gsturisourcebin.c \
|
|
gstparsebin.c \
|
|
gstplayback.c \
|
|
gstplaybin2.c \
|
|
gstplaybin3.c \
|
|
gstplaysink.c \
|
|
gstplay-enum.c \
|
|
gstsubtitleoverlay.c \
|
|
gstplaysinkvideoconvert.c \
|
|
gstplaysinkaudioconvert.c \
|
|
gstplaysinkconvertbin.c \
|
|
gststreamsynchronizer.c \
|
|
gstplaybackutils.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 = $(GST_PLUGIN_LIBTOOLFLAGS)
|
|
|
|
# FIXME: gstdecodebin3-parse.c isn't really a header,
|
|
# but for now it's included into gstdecodebin3.c directly
|
|
noinst_HEADERS = \
|
|
gstdecodebin3-parse.c \
|
|
gstplayback.h \
|
|
gstplaysink.h \
|
|
gstplay-enum.h \
|
|
gstrawcaps.h \
|
|
gstsubtitleoverlay.h \
|
|
gstplaysinkvideoconvert.h \
|
|
gstplaysinkaudioconvert.h \
|
|
gstplaysinkconvertbin.h \
|
|
gststreamsynchronizer.h \
|
|
gstplaybackutils.h
|
|
|
|
BUILT_SOURCES = $(built_headers) $(built_sources)
|
|
|
|
CLEANFILES = $(BUILT_SOURCES)
|