mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
b55dfb5313
The only plugins remaining are those that haven't been ported to Meson yet, and msdk. Also, the tests are still automagic. https://bugzilla.gnome.org/show_bug.cgi?id=795107
23 lines
737 B
Meson
23 lines
737 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',
|
|
'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, pangocairo_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
pkgconfig.generate(gstclosedcaption, install_dir : plugins_pkgconfig_install_dir)
|
|
endif
|