Commit 3f1dcaf9 authored by Rocky Bernstein's avatar Rocky Bernstein

cvd.c: default duration scaling is smaller which seems more correct.

string review: Merge/canonicalize debug string messages.
parent b08ded33
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* cvd.c : CVD Subtitle decoder thread * cvd.c : CVD Subtitle decoder thread
***************************************************************************** *****************************************************************************
* Copyright (C) 2003, 2004 VideoLAN * Copyright (C) 2003, 2004 VideoLAN
* $Id: cvd.c,v 1.14 2004/01/25 18:20:12 bigben Exp $ * $Id: cvd.c,v 1.15 2004/01/25 19:27:09 rocky Exp $
* *
* Authors: Rocky Bernstein * Authors: Rocky Bernstein
* based on code from: * based on code from:
...@@ -48,8 +48,7 @@ vlc_module_begin(); ...@@ -48,8 +48,7 @@ vlc_module_begin();
set_callbacks( DecoderOpen, VCDSubClose ); set_callbacks( DecoderOpen, VCDSubClose );
add_integer ( MODULE_STRING "-debug", 0, NULL, add_integer ( MODULE_STRING "-debug", 0, NULL,
N_("Set debug mask for additional debugging."), DEBUG_TEXT, DEBUG_LONGTEXT, VLC_TRUE );
N_(DEBUG_LONGTEXT), VLC_TRUE );
add_integer ( MODULE_STRING "-horizontal-correct", 0, NULL, add_integer ( MODULE_STRING "-horizontal-correct", 0, NULL,
HORIZONTAL_CORRECT, HORIZONTAL_CORRECT_LONGTEXT, VLC_FALSE ); HORIZONTAL_CORRECT, HORIZONTAL_CORRECT_LONGTEXT, VLC_FALSE );
...@@ -61,7 +60,7 @@ vlc_module_begin(); ...@@ -61,7 +60,7 @@ vlc_module_begin();
SUB_ASPECT_RATIO_TEXT, SUB_ASPECT_RATIO_LONGTEXT, SUB_ASPECT_RATIO_TEXT, SUB_ASPECT_RATIO_LONGTEXT,
VLC_TRUE ); VLC_TRUE );
add_integer( MODULE_STRING "-duration-scaling", 9, NULL, add_integer( MODULE_STRING "-duration-scaling", 3, NULL,
DURATION_SCALE_TEXT, DURATION_SCALE_LONGTEXT, DURATION_SCALE_TEXT, DURATION_SCALE_LONGTEXT,
VLC_TRUE ); VLC_TRUE );
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* ogt.c : Overlay Graphics Text (SVCD subtitles) decoder thread * ogt.c : Overlay Graphics Text (SVCD subtitles) decoder thread
***************************************************************************** *****************************************************************************
* Copyright (C) 2003, 2004 VideoLAN * Copyright (C) 2003, 2004 VideoLAN
* $Id: ogt.c,v 1.11 2004/01/16 13:32:37 rocky Exp $ * $Id: ogt.c,v 1.12 2004/01/25 19:27:09 rocky Exp $
* *
* Author: Rocky Bernstein * Author: Rocky Bernstein
* based on code from: * based on code from:
...@@ -48,8 +48,7 @@ vlc_module_begin(); ...@@ -48,8 +48,7 @@ vlc_module_begin();
set_callbacks( DecoderOpen, VCDSubClose ); set_callbacks( DecoderOpen, VCDSubClose );
add_integer ( MODULE_STRING "-debug", 0, NULL, add_integer ( MODULE_STRING "-debug", 0, NULL,
N_("set debug mask for additional debugging."), DEBUG_TEXT, DEBUG_LONGTEXT, VLC_TRUE );
DEBUG_LONGTEXT, VLC_TRUE );
add_integer ( MODULE_STRING "-horizontal-correct", 0, NULL, add_integer ( MODULE_STRING "-horizontal-correct", 0, NULL,
HORIZONTAL_CORRECT, HORIZONTAL_CORRECT_LONGTEXT, VLC_FALSE ); HORIZONTAL_CORRECT, HORIZONTAL_CORRECT_LONGTEXT, VLC_FALSE );
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* subtitle.h : Common SVCD and CVD subtitles header * subtitle.h : Common SVCD and CVD subtitles header
***************************************************************************** *****************************************************************************
* Copyright (C) 2003,2004 VideoLAN * Copyright (C) 2003,2004 VideoLAN
* $Id: subtitle.h,v 1.12 2004/01/25 18:20:12 bigben Exp $ * $Id: subtitle.h,v 1.13 2004/01/25 19:27:09 rocky Exp $
* *
* Author: Rocky Bernstein * Author: Rocky Bernstein
* based on code from: * based on code from:
...@@ -35,6 +35,10 @@ ...@@ -35,6 +35,10 @@
#define DECODE_DBG_PNG 64 /* Extract subtitles to PNG files. */ #define DECODE_DBG_PNG 64 /* Extract subtitles to PNG files. */
#define DECODE_DBG_INFO 128 #define DECODE_DBG_INFO 128
#define DEBUG_TEXT N_( \
"If nonzero, this gives additional debug information." \
)
#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" \
"external call 1\n" \ "external call 1\n" \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment