mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
da34723a6b
Original commit message from CVS: * gst/matroska/Makefile.am: * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream), (gst_matroska_demux_handle_src_event): * gst/matroska/matroska-ids.c: (gst_matroska_track_init_video_context), (gst_matroska_track_init_audio_context), (gst_matroska_track_init_subtitle_context), (gst_matroska_track_init_complex_context): * gst/matroska/matroska-ids.h: Handle case where the TrackType ebml chunk does not come before the TrackInfoAudio or TrackInfoVideo ebml chunk (#339446). Ignore QoS events.
29 lines
583 B
Makefile
29 lines
583 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@
|
|
libgstmatroska_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|