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
1e4a18a2
Commit
1e4a18a2
authored
Aug 19, 2008
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added s32l/b support to aout.
parent
9e50567b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
include/vlc_aout.h
include/vlc_aout.h
+2
-0
src/audio_output/common.c
src/audio_output/common.c
+2
-0
No files found.
include/vlc_aout.h
View file @
1e4a18a2
...
...
@@ -51,11 +51,13 @@ extern "C" {
# define AOUT_FMT_S16_NE VLC_FOURCC('s','1','6','b')
# define AOUT_FMT_U16_NE VLC_FOURCC('u','1','6','b')
# define AOUT_FMT_S24_NE VLC_FOURCC('s','2','4','b')
# define AOUT_FMT_S32_NE VLC_FOURCC('s','3','2','b')
# define AOUT_FMT_SPDIF_NE VLC_FOURCC('s','p','d','b')
#else
# define AOUT_FMT_S16_NE VLC_FOURCC('s','1','6','l')
# define AOUT_FMT_U16_NE VLC_FOURCC('u','1','6','l')
# define AOUT_FMT_S24_NE VLC_FOURCC('s','2','4','l')
# define AOUT_FMT_S32_NE VLC_FOURCC('s','3','2','l')
# define AOUT_FMT_SPDIF_NE VLC_FOURCC('s','p','d','i')
#endif
...
...
src/audio_output/common.c
View file @
1e4a18a2
...
...
@@ -159,6 +159,8 @@ unsigned int aout_BitsPerSample( vlc_fourcc_t i_format )
case
VLC_FOURCC
(
's'
,
'2'
,
'4'
,
'b'
):
return
24
;
case
VLC_FOURCC
(
's'
,
'3'
,
'2'
,
'l'
):
case
VLC_FOURCC
(
's'
,
'3'
,
'2'
,
'b'
):
case
VLC_FOURCC
(
'f'
,
'l'
,
'3'
,
'2'
):
case
VLC_FOURCC
(
'f'
,
'i'
,
'3'
,
'2'
):
return
32
;
...
...
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