blob: dd691421564ade7f0f8f53f917b80da3c6f9014d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
plugin_LTLIBRARIES = libgstclosedcaption.la
zvbi_sources = \
bit_slicer.c \
decoder.c \
raw_decoder.c \
sampling_par.c
zvbi_headers = \
bcd.h \
bit_slicer.h \
decoder.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 \
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)
libgstclosedcaption_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
noinst_HEADERS = \
gstccextractor.h \
gstcccombiner.h \
gstccconverter.h \
gstcea708decoder.h \
gstceaccoverlay.h \
gstline21dec.h \
$(zvbi_headers)
|