mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-09 10:59:39 +00:00
cdcc28c833
Adds basic support for qttext subtitles, still lacks markup tags to make it prettier, but the plain text already works. Implemented according to: http://www.apple.com/quicktime/tutorials/texttracks.html http://www.apple.com/quicktime/tutorials/textdescriptors.html Fixes #603357
33 lines
710 B
Makefile
33 lines
710 B
Makefile
plugin_LTLIBRARIES = libgstsubparse.la
|
|
|
|
if USE_XML
|
|
SAMIPARSE_SOURCES = samiparse.c samiparse.h
|
|
else
|
|
SAMIPARSE_SOURCES =
|
|
endif
|
|
|
|
libgstsubparse_la_SOURCES = \
|
|
gstssaparse.c \
|
|
gstssaparse.h \
|
|
gstsubparse.c \
|
|
gstsubparse.h \
|
|
$(SAMIPARSE_SOURCES) \
|
|
tmplayerparse.c \
|
|
tmplayerparse.h \
|
|
mpl2parse.c \
|
|
mpl2parse.h \
|
|
qttextparse.c \
|
|
qttextparse.h
|
|
|
|
libgstsubparse_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS)
|
|
libgstsubparse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstsubparse_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS)
|
|
libgstsubparse_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
noinst_HEADERS = \
|
|
gstssaparse.h \
|
|
gstsubparse.h \
|
|
samiparse.h \
|
|
tmplayerparse.h \
|
|
mpl2parse.h \
|
|
qttextparse.h
|