gstreamer/subprojects/gst-plugins-good/ext/amrnb/meson.build
Tim-Philipp Müller 83026f6289 amrnb, amrwbdec: move AMR-NB and AMR-WB plugins to -good
Fedora ships these libraries as part of the main distribution now,
and they are decades old anyway so don't implement any of the newer
features.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/4512>
2023-05-02 23:33:12 +00:00

19 lines
578 B
Meson

amrnb_dep = dependency('opencore-amrnb', version : '>= 0.1.3', required : get_option('amrnb'))
if amrnb_dep.found()
amrnb = library('gstamrnb',
['amrnb.c', 'amrnbdec.c', 'amrnbenc.c'],
c_args : gst_plugins_good_args,
include_directories : [configinc],
dependencies : [gstaudio_dep, amrnb_dep],
install : true,
install_dir : plugins_install_dir,
)
plugins += [amrnb]
install_data(sources: 'GstAmrnbEnc.prs', install_dir: presetdir)
env = environment()
env.prepend('GST_PRESET_PATH', meson.current_source_dir())
meson.add_devenv(env)
endif