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
3f1dcaf9
Commit
3f1dcaf9
authored
Jan 25, 2004
by
Rocky Bernstein
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cvd.c: default duration scaling is smaller which seems more correct.
string review: Merge/canonicalize debug string messages.
parent
b08ded33
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
8 deletions
+10
-8
modules/codec/ogt/cvd.c
modules/codec/ogt/cvd.c
+3
-4
modules/codec/ogt/ogt.c
modules/codec/ogt/ogt.c
+2
-3
modules/codec/ogt/subtitle.h
modules/codec/ogt/subtitle.h
+5
-1
No files found.
modules/codec/ogt/cvd.c
View file @
3f1dcaf9
...
...
@@ -2,7 +2,7 @@
* cvd.c : CVD Subtitle decoder thread
*****************************************************************************
* Copyright (C) 2003, 2004 VideoLAN
* $Id: cvd.c,v 1.1
4 2004/01/25 18:20:12 bigben
Exp $
* $Id: cvd.c,v 1.1
5 2004/01/25 19:27:09 rocky
Exp $
*
* Authors: Rocky Bernstein
* based on code from:
...
...
@@ -48,8 +48,7 @@ vlc_module_begin();
set_callbacks
(
DecoderOpen
,
VCDSubClose
);
add_integer
(
MODULE_STRING
"-debug"
,
0
,
NULL
,
N_
(
"Set debug mask for additional debugging."
),
N_
(
DEBUG_LONGTEXT
),
VLC_TRUE
);
DEBUG_TEXT
,
DEBUG_LONGTEXT
,
VLC_TRUE
);
add_integer
(
MODULE_STRING
"-horizontal-correct"
,
0
,
NULL
,
HORIZONTAL_CORRECT
,
HORIZONTAL_CORRECT_LONGTEXT
,
VLC_FALSE
);
...
...
@@ -61,7 +60,7 @@ vlc_module_begin();
SUB_ASPECT_RATIO_TEXT
,
SUB_ASPECT_RATIO_LONGTEXT
,
VLC_TRUE
);
add_integer
(
MODULE_STRING
"-duration-scaling"
,
9
,
NULL
,
add_integer
(
MODULE_STRING
"-duration-scaling"
,
3
,
NULL
,
DURATION_SCALE_TEXT
,
DURATION_SCALE_LONGTEXT
,
VLC_TRUE
);
...
...
modules/codec/ogt/ogt.c
View file @
3f1dcaf9
...
...
@@ -2,7 +2,7 @@
* ogt.c : Overlay Graphics Text (SVCD subtitles) decoder thread
*****************************************************************************
* Copyright (C) 2003, 2004 VideoLAN
* $Id: ogt.c,v 1.1
1 2004/01/16 13:32:37
rocky Exp $
* $Id: ogt.c,v 1.1
2 2004/01/25 19:27:09
rocky Exp $
*
* Author: Rocky Bernstein
* based on code from:
...
...
@@ -48,8 +48,7 @@ vlc_module_begin();
set_callbacks
(
DecoderOpen
,
VCDSubClose
);
add_integer
(
MODULE_STRING
"-debug"
,
0
,
NULL
,
N_
(
"set debug mask for additional debugging."
),
DEBUG_LONGTEXT
,
VLC_TRUE
);
DEBUG_TEXT
,
DEBUG_LONGTEXT
,
VLC_TRUE
);
add_integer
(
MODULE_STRING
"-horizontal-correct"
,
0
,
NULL
,
HORIZONTAL_CORRECT
,
HORIZONTAL_CORRECT_LONGTEXT
,
VLC_FALSE
);
...
...
modules/codec/ogt/subtitle.h
View file @
3f1dcaf9
...
...
@@ -2,7 +2,7 @@
* subtitle.h : Common SVCD and CVD subtitles header
*****************************************************************************
* Copyright (C) 2003,2004 VideoLAN
* $Id: subtitle.h,v 1.1
2 2004/01/25 18:20:12 bigben
Exp $
* $Id: subtitle.h,v 1.1
3 2004/01/25 19:27:09 rocky
Exp $
*
* Author: Rocky Bernstein
* based on code from:
...
...
@@ -35,6 +35,10 @@
#define DECODE_DBG_PNG 64
/* Extract subtitles to PNG files. */
#define DECODE_DBG_INFO 128
#define DEBUG_TEXT N_( \
"If nonzero, this gives additional debug information." \
)
#define DEBUG_LONGTEXT N_( \
"This integer when viewed in binary is a debugging mask\n" \
"external call 1\n" \
...
...
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