2021-09-18 23:55:34 +00:00
|
|
|
faad_opt = get_option('faad').require(gpl_allowed, error_message: '''
|
|
|
|
Plugin faad 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.
|
|
|
|
''')
|
|
|
|
|
|
|
|
if faad_opt.disabled()
|
|
|
|
faad_dep = dependency('', required: false)
|
|
|
|
subdir_done()
|
|
|
|
endif
|
|
|
|
|
2016-08-12 15:51:45 +00:00
|
|
|
faad_args = [ ]
|
|
|
|
|
|
|
|
have_faad = cc.has_header_symbol('neaacdec.h', 'NeAACDecOpen')
|
|
|
|
have_faad_2_7 = have_faad and cc.has_header_symbol('neaacdec.h', 'LATM')
|
2021-09-18 23:55:34 +00:00
|
|
|
if have_faad and not have_faad_2_7 and faad_opt.enabled()
|
2016-08-12 15:51:45 +00:00
|
|
|
message('Found faad2, but too old (< v2.7.0)')
|
|
|
|
endif
|
|
|
|
|
2021-09-18 23:55:34 +00:00
|
|
|
faad_dep = cc.find_library('faad', required : faad_opt)
|
2016-08-12 15:51:45 +00:00
|
|
|
|
|
|
|
if faad_dep.found() and have_faad_2_7
|
|
|
|
gstfaad = library('gstfaad',
|
|
|
|
'gstfaad.c',
|
|
|
|
c_args : gst_plugins_bad_args + [ '-DFAAD2_MINOR_VERSION=7', '-DFAAD_IS_NEAAC' ],
|
|
|
|
link_args : noseh_link_args,
|
|
|
|
include_directories : [configinc],
|
|
|
|
dependencies : [gstaudio_dep, gstpbutils_dep, gsttag_dep, faad_dep],
|
|
|
|
install : true,
|
|
|
|
install_dir : plugins_install_dir,
|
|
|
|
)
|
2018-04-24 18:05:30 +00:00
|
|
|
pkgconfig.generate(gstfaad, install_dir : plugins_pkgconfig_install_dir)
|
2018-10-22 09:30:45 +00:00
|
|
|
plugins += [gstfaad]
|
2016-08-12 15:51:45 +00:00
|
|
|
endif
|