mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
156865541f
This element acts as a counterpart of line21encoder. Also adds a simple test validating each element using the other.
57 lines
1,018 B
Makefile
57 lines
1,018 B
Makefile
plugin_LTLIBRARIES = libgstclosedcaption.la
|
|
|
|
zvbi_sources = \
|
|
bit_slicer.c \
|
|
decoder.c \
|
|
io-sim.c \
|
|
raw_decoder.c \
|
|
sampling_par.c
|
|
|
|
zvbi_headers = \
|
|
bcd.h \
|
|
bit_slicer.h \
|
|
decoder.h \
|
|
hamm.h \
|
|
io-sim.h \
|
|
macros.h \
|
|
misc.h \
|
|
raw_decoder.h \
|
|
sampling_par.h \
|
|
sliced.h
|
|
|
|
libgstclosedcaption_la_SOURCES = \
|
|
$(zvbi_sources) \
|
|
$(zvbi_headers) \
|
|
gstcccombiner.c \
|
|
gstccextractor.c \
|
|
gstccconverter.c \
|
|
gstcea708decoder.c \
|
|
gstceaccoverlay.c \
|
|
gstline21dec.c \
|
|
gstline21enc.c \
|
|
gstclosedcaption.c
|
|
|
|
libgstclosedcaption_la_CFLAGS = \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_BASE_CFLAGS) \
|
|
$(GST_CFLAGS) \
|
|
$(PANGO_CFLAGS)
|
|
|
|
libgstclosedcaption_la_LIBADD = \
|
|
$(GST_PLUGINS_BASE_LIBS) -lgstvideo-@GST_API_VERSION@ \
|
|
$(GST_BASE_LIBS) \
|
|
$(GST_LIBS) \
|
|
$(PANGO_LIBS) \
|
|
$(LIBM)
|
|
|
|
libgstclosedcaption_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
gstccextractor.h \
|
|
gstcccombiner.h \
|
|
gstccconverter.h \
|
|
gstcea708decoder.h \
|
|
gstceaccoverlay.h \
|
|
gstline21dec.h \
|
|
gstline21enc.h \
|
|
$(zvbi_headers)
|