mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-11 08:52:39 +00:00
47 lines
1,023 B
Meson
47 lines
1,023 B
Meson
aom_dep = dependency('aom', required: get_option('aom'))
|
|
aom3_dep = dependency('aom', version: '>= 3', required: get_option('aom'))
|
|
aom3_2_dep = dependency('aom', version: '>= 3.2', required: get_option('aom'))
|
|
|
|
aom_sources = [
|
|
'gstaom.c',
|
|
'gstav1enc.c',
|
|
'gstav1dec.c',
|
|
'gstav1utils.c',
|
|
]
|
|
|
|
aom_headers = [
|
|
'gstav1utils.h',
|
|
'gstav1dec.h',
|
|
'gstav1enc.h',
|
|
'gstaom.h',
|
|
]
|
|
|
|
doc_sources = []
|
|
foreach s: aom_sources + aom_headers
|
|
doc_sources += meson.current_source_dir() / s
|
|
endforeach
|
|
|
|
plugin_sources += {
|
|
'aom': pathsep.join(doc_sources)
|
|
}
|
|
|
|
if aom_dep.found()
|
|
aom_defines = []
|
|
if aom3_dep.found()
|
|
aom_defines += ['-DHAVE_LIBAOM_3']
|
|
endif
|
|
if aom3_2_dep.found()
|
|
aom_defines += ['-DHAVE_LIBAOM_3_2']
|
|
endif
|
|
|
|
|
|
gstaom = library('gstaom',
|
|
aom_sources,
|
|
c_args : gst_plugins_bad_args + aom_defines,
|
|
include_directories : [configinc],
|
|
dependencies : [gstpbutils_dep, gstvideo_dep, aom_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
plugins += [gstaom]
|
|
endif
|