mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 12:41:05 +00:00
d82ae6949f
Add a parser (ttmlparse) and renderer (ttmlrender) element that handle subtitles that use the EBU-TT-D profile of TTML1. https://bugzilla.gnome.org/show_bug.cgi?id=758232
36 lines
803 B
Makefile
36 lines
803 B
Makefile
plugin_LTLIBRARIES = libgstttmlsubs.la
|
|
|
|
# sources used to compile this plug-in
|
|
libgstttmlsubs_la_SOURCES = \
|
|
subtitle.c \
|
|
subtitlemeta.c \
|
|
gstttmlparse.c \
|
|
gstttmlparse.h \
|
|
ttmlparse.c \
|
|
ttmlparse.h \
|
|
gstttmlrender.c \
|
|
gstttmlplugin.c
|
|
|
|
# compiler and linker flags used to compile this plugin, set in configure.ac
|
|
libgstttmlsubs_la_CFLAGS = \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_BASE_CFLAGS) \
|
|
$(GST_CFLAGS) \
|
|
$(TTML_CFLAGS)
|
|
|
|
libgstttmlsubs_la_LIBADD = \
|
|
$(GST_BASE_LIBS) \
|
|
$(GST_LIBS) \
|
|
-lgstvideo-$(GST_API_VERSION) \
|
|
$(TTML_LIBS)
|
|
|
|
libgstttmlsubs_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstttmlsubs_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
|
|
|
# headers we need but don't want installed
|
|
noinst_HEADERS = \
|
|
subtitle.h \
|
|
subtitlemeta.h \
|
|
gstttmlparse.h \
|
|
ttmlparse.h \
|
|
gstttmlrender.h
|