From 42795a9efc94b4a27179246d6c0b6f37dfa535a2 Mon Sep 17 00:00:00 2001 From: Mike Melanson Date: Wed, 2 Aug 2006 21:50:27 +0000 Subject: fix for debug builds; this will eventually get upstream into the official FFmpeg tree CVS patchset: 8156 CVS date: 2006/08/02 21:50:27 --- src/libffmpeg/libavcodec/h263dec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libffmpeg/libavcodec/h263dec.c b/src/libffmpeg/libavcodec/h263dec.c index 73b050325..b53192d74 100644 --- a/src/libffmpeg/libavcodec/h263dec.c +++ b/src/libffmpeg/libavcodec/h263dec.c @@ -426,8 +426,8 @@ int ff_h263_decode_frame(AVCodecContext *avctx, uint64_t time= rdtsc(); #endif #ifdef DEBUG - printf("*****frame %d size=%d\n", avctx->frame_number, buf_size); - printf("bytes=%x %x %x %x\n", buf[0], buf[1], buf[2], buf[3]); + av_log(avctx, AV_LOG_DEBUG, "*****frame %d size=%d\n", avctx->frame_number, buf_size); + av_log(avctx, AV_LOG_DEBUG, "bytes=%x %x %x %x\n", buf[0], buf[1], buf[2], buf[3]); #endif s->flags= avctx->flags; s->flags2= avctx->flags2; -- cgit v1.2.3