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
ace0ac39
Commit
ace0ac39
authored
Jan 23, 2002
by
Cyril Deguet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* 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
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
plugins/mpeg_adec/mpeg_adec.c
plugins/mpeg_adec/mpeg_adec.c
+8
-2
No files found.
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/22 23:14:26 massiot
Exp $
* $Id: mpeg_adec.c,v 1.1
7 2002/01/23 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
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