summaryrefslogtreecommitdiffstats
path: root/libavcodec/mpeg12.c
diff options
context:
space:
mode:
authorSteve L'Homme <slhomme@divxcorp.com>2006-03-08 11:43:10 +0000
committerDiego Biurrun <diego@biurrun.de>2006-03-08 11:43:10 +0000
commit267f7edcd1f1f31595610b4de29a8c4d3e7929c5 (patch)
treed1edfb074219890a54453b0070072867988054cc /libavcodec/mpeg12.c
parent6f3dda9328568b38e81580d6cdf6f4ffdbbe07df (diff)
downloadffmpeg-streaming-267f7edcd1f1f31595610b4de29a8c4d3e7929c5.zip
ffmpeg-streaming-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/mpeg12.c')
-rw-r--r--libavcodec/mpeg12.c4
1 files changed, 2 insertions, 2 deletions
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++) {
OpenPOWER on IntegriCloud