# HG changeset patch # User michael # Date 1112613944 0 # Node ID 65874d96c2dae06ae5bd5427cca1f0dcf915d4d6 # Parent 4aba13499a91be80e7cd6a36be0fb166a6b8219c Typo errors patch by (QuickTime | ffmpeg gmail com> diff -r 4aba13499a91 -r 65874d96c2da mpeg12.c --- a/mpeg12.c Sun Apr 03 17:34:31 2005 +0000 +++ b/mpeg12.c Mon Apr 04 11:25:44 2005 +0000 @@ -1050,7 +1050,7 @@ 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 @@ #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 @@ #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 {