Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
a7bb5dff
Commit
a7bb5dff
authored
May 17, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rawaud: default FOURCC with local rather than low endianess
parent
80ba00a8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
modules/demux/rawaud.c
modules/demux/rawaud.c
+9
-2
No files found.
modules/demux/rawaud.c
View file @
a7bb5dff
...
...
@@ -48,11 +48,17 @@ static void Close( vlc_object_t * );
#define FOURCC_TEXT N_("FOURCC code of raw input format")
#define FOURCC_LONGTEXT N_( \
"FOURCC code of the raw input format. This is a four character string.
Default is s16l.
" )
"FOURCC code of the raw input format. This is a four character string." )
#define LANG_TEXT N_("Forces the audio language.")
#define LANG_LONGTEXT N_("Forces the audio language for the output mux. Three letter ISO639 code. Default is 'eng'. ")
#ifdef WORDS_BIGENDIAN
# define FOURCC_DEFAULT "s16b"
#else
# define FOURCC_DEFAULT "s16l"
#endif
vlc_module_begin
();
set_shortname
(
"Raw Audio"
);
set_description
(
N_
(
"Raw audio demuxer"
)
);
...
...
@@ -63,7 +69,8 @@ vlc_module_begin();
add_shortcut
(
"rawaud"
);
add_integer
(
"rawaud-channels"
,
2
,
0
,
CHANNELS_TEXT
,
CHANNELS_LONGTEXT
,
false
);
add_integer
(
"rawaud-samplerate"
,
48000
,
0
,
SAMPLERATE_TEXT
,
SAMPLERATE_LONGTEXT
,
false
);
add_string
(
"rawaud-fourcc"
,
"s16l"
,
NULL
,
FOURCC_TEXT
,
FOURCC_LONGTEXT
,
false
);
add_string
(
"rawaud-fourcc"
,
FOURCC_DEFAULT
,
NULL
,
FOURCC_TEXT
,
FOURCC_LONGTEXT
,
false
);
add_string
(
"rawaud-lang"
,
"eng"
,
NULL
,
LANG_TEXT
,
LANG_LONGTEXT
,
false
);
vlc_module_end
();
...
...
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