diff options
author | avcoder <ffmpeg@gmail.com> | 2005-04-04 11:25:44 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-04-04 11:25:44 +0000 |
commit | a622dc43206d97b864eac85a2894111bd18ac9d2 (patch) | |
tree | e9e65944834e28c9d776e92d123db8d02f6d22c2 | |
parent | aa26aa789b01b82d1fe84dde83b8a767edbe4f16 (diff) | |
download | ffmpeg-a622dc43206d97b864eac85a2894111bd18ac9d2.tar.gz |
Typo errors patch by (QuickTime | ffmpeg gmail com>
Originally committed as revision 4103 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/mpeg12.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/mpeg12.c b/libavcodec/mpeg12.c index 5022f4807e..be720e2185 100644 --- a/libavcodec/mpeg12.c +++ b/libavcodec/mpeg12.c @@ -1050,7 +1050,7 @@ static int mpeg_decode_mb(MpegEncContext *s, DCTELEM block[12][64]) { int i, j, k, cbp, val, mb_type, motion_type; - const int mb_block_count = 4 + (1<< s->chroma_format) + const int mb_block_count = 4 + (1<< s->chroma_format); dprintf("decode_mb: x=%d y=%d\n", s->mb_x, s->mb_y); @@ -2718,7 +2718,7 @@ static int mpeg1_decode_sequence(AVCodecContext *avctx, #ifdef DEBUG dprintf("intra matrix present\n"); for(i=0;i<64;i++) - dprintf(" %d", s->intra_matrix[s->dsp.idct_permutation[i]); + dprintf(" %d", s->intra_matrix[s->dsp.idct_permutation[i]]); printf("\n"); #endif } else { @@ -2743,7 +2743,7 @@ static int mpeg1_decode_sequence(AVCodecContext *avctx, #ifdef DEBUG dprintf("non intra matrix present\n"); for(i=0;i<64;i++) - dprintf(" %d", s->inter_matrix[s->dsp.idct_permutation[i]); + dprintf(" %d", s->inter_matrix[s->dsp.idct_permutation[i]]); printf("\n"); #endif } else { |