diff options
author | Mike Melanson <mike@multimedia.cx> | 2006-08-04 22:51:20 +0000 |
---|---|---|
committer | Mike Melanson <mike@multimedia.cx> | 2006-08-04 22:51:20 +0000 |
commit | 9bd0d79fcb806a1a60d7238f29a59ad6a08bd7cf (patch) | |
tree | 6e2e790fea4180932832f370379e3b26740c7c9a | |
parent | c489d907e19bd4b4c2439727498bafae662c90cb (diff) | |
download | ffmpeg-9bd0d79fcb806a1a60d7238f29a59ad6a08bd7cf.tar.gz |
printf -> av_log, only occurs in DEBUG cases
Originally committed as revision 5934 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/h263dec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c index 73b050325e..b53192d745 100644 --- a/libavcodec/h263dec.c +++ b/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; |