mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
f597efe24b
To celebrate 2013.gnome.asia, updated sami parser for gstreamer 1.x. :D Remove conditional block for check libxml usage and implement a simple html markup parser for the sami parser. https://bugzilla.gnome.org/show_bug.cgi?id=693056
29 lines
673 B
Makefile
29 lines
673 B
Makefile
plugin_LTLIBRARIES = libgstsubparse.la
|
|
|
|
SAMIPARSE_SOURCES = samiparse.c samiparse.h
|
|
|
|
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 = $(GST_PLUGIN_LIBTOOLFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
gstssaparse.h \
|
|
gstsubparse.h \
|
|
samiparse.h \
|
|
tmplayerparse.h \
|
|
mpl2parse.h \
|
|
qttextparse.h
|