diff options
author | Steve L'Homme <slhomme@divxcorp.com> | 2006-03-08 11:43:10 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-03-08 11:43:10 +0000 |
commit | 267f7edcd1f1f31595610b4de29a8c4d3e7929c5 (patch) | |
tree | d1edfb074219890a54453b0070072867988054cc /libavcodec/h263dec.c | |
parent | 6f3dda9328568b38e81580d6cdf6f4ffdbbe07df (diff) | |
download | ffmpeg-267f7edcd1f1f31595610b4de29a8c4d3e7929c5.tar.gz |
(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/h263dec.c')
-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 ac22bca8ef..91caa48e55 100644 --- a/libavcodec/h263dec.c +++ b/libavcodec/h263dec.c @@ -694,7 +694,7 @@ retry: return -1; #ifdef DEBUG - printf("qscale=%d\n", s->qscale); + av_log(avctx, AV_LOG_DEBUG, "qscale=%d\n", s->qscale); #endif ff_er_frame_start(s); @@ -783,7 +783,7 @@ assert(s->current_picture.pict_type == s->pict_type); if(s->last_picture_ptr || s->low_delay) *data_size = sizeof(AVFrame); #ifdef PRINT_FRAME_TIME -printf("%Ld\n", rdtsc()-time); +av_log(avctx, AV_LOG_DEBUG, "%Ld\n", rdtsc()-time); #endif return get_consumed_bytes(s, buf_size); |