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
062e7e57
Commit
062e7e57
authored
Dec 20, 2012
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use VLC_CODEC_S24(B|L)32
parent
dc9fa2ed
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
modules/access/alsa.c
modules/access/alsa.c
+2
-2
modules/access/pulse.c
modules/access/pulse.c
+2
-2
No files found.
modules/access/alsa.c
View file @
062e7e57
...
...
@@ -257,8 +257,8 @@ static const vlc_fourcc_t formats[] = {
[
SND_PCM_FORMAT_S16_BE
]
=
VLC_CODEC_S16B
,
[
SND_PCM_FORMAT_U16_LE
]
=
VLC_CODEC_U16L
,
[
SND_PCM_FORMAT_U16_BE
]
=
VLC_CODEC_U16B
,
//[SND_PCM_FORMAT_S24_LE] = VLC_CODEC_?
,
//[SND_PCM_FORMAT_S24_BE] = VLC_CODEC_?
,
[
SND_PCM_FORMAT_S24_LE
]
=
VLC_CODEC_S24L32
,
[
SND_PCM_FORMAT_S24_BE
]
=
VLC_CODEC_S24B32
,
[
SND_PCM_FORMAT_U24_LE
]
=
VLC_CODEC_U32L
,
// TODO: replay gain
[
SND_PCM_FORMAT_U24_BE
]
=
VLC_CODEC_U32B
,
// ^
[
SND_PCM_FORMAT_S32_LE
]
=
VLC_CODEC_S32L
,
...
...
modules/access/pulse.c
View file @
062e7e57
...
...
@@ -248,8 +248,8 @@ static const vlc_fourcc_t fourccs[] = {
[
PA_SAMPLE_S32BE
]
=
VLC_CODEC_S32B
,
[
PA_SAMPLE_S24LE
]
=
VLC_CODEC_S24L
,
[
PA_SAMPLE_S24BE
]
=
VLC_CODEC_S24B
,
[
PA_SAMPLE_S24_32LE
]
=
0
,
[
PA_SAMPLE_S24_32BE
]
=
0
,
[
PA_SAMPLE_S24_32LE
]
=
VLC_CODEC_S24L32
,
[
PA_SAMPLE_S24_32BE
]
=
VLC_CODEC_S24B32
,
};
static
int
Open
(
vlc_object_t
*
obj
)
...
...
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