2021-09-18 23:55:34 +00:00
|
|
|
x265_opt = get_option('x265').require(gpl_allowed, error_message: '''
|
|
|
|
Plugin x265 explicitly required via options but GPL-licensed plugins disabled via options.
|
|
|
|
Pass option -Dgpl=enabled to Meson to allow GPL-licensed plugins to be built.
|
|
|
|
''')
|
|
|
|
|
|
|
|
x265_dep = dependency('x265', required: x265_opt)
|
2016-08-12 15:51:45 +00:00
|
|
|
if x265_dep.found()
|
|
|
|
gstx265 = library('gstx265',
|
|
|
|
'gstx265enc.c',
|
|
|
|
c_args : gst_plugins_bad_args,
|
|
|
|
include_directories : [configinc],
|
|
|
|
dependencies : [gstpbutils_dep, gstvideo_dep, x265_dep],
|
|
|
|
install : true,
|
|
|
|
install_dir : plugins_install_dir,
|
|
|
|
)
|
2018-04-24 18:05:30 +00:00
|
|
|
pkgconfig.generate(gstx265, install_dir : plugins_pkgconfig_install_dir)
|
2018-10-22 09:30:45 +00:00
|
|
|
plugins += [gstx265]
|
2016-08-12 15:51:45 +00:00
|
|
|
endif
|