mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
686ad73bfe
Original commit message from CVS: * gst/playback/Makefile.am: * gst/playback/gstplaybasebin.c: (string_arr_has_str), (unknown_type), (setup_subtitle), (gen_source_element): * gst/playback/gstplaybin.c: (plugin_init): Post missing-plugin messages on the bus for missing sources and missing decoders/demuxers/depayloaders; fix error code used when we're missing an URI handler source; for media types that we are not handling on purpose at the moment, don't print "don't know how to handle xyz" messages to the terminal or post missing-plugin messages on the bus. * tests/check/elements/playbin.c: (create_playbin), (GST_START_TEST), (gst_codec_src_uri_get_type), (gst_codec_src_uri_get_protocols), (gst_codec_src_uri_get_uri), (gst_codec_src_uri_set_uri), (gst_codec_src_uri_handler_init), (gst_codec_src_init_type), (gst_codec_src_base_init), (gst_codec_src_create), (gst_codec_src_class_init), (gst_codec_src_init), (plugin_init), (playbin_suite): Add some tests for the missing-plugin stuff.
71 lines
1.8 KiB
Makefile
71 lines
1.8 KiB
Makefile
glib_enum_define=GST_PLAY
|
|
glib_enum_prefix=gst_play
|
|
|
|
built_sources = gstplay-marshal.c
|
|
|
|
built_headers = gstplay-marshal.h
|
|
|
|
plugindir = $(libdir)/gstreamer-@GST_MAJORMINOR@
|
|
|
|
plugin_LTLIBRARIES = libgstplaybin.la libgstdecodebin.la libgstdecodebin2.la
|
|
|
|
libgstplaybin_la_SOURCES = \
|
|
gstplaybin.c \
|
|
gstplaybasebin.c \
|
|
gststreaminfo.c \
|
|
gststreamselector.c
|
|
|
|
nodist_libgstplaybin_la_SOURCES = $(built_sources)
|
|
libgstplaybin_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
|
libgstplaybin_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstplaybin_la_LIBADD = \
|
|
$(top_builddir)/gst-libs/gst/utils/libgstbaseutils-@GST_MAJORMINOR@.la \
|
|
$(GST_LIBS)
|
|
|
|
libgstdecodebin_la_SOURCES = gstdecodebin.c
|
|
nodist_libgstdecodebin_la_SOURCES = $(built_sources)
|
|
libgstdecodebin_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstdecodebin_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstdecodebin_la_LIBADD = $(GST_LIBS)
|
|
|
|
libgstdecodebin2_la_SOURCES = gstdecodebin2.c
|
|
nodist_libgstdecodebin2_la_SOURCES = $(built_sources)
|
|
libgstdecodebin2_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstdecodebin2_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstdecodebin2_la_LIBADD = $(GST_LIBS)
|
|
|
|
noinst_HEADERS = \
|
|
gstplaybasebin.h \
|
|
gststreaminfo.h \
|
|
gststreamselector.h
|
|
|
|
noinst_PROGRAMS = test decodetest test2 test3 test4 test5 test6
|
|
|
|
test_LDADD = $(GST_LIBS)
|
|
test_CFLAGS = $(GST_CFLAGS)
|
|
|
|
test2_LDADD = $(GST_LIBS)
|
|
test2_CFLAGS = $(GST_CFLAGS)
|
|
|
|
test3_LDADD = $(GST_LIBS)
|
|
test3_CFLAGS = $(GST_CFLAGS)
|
|
|
|
test4_LDADD = $(GST_LIBS)
|
|
test4_CFLAGS = $(GST_CFLAGS)
|
|
|
|
test5_LDADD = $(GST_LIBS)
|
|
test5_CFLAGS = $(GST_CFLAGS)
|
|
|
|
test6_LDADD = $(GST_LIBS)
|
|
test6_CFLAGS = $(GST_CFLAGS)
|
|
|
|
decodetest_LDADD = $(GST_LIBS)
|
|
decodetest_CFLAGS = $(GST_CFLAGS)
|
|
|
|
BUILT_SOURCES = $(built_headers) $(built_sources)
|
|
|
|
EXTRA_DIST = gstplay-marshal.list
|
|
|
|
CLEANFILES = $(BUILT_SOURCES)
|
|
|
|
include $(top_srcdir)/common/glib-gen.mak
|