mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-14 18:25:22 +00:00
37 lines
922 B
Meson
37 lines
922 B
Meson
openh264_sources = [
|
|
'gstopenh264dec.cpp',
|
|
'gstopenh264enc.cpp',
|
|
'gstopenh264plugin.c',
|
|
]
|
|
|
|
openh264_headers = [
|
|
'gstopenh264enc.h',
|
|
'gstopenh264elements.h',
|
|
'gstopenh264dec.h',
|
|
]
|
|
|
|
doc_sources = []
|
|
foreach s: openh264_sources + openh264_headers
|
|
doc_sources += meson.current_source_dir() / s
|
|
endforeach
|
|
|
|
plugin_sources += {
|
|
'openh264': pathsep.join(doc_sources)
|
|
}
|
|
|
|
openh264_dep = dependency('openh264', version : '>= 1.3.0',
|
|
required : get_option('openh264'),
|
|
fallback: ['openh264', 'openh264_dep'])
|
|
|
|
if openh264_dep.found()
|
|
gstopenh264 = library('gstopenh264',
|
|
openh264_sources,
|
|
c_args : gst_plugins_bad_args,
|
|
link_args : noseh_link_args,
|
|
include_directories : [configinc],
|
|
dependencies : [gstvideo_dep, openh264_dep, gstpbutils_dep, ],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
plugins += [gstopenh264]
|
|
endif
|