mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
32b0966ec7
Original commit message from CVS: * gst/mpegtsparse/Makefile.am: * gst/mpegtsparse/gstmpegdesc.c: * gst/mpegtsparse/gstmpegdesc.h: * gst/mpegtsparse/mpegtspacketizer.c: * gst/mpegtsparse/mpegtsparse.c: Added descriptor searching infrastructure from Fluendo TS demuxer. Add channel name and provider to the sdt structure sent in the bus message.
15 lines
367 B
Makefile
15 lines
367 B
Makefile
plugin_LTLIBRARIES = libgstmpegtsparse.la
|
|
|
|
libgstmpegtsparse_la_SOURCES = \
|
|
mpegtsparse.c \
|
|
mpegtspacketizer.c \
|
|
gstmpegdesc.c
|
|
|
|
libgstmpegtsparse_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstmpegtsparse_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS)
|
|
libgstmpegtsparse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
mpegtsparse.h \
|
|
mpegtspacketizer.h \
|
|
gstmpegdesc.h
|