mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 11:29:55 +00:00
cef8e5fe60
Original commit message from CVS: * gst/mpegtsparse/Makefile.am: * gst/mpegtsparse/mpegtspacketizer.c: * gst/mpegtsparse/mpegtsparse.c: Remove signals for pat, pmt, nit, eit, sdt. Replace with bus messages. * sys/dvb/dvbbasebin.c: Instead of attaching to signals, use the bus messages. Also fix up so the dvbsrc starts only outputting the info tables like PAT, CAT, NIT, SDT, EIT instead of the whole ts.
19 lines
456 B
Makefile
19 lines
456 B
Makefile
plugin_LTLIBRARIES = libgstmpegtsparse.la
|
|
|
|
libgstmpegtsparse_la_SOURCES = \
|
|
mpegtsparse.c \
|
|
mpegtspacketizer.c\
|
|
flutspatinfo.c \
|
|
flutspmtinfo.c \
|
|
flutspmtstreaminfo.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 \
|
|
flutspatinfo.h \
|
|
flutspmtinfo.h \
|
|
flutspmtstreaminfo.h
|