mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
6a4425e46a
Removing some copy pasted code Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2970>
14 lines
330 B
Meson
14 lines
330 B
Meson
aconv_sources = [
|
|
'gstaudioconvert.c',
|
|
'plugin.c'
|
|
]
|
|
|
|
gstaudioconvert = library('gstaudioconvert',
|
|
aconv_sources,
|
|
c_args : gst_plugins_base_args,
|
|
include_directories: [configinc, libsinc],
|
|
dependencies : [audio_dep, gst_base_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
plugins += [gstaudioconvert]
|