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
02fff59c
Commit
02fff59c
authored
Jan 07, 2003
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed unused options in the aout.
parent
a451a4de
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
22 deletions
+1
-22
src/libvlc.h
src/libvlc.h
+1
-22
No files found.
src/libvlc.h
View file @
02fff59c
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* libvlc.h: main libvlc header
* libvlc.h: main libvlc header
*****************************************************************************
*****************************************************************************
* Copyright (C) 1998-2002 VideoLAN
* Copyright (C) 1998-2002 VideoLAN
* $Id: libvlc.h,v 1.3
3 2003/01/07 13:26:22 sam
Exp $
* $Id: libvlc.h,v 1.3
4 2003/01/07 14:38:13 massiot
Exp $
*
*
* Authors: Vincent Seguin <seguin@via.ecp.fr>
* Authors: Vincent Seguin <seguin@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org>
* Samuel Hocevar <sam@zoy.org>
...
@@ -80,29 +80,11 @@
...
@@ -80,29 +80,11 @@
"You can set the default audio output volume here, in a range from 0 to " \
"You can set the default audio output volume here, in a range from 0 to " \
"1024.")
"1024.")
#define FORMAT_TEXT N_("audio output format")
#define FORMAT_LONGTEXT N_( \
"You can force the audio output format here.\n" \
"0 -> 16 bits signed native endian (default)\n" \
"1 -> 8 bits unsigned\n" \
"2 -> 16 bits signed little endian\n" \
"3 -> 16 bits signed big endian\n" \
"4 -> 8 bits signed\n" \
"5 -> 16 bits unsigned little endian\n" \
"6 -> 16 bits unsigned big endian\n" \
"7 -> MPEG2 audio (unsupported)\n" \
"8 -> A52 pass-through")
#define AOUT_RATE_TEXT N_("audio output frequency (Hz)")
#define AOUT_RATE_TEXT N_("audio output frequency (Hz)")
#define AOUT_RATE_LONGTEXT N_( \
#define AOUT_RATE_LONGTEXT N_( \
"You can force the audio output frequency here. Common values are " \
"You can force the audio output frequency here. Common values are " \
"48000, 44100, 32000, 22050, 16000, 11025, 8000.")
"48000, 44100, 32000, 22050, 16000, 11025, 8000.")
#define AOUT_CHANNELS_TEXT N_("number of channels of audio output")
#define AOUT_CHANNELS_LONGTEXT N_( \
"Mono is 1, stereo is 2. Higher value (used for 5.1) may not be " \
"supported by your audio output module.")
#define DESYNC_TEXT N_("compensate desynchronization of audio (in ms)")
#define DESYNC_TEXT N_("compensate desynchronization of audio (in ms)")
#define DESYNC_LONGTEXT N_( \
#define DESYNC_LONGTEXT N_( \
"This option allows you to delay the audio output. This can be handy if " \
"This option allows you to delay the audio output. This can be handy if " \
...
@@ -434,10 +416,7 @@ vlc_module_begin();
...
@@ -434,10 +416,7 @@ vlc_module_begin();
add_bool
(
"audio"
,
1
,
NULL
,
AUDIO_TEXT
,
AUDIO_LONGTEXT
);
add_bool
(
"audio"
,
1
,
NULL
,
AUDIO_TEXT
,
AUDIO_LONGTEXT
);
add_integer_with_range
(
"volume"
,
256
,
0
,
1024
,
NULL
,
VOLUME_TEXT
,
VOLUME_LONGTEXT
);
add_integer_with_range
(
"volume"
,
256
,
0
,
1024
,
NULL
,
VOLUME_TEXT
,
VOLUME_LONGTEXT
);
add_integer
(
"aout-rate"
,
-
1
,
NULL
,
AOUT_RATE_TEXT
,
AOUT_RATE_LONGTEXT
);
add_integer
(
"aout-rate"
,
-
1
,
NULL
,
AOUT_RATE_TEXT
,
AOUT_RATE_LONGTEXT
);
add_integer
(
"aout-channels"
,
-
1
,
NULL
,
AOUT_CHANNELS_TEXT
,
AOUT_CHANNELS_LONGTEXT
);
add_integer
(
"desync"
,
0
,
NULL
,
DESYNC_TEXT
,
DESYNC_LONGTEXT
);
add_integer
(
"desync"
,
0
,
NULL
,
DESYNC_TEXT
,
DESYNC_LONGTEXT
);
add_integer
(
"audio-format"
,
0
,
NULL
,
FORMAT_TEXT
,
FORMAT_LONGTEXT
);
add_bool
(
"headphone"
,
0
,
NULL
,
HEADPHONE_TEXT
,
HEADPHONE_LONGTEXT
);
add_bool
(
"headphone"
,
0
,
NULL
,
HEADPHONE_TEXT
,
HEADPHONE_LONGTEXT
);
add_integer
(
"headphone-dim"
,
5
,
NULL
,
HEADPHONE_DIM_TEXT
,
add_integer
(
"headphone-dim"
,
5
,
NULL
,
HEADPHONE_DIM_TEXT
,
HEADPHONE_DIM_LONGTEXT
);
HEADPHONE_DIM_LONGTEXT
);
...
...
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