gstreamer/subprojects/gst-plugins-good/ext/amrwbdec/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

14 lines
401 B
Meson

amrwb_dep = dependency('opencore-amrwb', version : '>= 0.1.3', required : get_option('amrwbdec'))
if amrwb_dep.found()
amrwbdec = library('gstamrwbdec',
['amrwb.c', 'amrwbdec.c'],
c_args : gst_plugins_good_args,
include_directories : [configinc],
dependencies : [gstaudio_dep, amrwb_dep],
install : true,
install_dir : plugins_install_dir,
)
plugins += [amrwbdec]
endif