Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
ace0ac39
Commit
ace0ac39
authored
Jan 23, 2002
by
Cyril Deguet
Browse files
* enabled --stereo option for streams that pretend to be mono while they
are not!
parent
1477cfb4
Changes
1
Hide whitespace changes
Inline
Side-by-side
plugins/mpeg_adec/mpeg_adec.c
View file @
ace0ac39
...
...
@@ -2,7 +2,7 @@
* mpeg_adec.c: MPEG audio decoder thread
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* $Id: mpeg_adec.c,v 1.1
6
2002/01/2
2 23:14:26 massiot
Exp $
* $Id: mpeg_adec.c,v 1.1
7
2002/01/2
3 12:02:12 asmax
Exp $
*
* Authors: Michel Kaempf <maxx@via.ecp.fr>
* Michel Lespinasse <walken@via.ecp.fr>
...
...
@@ -175,7 +175,13 @@ static void DecodeThread( adec_thread_t * p_adec )
int
fifo_type
;
int
channels
;
if
(
sync_info
.
b_stereo
)
if
(
main_GetIntVariable
(
AOUT_STEREO_VAR
,
0
)
)
{
intf_WarnMsg
(
4
,
"adec info: setting stereo output"
);
fifo_type
=
AOUT_ADEC_STEREO_FIFO
;
channels
=
2
;
}
else
if
(
sync_info
.
b_stereo
)
{
fifo_type
=
AOUT_ADEC_STEREO_FIFO
;
channels
=
2
;
...
...
Write
Preview
Supports
Markdown
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