Commit eb0d7a84 authored by Rocky Bernstein's avatar Rocky Bernstein

Change some printf's to debugging-only output.

parent a0fdcb13
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* cddax.c : CD digital audio input module for vlc using libcdio * cddax.c : CD digital audio input module for vlc using libcdio
***************************************************************************** *****************************************************************************
* Copyright (C) 2000,2003 VideoLAN * Copyright (C) 2000,2003 VideoLAN
* $Id: access.c,v 1.9 2003/12/02 03:33:22 rocky Exp $ * $Id: access.c,v 1.10 2003/12/02 04:16:21 rocky Exp $
* *
* Authors: Rocky Bernstein <rocky@panix.com> * Authors: Rocky Bernstein <rocky@panix.com>
* Laurent Aimar <fenrir@via.ecp.fr> * Laurent Aimar <fenrir@via.ecp.fr>
...@@ -307,9 +307,9 @@ static void CDDASeek( input_thread_t * p_input, off_t i_off ) ...@@ -307,9 +307,9 @@ static void CDDASeek( input_thread_t * p_input, off_t i_off )
} }
#define meta_info_add_str(title, str) \ #define meta_info_add_str(title, str) \
if ( str ) { \ if ( str ) { \
printf("field %s str %s\n", title, str); \ dbg_print( INPUT_DBG_META, "field %s: %s\n", title, str); \
input_AddInfo( p_cat, _(title), "%s", str ); \ input_AddInfo( p_cat, _(title), "%s", str ); \
} }
......
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