mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
c253cabc86
Original commit message from CVS: * ext/ogg/Makefile.am: * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain): Extract language tags from ogm subtitle streams, so that the subtitle menu choices are labelled correctly in Totem (fixes #344708).
16 lines
426 B
Makefile
16 lines
426 B
Makefile
plugin_LTLIBRARIES = libgstogg.la
|
|
|
|
libgstogg_la_SOURCES = \
|
|
gstogg.c \
|
|
gstoggdemux.c \
|
|
gstoggmux.c \
|
|
gstogmparse.c \
|
|
gstoggparse.c
|
|
|
|
libgstogg_la_CFLAGS = $(GST_CFLAGS) $(OGG_CFLAGS)
|
|
libgstogg_la_LIBADD = \
|
|
$(top_builddir)/gst-libs/gst/riff/libgstriff-$(GST_MAJORMINOR).la \
|
|
$(top_builddir)/gst-libs/gst/tag/libgsttag-$(GST_MAJORMINOR).la \
|
|
$(GST_BASE_LIBS) \
|
|
$(OGG_LIBS)
|
|
libgstogg_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|