Commit fd6e137a authored by Rocky Bernstein's avatar Rocky Bernstein

Update/correct debug flag documentation.

parent 6378fd38
...@@ -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.7 2003/11/23 14:34:19 rocky Exp $ * $Id: vcd.c,v 1.8 2003/11/23 17:18:00 rocky Exp $
* *
* Authors: Rocky Bernstein <rocky@panix.com> * Authors: Rocky Bernstein <rocky@panix.com>
* *
...@@ -52,15 +52,18 @@ int E_(DebugCallback) ( vlc_object_t *p_this, const char *psz_name, ...@@ -52,15 +52,18 @@ int E_(DebugCallback) ( vlc_object_t *p_this, const char *psz_name,
#define DEBUG_TEXT N_("set debug mask for additional debugging.") #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" \
"MRL 1\n" \ "meta info 1\n" \
"external call 2\n" \ "event info 2\n" \
"all calls 4\n" \ "MRL 4\n" \
"LSN 8\n" \ "external call 8\n" \
"PBC (10) 16\n" \ "all calls (10) 16\n" \
"libcdio (20) 32\n" \ "LSN (20) 32\n" \
"seeks (40) 64\n" \ "PBC (40) 64\n" \
"still (80) 128\n" \ "libcdio (80) 128\n" \
"vcdinfo (100) 256\n" ) "seek-set (100) 256\n" \
"seek-cur (200) 512\n" \
"still (400) 1024\n" \
"vcdinfo (800) 2048\n" )
#define DEV_TEXT N_("Video device name") #define DEV_TEXT N_("Video device name")
#define DEV_LONGTEXT N_( \ #define DEV_LONGTEXT N_( \
...@@ -95,8 +98,6 @@ vlc_module_begin(); ...@@ -95,8 +98,6 @@ vlc_module_begin();
"Otherwise we play by tracks.", "Otherwise we play by tracks.",
VLC_TRUE ); VLC_TRUE );
#ifdef FIXED #ifdef FIXED
add_submodule(); add_submodule();
set_capability( "demux", 0 ); set_capability( "demux", 0 );
......
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