2025-01-13 17:10:31 +00:00
|
|
|
faad_sources = [
|
|
|
|
'gstfaad.c',
|
|
|
|
]
|
|
|
|
|
|
|
|
faad_headers = [
|
|
|
|
'gstfaad.h',
|
|
|
|
]
|
|
|
|
|
|
|
|
doc_sources = []
|
|
|
|
foreach s: faad_sources + faad_headers
|
|
|
|
doc_sources += meson.current_source_dir() / s
|
|
|
|
endforeach
|
|
|
|
|
|
|
|
plugin_sources += {
|
|
|
|
'faad': pathsep.join(doc_sources)
|
|
|
|
}
|
|
|
|
|
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',
|
2025-01-13 17:10:31 +00:00
|
|
|
faad_sources,
|
2016-08-12 15:51:45 +00:00
|
|
|
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-10-22 09:30:45 +00:00
|
|
|
plugins += [gstfaad]
|
2016-08-12 15:51:45 +00:00
|
|
|
endif
|