gstreamer/gst/subparse/Makefile.am
Tim-Philipp Müller 1b6b21adab gst/subparse/: Add support for TMPlayer-type subtitles (#362845).
Original commit message from CVS:
* gst/subparse/Makefile.am:
* gst/subparse/gstsubparse.c:
(gst_sub_parse_data_format_autodetect),
(gst_sub_parse_format_autodetect), (handle_buffer),
(gst_sub_parse_chain), (gst_subparse_type_find), (plugin_init):
* gst/subparse/gstsubparse.h:
* gst/subparse/tmplayerparse.c: (tmplayer_parse_line),
(parse_tmplayer):
* gst/subparse/tmplayerparse.h:
Add support for TMPlayer-type subtitles (#362845).
* tests/check/elements/subparse.c: (test_tmplayer_do_test),
(GST_START_TEST), (subparse_suite):
Add some basic unit tests for the above.
2006-10-23 12:06:44 +00:00

22 lines
421 B
Makefile

plugin_LTLIBRARIES = libgstsubparse.la
libgstsubparse_la_SOURCES = \
gstssaparse.c \
gstssaparse.h \
gstsubparse.c \
gstsubparse.h \
samiparse.c \
samiparse.h \
tmplayerparse.c \
tmplayerparse.h
libgstsubparse_la_CFLAGS = $(GST_CFLAGS)
libgstsubparse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
libgstsubparse_la_LIBADD = $(GST_LIBS)
noinst_HEADERS = \
gstssaparse.h \
gstsubparse.h \
samiparse.h \
tmplayerparse.h