Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
450
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
662e9347
Commit
662e9347
authored
1 month ago
by
Brad Smith
Committed by
Steve Lhomme
1 month ago
Browse files
Options
Downloads
Patches
Plain Diff
meson: add sndio support
parent
f6ebf56c
No related branches found
Branches containing commit
No related tags found
1 merge request
!6830
meson: add sndio support
Pipeline
#566299
canceled with stage
in 38 minutes and 43 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
meson_options.txt
+5
-1
5 additions, 1 deletion
meson_options.txt
modules/audio_output/meson.build
+10
-0
10 additions, 0 deletions
modules/audio_output/meson.build
with
15 additions
and
1 deletion
meson_options.txt
+
5
−
1
View file @
662e9347
...
...
@@ -219,6 +219,11 @@ option('oss',
value
:
'auto'
,
description
:
'Enable/disable OSS support (default-enabled on BSD)'
)
option
(
'sndio'
,
type
:
'feature'
,
value
:
'auto'
,
description
:
'Enable/disable sndio support'
)
option
(
'ogg'
,
type
:
'feature'
,
value
:
'auto'
,
...
...
@@ -778,7 +783,6 @@ option('nfs',
# TODO: Missing vdpau
# TODO: Missing kva
# TODO: Missing mmal
# TODO: Missing sndio
# TODO: Missing jack
# TODO: Missing opensles
# TODO: Missing kai
...
...
This diff is collapsed.
Click to expand it.
modules/audio_output/meson.build
+
10
−
0
View file @
662e9347
...
...
@@ -46,6 +46,16 @@ if jack_dep.found()
}
endif
# sndio output
sndio_dep
=
dependency
(
'sndio'
,
version
:
'>= 1.8.0'
,
required
:
get_option
(
'sndio'
))
vlc_modules
+=
{
'name'
:
'sndio'
,
'sources'
:
files
(
'sndio.c'
),
'dependencies'
:
[
sndio_dep
],
'enabled'
:
sndio_dep
.
found
(),
}
# AUHAL output module (macOS only)
if
have_osx
vlc_modules
+=
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment