2018-07-27 13:29:23 +00:00
|
|
|
aom_dep = dependency('aom', required: get_option('aom'))
|
2017-06-27 22:50:41 +00:00
|
|
|
if aom_dep.found()
|
|
|
|
gstaom = library('gstaom',
|
2018-07-30 14:31:00 +00:00
|
|
|
['gstaom.c', 'gstav1enc.c', 'gstav1dec.c', 'gstav1utils.c'],
|
2017-06-27 22:50:41 +00:00
|
|
|
c_args : gst_plugins_bad_args,
|
|
|
|
include_directories : [configinc],
|
|
|
|
dependencies : [gstpbutils_dep, gstvideo_dep, aom_dep],
|
|
|
|
install : true,
|
|
|
|
install_dir : plugins_install_dir,
|
|
|
|
)
|
2018-04-24 18:05:30 +00:00
|
|
|
pkgconfig.generate(gstaom, install_dir : plugins_pkgconfig_install_dir)
|
2019-05-18 11:09:18 +00:00
|
|
|
plugins += [gstaom]
|
2017-06-27 22:50:41 +00:00
|
|
|
endif
|