2021-09-18 23:55:34 +00:00
|
|
|
mpeg2dec_opt = get_option('mpeg2dec').require(gpl_allowed, error_message: '''
|
|
|
|
Plugin mpeg2dec 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.
|
|
|
|
''')
|
|
|
|
|
|
|
|
mpeg2_dep = dependency('libmpeg2', version : '>= 0.4.0', required : mpeg2dec_opt)
|
2016-08-12 15:55:34 +00:00
|
|
|
|
|
|
|
if mpeg2_dep.found()
|
|
|
|
mpeg2dec = library('gstmpeg2dec',
|
|
|
|
['gstmpeg2dec.c'],
|
|
|
|
c_args : ugly_args,
|
|
|
|
include_directories : [configinc],
|
|
|
|
dependencies : [gstvideo_dep, mpeg2_dep],
|
|
|
|
install : true,
|
|
|
|
install_dir : plugins_install_dir,
|
|
|
|
)
|
2018-10-22 09:47:37 +00:00
|
|
|
plugins += [mpeg2dec]
|
2016-08-12 15:55:34 +00:00
|
|
|
endif
|