diff options
author | Andreas Heinchen <heinchen@users.sourceforge.net> | 2003-06-19 20:07:48 +0000 |
---|---|---|
committer | Andreas Heinchen <heinchen@users.sourceforge.net> | 2003-06-19 20:07:48 +0000 |
commit | aa527197aba997422630834c063a48c2ba534f7a (patch) | |
tree | fcdac96a49a126f56970693d41920a9b362f0d07 | |
parent | 97e449a0ecba2b981bd9eb52a368d96bfeb7c0c4 (diff) | |
download | xine-lib-aa527197aba997422630834c063a48c2ba534f7a.tar.gz xine-lib-aa527197aba997422630834c063a48c2ba534f7a.tar.bz2 |
removed/ifdef'd unnecessary printf stuff
CVS patchset: 5074
CVS date: 2003/06/19 20:07:48
-rw-r--r-- | src/libtheora/xine_decoder.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/libtheora/xine_decoder.c b/src/libtheora/xine_decoder.c index 98ce87876..681d44be5 100644 --- a/src/libtheora/xine_decoder.c +++ b/src/libtheora/xine_decoder.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xine_decoder.c,v 1.8 2003/06/19 19:46:20 holstsn Exp $ + * $Id: xine_decoder.c,v 1.9 2003/06/19 20:07:48 heinchen Exp $ * * xine decoder plugin using libtheora * @@ -80,10 +80,6 @@ static void readin_op (theora_decoder_t *this, char* src, int size) { this->done=this->done+size; } -static void show_op_stats (theora_decoder_t *this) { - printf (" : size %ld\n",this->op.bytes); -} - static void yuv2frame(yuv_buffer *yuv, vo_frame_t *frame) { int i; /*fixme - clarify if the frame must be copied or if there is a faster solution @@ -258,7 +254,9 @@ static void theora_dispose (video_decoder_t *this_gen) { theora_decoder_t *this = (theora_decoder_t *) this_gen; +#ifdef LOG printf ("libtheora: dispose \n"); +#endif theora_clear (&this->t_state); theora_comment_clear (&this->t_comment); |