2021-09-18 23:55:34 +00:00
|
|
|
iqa_opt = get_option('iqa').require(gpl_allowed, error_message: '''
|
|
|
|
Plugin iqa explicitly required via options but (A)GPL-licensed plugins disabled via options.
|
|
|
|
Pass option -Dgpl=enabled to Meson to allow (A)GPL-licensed plugins to be built.
|
|
|
|
''')
|
|
|
|
|
|
|
|
dssim_dep = dependency('dssim', required: iqa_opt,
|
2016-11-16 17:46:24 +00:00
|
|
|
fallback: ['dssim', 'dssim_dep'])
|
|
|
|
|
|
|
|
if dssim_dep.found()
|
|
|
|
gstiqa = library('gstiqa',
|
|
|
|
'iqa.c',
|
|
|
|
c_args : gst_plugins_bad_args + ['-DGST_USE_UNSTABLE_API', '-DHAVE_DSSIM'],
|
|
|
|
include_directories : [configinc],
|
2018-12-26 16:54:21 +00:00
|
|
|
dependencies : [gstvideo_dep, gstbase_dep, gst_dep, dssim_dep],
|
2016-11-16 17:46:24 +00:00
|
|
|
install : true,
|
|
|
|
install_dir : plugins_install_dir,
|
|
|
|
)
|
2018-10-22 09:30:45 +00:00
|
|
|
plugins += [gstiqa]
|
2016-11-16 17:46:24 +00:00
|
|
|
endif
|
|
|
|
|