gstreamer/ext/closedcaption/meson.build
Sebastian Dröge eb92865ea1 cccombiner: Add new closed caption combiner element
This is the inverse of ccextractor: it takes a video and closed caption
stream and places the closed caption metas on the video output buffers.
2018-11-06 16:21:42 +00:00

23 lines
778 B
Meson

pangocairo_dep = dependency('pangocairo', version : '>= 1.22.0',
required : get_option('closedcaption'))
zvbi_sources = [
'bit_slicer.c',
'decoder.c',
'raw_decoder.c',
'sampling_par.c',
]
if pangocairo_dep.found()
gstclosedcaption = library('gstclosedcaption',
'gstcccombiner.c', 'gstccextractor.c', 'gstclosedcaption.c', 'gstline21dec.c',
'gstcea708decoder.c', 'gstceaccoverlay.c', zvbi_sources,
c_args : gst_plugins_bad_args,
link_args : noseh_link_args,
include_directories : [configinc],
dependencies : [gstvideo_dep, gstbase_dep, gst_dep, pangocairo_dep],
install : true,
install_dir : plugins_install_dir,
)
pkgconfig.generate(gstclosedcaption, install_dir : plugins_pkgconfig_install_dir)
endif