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
8856aee1
Commit
8856aee1
authored
Jan 26, 2004
by
Derk-Jan Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* String review
parent
41f757da
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
src/audio_output/output.c
src/audio_output/output.c
+3
-3
src/input/input_programs.c
src/input/input_programs.c
+4
-4
No files found.
src/audio_output/output.c
View file @
8856aee1
...
...
@@ -2,7 +2,7 @@
* output.c : internal management of output streams for the audio output
*****************************************************************************
* Copyright (C) 2002-2004 VideoLAN
* $Id: output.c,v 1.4
2 2004/01/06 12:02:05 zorglub
Exp $
* $Id: output.c,v 1.4
3 2004/01/26 21:37:58 hartman
Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
...
...
@@ -101,7 +101,7 @@ int aout_OutputNew( aout_instance_t * p_aout,
/* Mono - create the audio-channels variable. */
var_Create
(
p_aout
,
"audio-channels"
,
VLC_VAR_INTEGER
|
VLC_VAR_HASCHOICE
);
text
.
psz_string
=
_
(
"Audio
c
hannels"
);
text
.
psz_string
=
_
(
"Audio
C
hannels"
);
var_Change
(
p_aout
,
"audio-channels"
,
VLC_VAR_SETTEXT
,
&
text
,
NULL
);
val
.
i_int
=
AOUT_VAR_CHAN_STEREO
;
text
.
psz_string
=
_
(
"Stereo"
);
...
...
@@ -128,7 +128,7 @@ int aout_OutputNew( aout_instance_t * p_aout,
/* Stereo - create the audio-channels variable. */
var_Create
(
p_aout
,
"audio-channels"
,
VLC_VAR_INTEGER
|
VLC_VAR_HASCHOICE
);
text
.
psz_string
=
_
(
"Audio
c
hannels"
);
text
.
psz_string
=
_
(
"Audio
C
hannels"
);
var_Change
(
p_aout
,
"audio-channels"
,
VLC_VAR_SETTEXT
,
&
text
,
NULL
);
if
(
p_aout
->
output
.
output
.
i_original_channels
&
AOUT_CHAN_DOLBYSTEREO
)
...
...
src/input/input_programs.c
View file @
8856aee1
...
...
@@ -2,7 +2,7 @@
* input_programs.c: es_descriptor_t, pgrm_descriptor_t management
*****************************************************************************
* Copyright (C) 1999-2004 VideoLAN
* $Id: input_programs.c,v 1.1
29 2004/01/25 17:16:06 zorglub
Exp $
* $Id: input_programs.c,v 1.1
30 2004/01/26 21:37:58 hartman
Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
...
...
@@ -110,13 +110,13 @@ int input_InitStream( input_thread_t * p_input, size_t i_data_len )
var_Change
(
p_input
,
"navigation"
,
VLC_VAR_SETTEXT
,
&
text
,
NULL
);
var_Create
(
p_input
,
"video-es"
,
VLC_VAR_INTEGER
|
VLC_VAR_HASCHOICE
);
text
.
psz_string
=
_
(
"Video
t
rack"
);
text
.
psz_string
=
_
(
"Video
T
rack"
);
var_Change
(
p_input
,
"video-es"
,
VLC_VAR_SETTEXT
,
&
text
,
NULL
);
var_Create
(
p_input
,
"audio-es"
,
VLC_VAR_INTEGER
|
VLC_VAR_HASCHOICE
);
text
.
psz_string
=
_
(
"Audio
t
rack"
);
text
.
psz_string
=
_
(
"Audio
T
rack"
);
var_Change
(
p_input
,
"audio-es"
,
VLC_VAR_SETTEXT
,
&
text
,
NULL
);
var_Create
(
p_input
,
"spu-es"
,
VLC_VAR_INTEGER
|
VLC_VAR_HASCHOICE
);
text
.
psz_string
=
_
(
"Subtitles
t
rack"
);
text
.
psz_string
=
_
(
"Subtitles
T
rack"
);
var_Change
(
p_input
,
"spu-es"
,
VLC_VAR_SETTEXT
,
&
text
,
NULL
);
var_AddCallback
(
p_input
,
"program"
,
ProgramCallback
,
NULL
);
...
...
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