mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 00:31:13 +00:00
6fbff1c106
Original commit message from CVS: New typefind system: * bytestream is now part of the core * all plugins have been modified to use this new typefind system * asf typefinding added * mpeg video stream typefiding removed because it's broken * duplicate typefind entries removed * extra id3 typefinding added, because we've seen 4 types of files (riff/wav, flac, vorbis, mp3) with id3 headers and each of these needs to work. Instead, I've added an id3 element and let it redo typefiding after the id3 header. this needs a hack because spider only typefinds once. We can remove this hack once spider supports multiple typefinds. * with all this, mp3 typefinding is semi-rewritten * id3 typefinding in flac/vorbis is removed, it's no longer needed * fixed spider and gst-typefind to use this, too. * Other general cleanups
48 lines
1.5 KiB
Makefile
48 lines
1.5 KiB
Makefile
plugindir = $(libdir)/gstreamer-@GST_MAJORMINOR@
|
|
|
|
plugin_LTLIBRARIES = \
|
|
libgststaticautoplug.la \
|
|
libgststaticautoplugrender.la \
|
|
libgstautoplugcache.la \
|
|
libgstautoplugger.la \
|
|
libgstspider.la
|
|
|
|
libgststaticautoplug_la_SOURCES = gststaticautoplug.c
|
|
libgststaticautoplug_la_CFLAGS = $(GST_CFLAGS)
|
|
libgststaticautoplug_la_LIBADD =
|
|
libgststaticautoplug_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
libgststaticautoplugrender_la_SOURCES = gststaticautoplugrender.c
|
|
libgststaticautoplugrender_la_CFLAGS = $(GST_CFLAGS)
|
|
libgststaticautoplugrender_la_LIBADD =
|
|
libgststaticautoplugrender_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
libgstautoplugcache_la_SOURCES = gstautoplugcache.c
|
|
libgstautoplugcache_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstautoplugcache_la_LIBADD =
|
|
libgstautoplugcache_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
libgstautoplugger_la_SOURCES = gstautoplugger.c
|
|
libgstautoplugger_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstautoplugger_la_LIBADD =
|
|
libgstautoplugger_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
libgstspider_la_SOURCES = \
|
|
gstspider.c gstspideridentity.c \
|
|
gstsearchfuncs.c
|
|
libgstspider_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstspider_la_LIBADD =
|
|
libgstspider_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = gststaticautoplug.h gststaticautoplugrender.h \
|
|
gstspider.h gstspideridentity.h gstsearchfuncs.h
|
|
|
|
noinst_PROGRAMS = autoplugtest spidertest
|
|
|
|
autoplugtest_CFLAGS = $(GST_CFLAGS)
|
|
autoplugtest_LDADD = $(GST_LIBS)
|
|
|
|
spidertest_SOURCES = spidertest.c
|
|
spidertest_CFLAGS = $(GST_CFLAGS)
|
|
spidertest_LDADD = $(GST_LIBS)
|
|
|