Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
f5bd9c09
Commit
f5bd9c09
authored
May 31, 2002
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* plugins/sdl/aout_sdl.c : Fixed an endianness issue created by a
brain-dead developer :p
parent
2cf9b0f3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
plugins/sdl/aout_sdl.c
plugins/sdl/aout_sdl.c
+9
-1
No files found.
plugins/sdl/aout_sdl.c
View file @
f5bd9c09
...
...
@@ -2,7 +2,7 @@
* aout_sdl.c : audio sdl functions library
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* $Id: aout_sdl.c,v 1.2
7 2002/02/24 22:06:50 sam
Exp $
* $Id: aout_sdl.c,v 1.2
8 2002/05/31 21:37:42 massiot
Exp $
*
* Authors: Michel Kaempf <maxx@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org>
...
...
@@ -133,7 +133,11 @@ static int aout_Open( aout_thread_t *p_aout )
/* TODO: write conversion beetween AOUT_FORMAT_DEFAULT
* AND AUDIO* from SDL. */
desired
.
freq
=
p_aout
->
i_rate
;
#ifdef WORDS_BIGENDIAN
desired
.
format
=
AUDIO_S16MSB
;
/* stereo 16 bits */
#else
desired
.
format
=
AUDIO_S16LSB
;
/* stereo 16 bits */
#endif
desired
.
channels
=
p_aout
->
i_channels
;
desired
.
callback
=
aout_SDLCallback
;
desired
.
userdata
=
p_aout
->
p_sys
;
...
...
@@ -173,7 +177,11 @@ static int aout_SetFormat( aout_thread_t *p_aout )
/*i_format = p_aout->i_format;*/
desired
.
freq
=
p_aout
->
i_rate
;
/* Set the output rate */
#ifdef WORDS_BIGENDIAN
desired
.
format
=
AUDIO_S16MSB
;
/* stereo 16 bits */
#else
desired
.
format
=
AUDIO_S16LSB
;
/* stereo 16 bits */
#endif
desired
.
channels
=
p_aout
->
i_channels
;
desired
.
callback
=
aout_SDLCallback
;
desired
.
userdata
=
p_aout
->
p_sys
;
...
...
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