mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 00:01:23 +00:00
0951e00dc0
Original commit message from CVS: * configure.ac: Check for libdvdnav to build resindvd. * ext/Makefile.am: * ext/resindvd/Makefile.am: * ext/resindvd/gstmpegdefs.h: * ext/resindvd/gstmpegdemux.c: * ext/resindvd/gstmpegdemux.h: * ext/resindvd/gstmpegdesc.c: * ext/resindvd/gstmpegdesc.h: * ext/resindvd/gstpesfilter.c: * ext/resindvd/gstpesfilter.h: * ext/resindvd/plugin.c: * ext/resindvd/resin-play: * ext/resindvd/resindvdbin.c: * ext/resindvd/resindvdbin.h: * ext/resindvd/resindvdsrc.c: * ext/resindvd/resindvdsrc.h: * ext/resindvd/rsnaudiomunge.c: * ext/resindvd/rsnaudiomunge.h: * ext/resindvd/rsnbasesrc.c: * ext/resindvd/rsnbasesrc.h: * ext/resindvd/rsnpushsrc.c: * ext/resindvd/rsnpushsrc.h: * ext/resindvd/rsnstreamselector.c: * ext/resindvd/rsnstreamselector.h: First commit of DVD-Video playback component 'rsndvdbin' and helper elements. Use --enable-experimental for now, but feel free to give it a try using the resin-play script. * gst/dvdspu/gstdvdspu.c: Add some extra guards for malformed events.
30 lines
732 B
Makefile
30 lines
732 B
Makefile
# plugindir is set in configure
|
|
|
|
plugin_LTLIBRARIES = libresindvd.la
|
|
|
|
libresindvd_la_SOURCES = \
|
|
plugin.c \
|
|
resindvdbin.c \
|
|
rsnaudiomunge.c \
|
|
rsnbasesrc.c \
|
|
rsnpushsrc.c \
|
|
rsnstreamselector.c \
|
|
resindvdsrc.c \
|
|
gstmpegdesc.c \
|
|
gstmpegdemux.c \
|
|
gstpesfilter.c
|
|
|
|
libresindvd_la_CFLAGS = $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(DVDNAV_CFLAGS)
|
|
libresindvd_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) $(DVDNAV_LIBS)
|
|
libresindvd_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = resindvdbin.h \
|
|
rsnaudiomunge.h \
|
|
rsnbasesrc.h \
|
|
rsnpushsrc.h \
|
|
rsnstreamselector.h \
|
|
resindvdsrc.h \
|
|
gstmpegdefs.h \
|
|
gstmpegdesc.h \
|
|
gstmpegdemux.h \
|
|
gstpesfilter.h
|