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
cc0c54f9
Commit
cc0c54f9
authored
May 04, 2003
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* src/audio_output/output.c: fixed warning.
parent
5080ba26
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/audio_output/output.c
src/audio_output/output.c
+2
-2
No files found.
src/audio_output/output.c
View file @
cc0c54f9
...
...
@@ -2,7 +2,7 @@
* output.c : internal management of output streams for the audio output
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: output.c,v 1.3
8 2003/05/04 22:42:17
gbazin Exp $
* $Id: output.c,v 1.3
9 2003/05/04 23:39:02
gbazin Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
...
...
@@ -142,7 +142,7 @@ int aout_OutputNew( aout_instance_t * p_aout,
text
.
psz_string
=
_
(
"Stereo"
);
}
var_Change
(
p_aout
,
"audio-channels"
,
VLC_VAR_ADDCHOICE
,
&
val
,
&
text
);
val
.
i_int
=
AOUT_VAR_CHAN_LEFT
;
text
.
i_int
=
_
(
"Left"
);
val
.
i_int
=
AOUT_VAR_CHAN_LEFT
;
text
.
psz_string
=
_
(
"Left"
);
var_Change
(
p_aout
,
"audio-channels"
,
VLC_VAR_ADDCHOICE
,
&
val
,
&
text
);
val
.
i_int
=
AOUT_VAR_CHAN_RIGHT
;
text
.
psz_string
=
_
(
"Right"
);
var_Change
(
p_aout
,
"audio-channels"
,
VLC_VAR_ADDCHOICE
,
&
val
,
&
text
);
...
...
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