mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
29 lines
623 B
Makefile
29 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
|
||
|
|