mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 18:51:11 +00:00
1b6b21adab
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.
21 lines
421 B
Makefile
21 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
|