Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
4bc5a5f3
Commit
4bc5a5f3
authored
Nov 30, 2003
by
Rocky Bernstein
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Go over options: Add hooks for internationalization, some typos,
display some of these even when not "advanced"
parent
d96dc743
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
14 deletions
+12
-14
modules/access/vcdx/vcd.c
modules/access/vcdx/vcd.c
+12
-14
No files found.
modules/access/vcdx/vcd.c
View file @
4bc5a5f3
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* vcd.c : VCD input module for vlc
* vcd.c : VCD input module for vlc
*****************************************************************************
*****************************************************************************
* Copyright (C) 2000,2003 VideoLAN
* Copyright (C) 2000,2003 VideoLAN
* $Id: vcd.c,v 1.
9 2003/11/26 01:28:52
rocky Exp $
* $Id: vcd.c,v 1.
10 2003/11/30 13:53:45
rocky Exp $
*
*
* Authors: Rocky Bernstein <rocky@panix.com>
* Authors: Rocky Bernstein <rocky@panix.com>
*
*
...
@@ -49,7 +49,6 @@ int E_(DebugCallback) ( vlc_object_t *p_this, const char *psz_name,
...
@@ -49,7 +49,6 @@ int E_(DebugCallback) ( vlc_object_t *p_this, const char *psz_name,
* Option help text
* Option help text
*****************************************************************************/
*****************************************************************************/
#define DEBUG_TEXT N_("set debug mask for additional debugging.")
#define DEBUG_LONGTEXT N_( \
#define DEBUG_LONGTEXT N_( \
"This integer when viewed in binary is a debugging mask\n" \
"This integer when viewed in binary is a debugging mask\n" \
"meta info 1\n" \
"meta info 1\n" \
...
@@ -65,12 +64,6 @@ int E_(DebugCallback) ( vlc_object_t *p_this, const char *psz_name,
...
@@ -65,12 +64,6 @@ int E_(DebugCallback) ( vlc_object_t *p_this, const char *psz_name,
"still (400) 1024\n" \
"still (400) 1024\n" \
"vcdinfo (800) 2048\n" )
"vcdinfo (800) 2048\n" )
#define DEV_TEXT N_("Video device name")
#define DEV_LONGTEXT N_( \
"Specify the name of the video device that will be used by default. " \
"If you don't specify anything, we'll scan for a suitable VCD device.")
/*****************************************************************************
/*****************************************************************************
* Module descriptor
* Module descriptor
*****************************************************************************/
*****************************************************************************/
...
@@ -86,16 +79,21 @@ vlc_module_begin();
...
@@ -86,16 +79,21 @@ vlc_module_begin();
/* Configuration options */
/* Configuration options */
add_category_hint
(
N_
(
"VCDX"
),
NULL
,
VLC_TRUE
);
add_category_hint
(
N_
(
"VCDX"
),
NULL
,
VLC_TRUE
);
add_integer
(
MODULE_STRING
"-debug"
,
0
,
E_
(
DebugCallback
),
DEBUG_TEXT
,
add_integer
(
MODULE_STRING
"-debug"
,
0
,
E_
(
DebugCallback
),
N_
(
"set debug mask for additional debugging."
),
DEBUG_LONGTEXT
,
VLC_TRUE
);
DEBUG_LONGTEXT
,
VLC_TRUE
);
add_string
(
MODULE_STRING
"-device"
,
""
,
NULL
,
DEV_TEXT
,
add_string
(
MODULE_STRING
"-device"
,
""
,
NULL
,
DEV_LONGTEXT
,
VLC_TRUE
);
N_
(
"VCD device name"
),
N_
(
"Specify the name of the Video Compact Disc device that "
"will be used by default. If you don't specify anything, "
"we'll scan for a suitable VCD device."
),
VLC_FALSE
);
add_bool
(
MODULE_STRING
"-PBC"
,
0
,
NULL
,
add_bool
(
MODULE_STRING
"-PBC"
,
0
,
NULL
,
"Use playback control?"
,
N_
(
"Use playback control?"
)
,
"If VCD is authored with playback control, use it. "
N_
(
"If VCD is authored with playback control, use it. "
"Otherwise we play by tracks."
,
"Otherwise we play by tracks."
)
,
VLC_TRUE
);
VLC_TRUE
);
#ifdef FIXED
#ifdef FIXED
...
...
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