mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 19:31:12 +00:00
5c5d85f8cc
Original commit message from CVS: Patch by: Mark Nauwelaerts <mnauw at users.sourceforge.net> * gst/dvdsub/Makefile.am: * gst/dvdsub/gstdvdsubdec.c: * gst/dvdsub/gstdvdsubparse.c: * gst/dvdsub/gstdvdsubparse.h: Add dvd subtitle parser, which just packetizes the input stream. This is needed to mux dvd subtitles into matroska files, since the muxer expects unfragmented and properly timestamped input (#415754).
8 lines
306 B
Makefile
8 lines
306 B
Makefile
plugin_LTLIBRARIES = libgstdvdsub.la
|
|
|
|
libgstdvdsub_la_SOURCES = gstdvdsubdec.c gstdvdsubparse.c
|
|
libgstdvdsub_la_CFLAGS = $(GST_BASE_CFLAGS) $(GST_CFLAGS)
|
|
libgstdvdsub_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS)
|
|
libgstdvdsub_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = gstdvdsubdec.h gstdvdsubparse.h
|