mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
4c76427ba7
Maybe something based on the code in bug #688367 and the language encodings would work even better though (now it will try things based on the locale). https://bugzilla.gnome.org/show_bug.cgi?id=690097
37 lines
999 B
Makefile
37 lines
999 B
Makefile
# plugindir is set in configure
|
|
|
|
plugin_LTLIBRARIES = libgstresindvd.la
|
|
|
|
libgstresindvd_la_SOURCES = \
|
|
plugin.c \
|
|
resindvdbin.c \
|
|
resindvdsrc.c \
|
|
rsndec.c \
|
|
gstmpegdesc.c \
|
|
gstmpegdemux.c \
|
|
gstpesfilter.c \
|
|
rsninputselector.c \
|
|
rsnparsetter.c
|
|
|
|
libgstresindvd_la_CFLAGS = $(GST_PLUGINS_BAD_CFLAGS) \
|
|
$(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) \
|
|
$(GST_CFLAGS) $(DVDNAV_CFLAGS)
|
|
libgstresindvd_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
|
-lgstvideo-$(GST_API_VERSION) -lgstpbutils-$(GST_API_VERSION) \
|
|
-lgsttag-$(GST_API_VERSION) \
|
|
$(GST_BASE_LIBS) $(GST_LIBS) $(GMODULE_NO_EXPORT_LIBS) $(DVDNAV_LIBS)
|
|
libgstresindvd_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstresindvd_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
noinst_HEADERS = resindvdbin.h \
|
|
rsndec.h \
|
|
rsninputselector.h \
|
|
resindvdsrc.h \
|
|
gstmpegdefs.h \
|
|
gstmpegdesc.h \
|
|
gstmpegdemux.h \
|
|
gstpesfilter.h \
|
|
rsnparsetter.h
|
|
|
|
EXTRA_DIST = resin-play resin-play2
|
|
|