From 267f7edcd1f1f31595610b4de29a8c4d3e7929c5 Mon Sep 17 00:00:00 2001 From: Steve L'Homme Date: Wed, 8 Mar 2006 11:43:10 +0000 Subject: (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 --- libavcodec/mpeg12.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec/mpeg12.c') diff --git a/libavcodec/mpeg12.c b/libavcodec/mpeg12.c index de92fbb..148523f 100644 --- a/libavcodec/mpeg12.c +++ b/libavcodec/mpeg12.c @@ -2789,7 +2789,7 @@ static int mpeg1_decode_sequence(AVCodecContext *avctx, dprintf("intra matrix present\n"); for(i=0;i<64;i++) dprintf(" %d", s->intra_matrix[s->dsp.idct_permutation[i]]); - printf("\n"); + dprintf("\n"); #endif } else { for(i=0;i<64;i++) { @@ -2814,7 +2814,7 @@ static int mpeg1_decode_sequence(AVCodecContext *avctx, dprintf("non intra matrix present\n"); for(i=0;i<64;i++) dprintf(" %d", s->inter_matrix[s->dsp.idct_permutation[i]]); - printf("\n"); + dprintf("\n"); #endif } else { for(i=0;i<64;i++) { -- cgit v1.1