mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 09:00:54 +00:00
6a4425e46a
Removing some copy pasted code Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2970>
27 lines
705 B
Meson
27 lines
705 B
Meson
ogg_sources = [
|
|
'dirac_parse.c',
|
|
'gstoggaviparse.c',
|
|
'gstoggplugin.c',
|
|
'gstoggdemux.c',
|
|
'gstoggmux.c',
|
|
'gstoggparse.c',
|
|
'gstoggstream.c',
|
|
'gstogmparse.c',
|
|
'vorbis_parse.c',
|
|
]
|
|
|
|
ogg_dep = dependency('ogg', allow_fallback: true, version : '>=1.0', required : get_option('ogg'))
|
|
core_conf.set('HAVE_OGG', ogg_dep.found())
|
|
|
|
if ogg_dep.found()
|
|
gstogg = library('gstogg',
|
|
ogg_sources,
|
|
c_args : gst_plugins_base_args,
|
|
link_args : noseh_link_args,
|
|
include_directories: [configinc, libsinc],
|
|
dependencies : [ogg_dep, audio_dep, pbutils_dep, tag_dep, riff_dep, gst_dep, gst_base_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
plugins += [gstogg]
|
|
endif
|