mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 12:51:16 +00:00
83026f6289
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>
13 lines
401 B
Meson
13 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
|