mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
555486f865
Original commit message from CVS: * configure.ac: * gst/mpegdemux/Makefile.am: * gst/mpegdemux/flumpegdemux.c: * gst/mpegdemux/flutspatinfo.c: * gst/mpegdemux/flutspatinfo.h: * gst/mpegdemux/flutspmtinfo.c: * gst/mpegdemux/flutspmtinfo.h: * gst/mpegdemux/flutspmtstreaminfo.c: * gst/mpegdemux/flutspmtstreaminfo.h: * gst/mpegdemux/gstmpegdefs.h: * gst/mpegdemux/gstmpegdemux.c: * gst/mpegdemux/gstmpegdemux.h: * gst/mpegdemux/gstmpegdesc.c: * gst/mpegdemux/gstmpegdesc.h: * gst/mpegdemux/gstmpegtsdemux.c: * gst/mpegdemux/gstmpegtsdemux.h: * gst/mpegdemux/gstpesfilter.c: * gst/mpegdemux/gstpesfilter.h: * gst/mpegdemux/gstsectionfilter.c: * gst/mpegdemux/gstsectionfilter.h: Add Fluendo MPEG PS and TS demuxers to gst-plugins-bad. This is now dual licensed MPL and LGPL.
28 lines
623 B
Makefile
28 lines
623 B
Makefile
plugin_LTLIBRARIES = libgstmpegdemux.la
|
|
|
|
libgstmpegdemux_la_SOURCES = \
|
|
flumpegdemux.c \
|
|
flutspatinfo.c \
|
|
flutspmtinfo.c \
|
|
flutspmtstreaminfo.c \
|
|
gstmpegdemux.c \
|
|
gstmpegdesc.c \
|
|
gstmpegtsdemux.c \
|
|
gstpesfilter.c \
|
|
gstsectionfilter.c
|
|
|
|
libgstmpegdemux_la_CFLAGS = $(GST_CFLAGS) $(LIBOIL_CFLAGS)
|
|
libgstmpegdemux_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) $(LIBOIL_LIBS)
|
|
libgstmpegdemux_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
gstmpegdefs.h \
|
|
gstmpegdesc.h \
|
|
gstmpegdemux.h \
|
|
gstpesfilter.h \
|
|
gstmpegtsdemux.h \
|
|
flutspatinfo.h \
|
|
flutspmtinfo.h \
|
|
flutspmtstreaminfo.h \
|
|
gstsectionfilter.h
|
|
|