gstreamer/subprojects/gst-plugins-bad/ext/aom/meson.build

13 lines
395 B
Meson

aom_dep = dependency('aom', required: get_option('aom'))
if aom_dep.found()
gstaom = library('gstaom',
['gstaom.c', 'gstav1enc.c', 'gstav1dec.c', 'gstav1utils.c'],
c_args : gst_plugins_bad_args,
include_directories : [configinc],
dependencies : [gstpbutils_dep, gstvideo_dep, aom_dep],
install : true,
install_dir : plugins_install_dir,
)
plugins += [gstaom]
endif