mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 00:01:23 +00:00
8c6d2c506a
Original commit message from CVS: * gst/matroska/Makefile.am: * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset), (gst_matroska_demux_parse_attached_file), (gst_matroska_demux_parse_attachments), (gst_matroska_demux_parse_contents_seekentry), (gst_matroska_demux_loop_stream_parse_id): * gst/matroska/matroska-demux.h: * gst/matroska/matroska-ids.c: (gst_matroska_register_tags): * gst/matroska/matroska-ids.h: * gst/matroska/matroska.c: (plugin_init): Parse Attachments and post them as GST_TAG_IMAGE if we detect it as image and otherwise as GST_TAG_ATTACHMENT. Include filename and description of the attachments in the caps. Fixes bug #537622.
32 lines
639 B
Makefile
32 lines
639 B
Makefile
plugin_LTLIBRARIES = libgstmatroska.la
|
|
|
|
libgstmatroska_la_SOURCES = \
|
|
ebml-read.c \
|
|
ebml-write.c \
|
|
matroska.c \
|
|
matroska-demux.c \
|
|
matroska-ids.c \
|
|
matroska-mux.c
|
|
|
|
noinst_HEADERS = \
|
|
ebml-ids.h \
|
|
ebml-read.h \
|
|
ebml-write.h \
|
|
matroska-demux.h \
|
|
matroska-ids.h \
|
|
matroska-mux.h
|
|
|
|
libgstmatroska_la_CFLAGS = \
|
|
$(GST_BASE_CFLAGS) \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_CFLAGS) \
|
|
-I$(top_srcdir)/gst-libs
|
|
libgstmatroska_la_LIBADD = \
|
|
$(GST_BASE_LIBS) \
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
$(GST_LIBS) \
|
|
-lgstriff-@GST_MAJORMINOR@ \
|
|
-lgsttag-@GST_MAJORMINOR@ \
|
|
$(ZLIB_LIBS) \
|
|
$(LIBM)
|
|
libgstmatroska_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|