diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2003-11-26 19:43:26 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2003-11-26 19:43:26 +0000 |
commit | 3050d97eb83cfdfb4d04a51231acba47e6addf1c (patch) | |
tree | 4337d69086ce7d870214e7e5f6a028f8b417521e /src/demuxers/demux_ogg.c | |
parent | ae2a2a8e08ab3140d5c7ee3a5f33e7db81f76b09 (diff) | |
download | xine-lib-3050d97eb83cfdfb4d04a51231acba47e6addf1c.tar.gz xine-lib-3050d97eb83cfdfb4d04a51231acba47e6addf1c.tar.bz2 |
lprintf cleanup, pass I.
CVS patchset: 5796
CVS date: 2003/11/26 19:43:26
Diffstat (limited to 'src/demuxers/demux_ogg.c')
-rw-r--r-- | src/demuxers/demux_ogg.c | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/src/demuxers/demux_ogg.c b/src/demuxers/demux_ogg.c index 6cda0b596..68b4bfd86 100644 --- a/src/demuxers/demux_ogg.c +++ b/src/demuxers/demux_ogg.c @@ -19,7 +19,7 @@ */ /* - * $Id: demux_ogg.c,v 1.116 2003/11/16 23:33:43 f1rmb Exp $ + * $Id: demux_ogg.c,v 1.117 2003/11/26 19:43:30 f1rmb Exp $ * * demultiplexer for ogg streams * @@ -52,10 +52,11 @@ #include <theora/theora.h> #endif -/********** logging **********/ #define LOG_MODULE "demux_ogg" -/* #define LOG_VERBOSE */ -/* #define LOG */ +#define LOG_VERBOSE +/* +#define LOG +*/ #include "xine_internal.h" #include "xineutils.h" @@ -1160,12 +1161,10 @@ static void demux_ogg_send_header (demux_ogg_t *this) { ((int64_t) this->t_info.aspect_numerator * 10000) / this->t_info.aspect_denominator); -#ifdef LOG - printf ("demux_ogg: decoded theora header \n"); - printf (" frameduration %d\n",this->frame_duration); - printf (" w:%d h:%d \n",this->t_info.frame_width,this->t_info.frame_height); - printf (" an:%d ad:%d \n",this->t_info.aspect_numerator,this->t_info.aspect_denominator); -#endif + lprintf ("decoded theora header \n"); + lprintf ("frameduration %d\n",this->frame_duration); + lprintf ("w:%d h:%d \n",this->t_info.frame_width,this->t_info.frame_height); + lprintf ("an:%d ad:%d \n",this->t_info.aspect_numerator,this->t_info.aspect_denominator); } else { /*Rejected stream*/ xprintf (this->stream->xine, XINE_VERBOSITY_DEBUG, @@ -1283,7 +1282,7 @@ static void demux_ogg_send_content (demux_ogg_t *this) { this->header_granulepos[stream_num]=op.granulepos; lprintf ("header with granulepos, remembering granulepos\n"); } else { - lprintf ("demux_ogg: header => discard\n"); + lprintf ("header => discard\n"); } continue; } |