Commit c9162d3c authored by melanson's avatar melanson

printf -> av_log, only occurs in DEBUG cases


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@5934 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 32f96b53
...@@ -426,8 +426,8 @@ int ff_h263_decode_frame(AVCodecContext *avctx, ...@@ -426,8 +426,8 @@ int ff_h263_decode_frame(AVCodecContext *avctx,
uint64_t time= rdtsc(); uint64_t time= rdtsc();
#endif #endif
#ifdef DEBUG #ifdef DEBUG
printf("*****frame %d size=%d\n", avctx->frame_number, buf_size); av_log(avctx, AV_LOG_DEBUG, "*****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, "bytes=%x %x %x %x\n", buf[0], buf[1], buf[2], buf[3]);
#endif #endif
s->flags= avctx->flags; s->flags= avctx->flags;
s->flags2= avctx->flags2; s->flags2= avctx->flags2;
......
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