diff options
author | Steve L'Homme | 2006-03-08 11:43:10 +0000 |
---|---|---|
committer | Diego Biurrun | 2006-03-08 11:43:10 +0000 |
commit | 267f7edcd1f1f31595610b4de29a8c4d3e7929c5 (patch) | |
tree | d1edfb074219890a54453b0070072867988054cc /libavcodec/h261.c | |
parent | 6f3dda9328568b38e81580d6cdf6f4ffdbbe07df (diff) |
(f)printf --> av_log conversion
taken from a patch by Steve L'Homme
Originally committed as revision 5127 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h261.c')
-rw-r--r-- | libavcodec/h261.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/h261.c b/libavcodec/h261.c index c6218c8b9d..96b5af1f64 100644 --- a/libavcodec/h261.c +++ b/libavcodec/h261.c @@ -921,8 +921,8 @@ static int h261_decode_frame(AVCodecContext *avctx, AVFrame *pict = data; #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; |