Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
ddc2725a
Commit
ddc2725a
authored
Aug 30, 2011
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
File Aout: reorder options
parent
08490be5
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
modules/audio_output/file.c
modules/audio_output/file.c
+4
-3
No files found.
modules/audio_output/file.c
View file @
ddc2725a
...
@@ -81,8 +81,9 @@ static void Play ( audio_output_t *, block_t * );
...
@@ -81,8 +81,9 @@ static void Play ( audio_output_t *, block_t * );
#define FORMAT_LONGTEXT N_("One of \"u8\", \"s8\", \"u16\", \"s16\", " \
#define FORMAT_LONGTEXT N_("One of \"u8\", \"s8\", \"u16\", \"s16\", " \
"\"u16_le\", \"s16_le\", \"u16_be\", \"s16_be\", \"fixed32\", " \
"\"u16_le\", \"s16_le\", \"u16_be\", \"s16_be\", \"fixed32\", " \
"\"float32\" or \"spdif\"")
"\"float32\" or \"spdif\"")
#define CHANNELS_TEXT N_("Number of output channels")
#define CHANNELS_TEXT N_("Number of output channels")
#define CHANNELS_LONGTEXT N_("By default, all the channels of the incoming " \
#define CHANNELS_LONGTEXT N_("By default
(0)
, all the channels of the incoming " \
"will be saved but you can restrict the number of channels here.")
"will be saved but you can restrict the number of channels here.")
#define WAV_TEXT N_("Add WAVE header")
#define WAV_TEXT N_("Add WAVE header")
...
@@ -112,14 +113,14 @@ vlc_module_begin ()
...
@@ -112,14 +113,14 @@ vlc_module_begin ()
set_category
(
CAT_AUDIO
)
set_category
(
CAT_AUDIO
)
set_subcategory
(
SUBCAT_AUDIO_AOUT
)
set_subcategory
(
SUBCAT_AUDIO_AOUT
)
add_savefile
(
"audiofile-file"
,
"audiofile.wav"
,
FILE_TEXT
,
FILE_LONGTEXT
,
false
)
add_string
(
"audiofile-format"
,
"s16"
,
add_string
(
"audiofile-format"
,
"s16"
,
FORMAT_TEXT
,
FORMAT_LONGTEXT
,
true
)
FORMAT_TEXT
,
FORMAT_LONGTEXT
,
true
)
change_string_list
(
format_list
,
0
,
0
)
change_string_list
(
format_list
,
0
,
0
)
add_integer
(
"audiofile-channels"
,
0
,
add_integer
(
"audiofile-channels"
,
0
,
CHANNELS_TEXT
,
CHANNELS_LONGTEXT
,
true
)
CHANNELS_TEXT
,
CHANNELS_LONGTEXT
,
true
)
change_integer_range
(
0
,
6
)
change_integer_range
(
0
,
6
)
add_savefile
(
"audiofile-file"
,
"audiofile.wav"
,
FILE_TEXT
,
FILE_LONGTEXT
,
false
)
add_bool
(
"audiofile-wav"
,
true
,
WAV_TEXT
,
WAV_LONGTEXT
,
true
)
add_bool
(
"audiofile-wav"
,
true
,
WAV_TEXT
,
WAV_LONGTEXT
,
true
)
set_capability
(
"audio output"
,
0
)
set_capability
(
"audio output"
,
0
)
...
...
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