Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
0e19bbbe
Commit
0e19bbbe
authored
Apr 14, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ALSA: list most preset devices in the static list
This is only used when the update callback is not used though.
parent
ed973e24
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
2 deletions
+16
-2
modules/audio_output/alsa.c
modules/audio_output/alsa.c
+16
-2
No files found.
modules/audio_output/alsa.c
View file @
0e19bbbe
...
...
@@ -102,8 +102,22 @@ static void GetDevices( vlc_object_t *, module_config_t * );
/*****************************************************************************
* Module descriptor
*****************************************************************************/
static
const
char
*
const
ppsz_devices
[]
=
{
DEFAULT_ALSA_DEVICE
};
static
const
char
*
const
ppsz_devices_text
[]
=
{
N_
(
"Default"
)
};
static
const
char
*
const
ppsz_devices
[]
=
{
"default"
,
"plug:front"
,
"plug:side"
,
"plug:rear"
,
"plug:center_lfe"
,
"plug:surround40"
,
"plug:surround41"
,
"plug:surround50"
,
"plug:surround51"
,
"plug:surround71"
,
"hdmi"
,
"iec958"
,
};
static
const
char
*
const
ppsz_devices_text
[]
=
{
N_
(
"Default"
),
N_
(
"Front speakers"
),
N_
(
"Side speakers"
),
N_
(
"Rear speakers"
),
N_
(
"Center and subwoofer"
),
N_
(
"Surround 4.0"
),
N_
(
"Surround 4.1"
),
N_
(
"Surround 5.0"
),
N_
(
"Surround 5.1"
),
N_
(
"Surround 7.1"
),
N_
(
"HDMI"
),
N_
(
"S/PDIF"
),
};
vlc_module_begin
()
set_shortname
(
"ALSA"
)
set_description
(
N_
(
"ALSA audio output"
)
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment