[vlc-commits] [Git][videolan/vlc][master] 2 commits: meson: disable daala by default
Steve Lhomme (@robUx4)
gitlab at videolan.org
Fri Nov 22 14:30:48 UTC 2024
Steve Lhomme pushed to branch master at VideoLAN / VLC
Commits:
d57848b8 by Steve Lhomme at 2024-11-22T13:48:35+00:00
meson: disable daala by default
As in autotools.
- - - - -
903ac7f2 by Steve Lhomme at 2024-11-22T13:48:35+00:00
meson: add aribcaption CMake detection
- - - - -
2 changed files:
- meson_options.txt
- modules/codec/meson.build
Changes:
=====================================
meson_options.txt
=====================================
@@ -271,13 +271,13 @@ option('theoradec',
option('daaladec',
type : 'feature',
- value : 'auto',
- description : 'Enable/disable daaladec support')
+ value : 'disabled',
+ description : 'Enable/disable experimental daaladec support')
option('daalaenc',
type : 'feature',
- value : 'auto',
- description : 'Enable/disable daalaenc support')
+ value : 'disabled',
+ description : 'Enable/disable experimental daalaenc support')
option('vorbis',
type : 'feature',
=====================================
modules/codec/meson.build
=====================================
@@ -282,7 +282,7 @@ vlc_modules += {
'enabled' : aribb24_dep.found()
}
-libaribcaption_dep = dependency('libaribcaption', required: get_option('aribcaption'))
+libaribcaption_dep = dependency('libaribcaption', 'aribcaption', required: get_option('aribcaption'))
vlc_modules += {
'name' : 'aribcaption',
'sources' : files('arib/libaribcaption.c'),
View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/2f08e3cc36bd79ab593d45e0c2cc8183765e12d2...903ac7f2efc9bd4d762df706ae1f94465595a915
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/2f08e3cc36bd79ab593d45e0c2cc8183765e12d2...903ac7f2efc9bd4d762df706ae1f94465595a915
You're receiving this email because of your account on code.videolan.org.
VideoLAN code repository instance
More information about the vlc-commits
mailing list