mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
72edd1467b
Adds code that parses headers of various formats encapsulated in Ogg in order to calculate timestamps and durations of each buffer. Removes the creation of helper decoder elements to do this calculation via conversion queries. Fixes: #344013, #568014.
27 lines
658 B
Makefile
27 lines
658 B
Makefile
plugin_LTLIBRARIES = libgstogg.la
|
|
|
|
libgstogg_la_SOURCES = \
|
|
gstogg.c \
|
|
gstoggdemux.c \
|
|
gstoggmux.c \
|
|
gstogmparse.c \
|
|
gstoggaviparse.c \
|
|
gstoggparse.c \
|
|
gstoggstream.c \
|
|
gstoggstream.h \
|
|
dirac_parse.c \
|
|
dirac_parse.h \
|
|
vorbis_parse.c
|
|
|
|
noinst_HEADERS = \
|
|
gstoggdemux.h gstoggmux.h
|
|
|
|
libgstogg_la_CFLAGS = $(GST_PLUGINS_BASE_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)
|
|
libgstogg_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|