Typo errors patch by (QuickTime | ffmpeg gmail com>
Originally committed as revision 4103 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
		
				
					committed by
					
						
						Michael Niedermayer
					
				
			
			
				
	
			
			
			
						parent
						
							aa26aa789b
						
					
				
				
					commit
					a622dc4320
				
			@@ -1050,7 +1050,7 @@ static int mpeg_decode_mb(MpegEncContext *s,
 | 
				
			|||||||
                          DCTELEM block[12][64])
 | 
					                          DCTELEM block[12][64])
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    int i, j, k, cbp, val, mb_type, motion_type;
 | 
					    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);
 | 
					    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
 | 
					#ifdef DEBUG
 | 
				
			||||||
        dprintf("intra matrix present\n");
 | 
					        dprintf("intra matrix present\n");
 | 
				
			||||||
        for(i=0;i<64;i++)
 | 
					        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");
 | 
					        printf("\n");
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
    } else {
 | 
					    } else {
 | 
				
			||||||
@@ -2743,7 +2743,7 @@ static int mpeg1_decode_sequence(AVCodecContext *avctx,
 | 
				
			|||||||
#ifdef DEBUG
 | 
					#ifdef DEBUG
 | 
				
			||||||
        dprintf("non intra matrix present\n");
 | 
					        dprintf("non intra matrix present\n");
 | 
				
			||||||
        for(i=0;i<64;i++)
 | 
					        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");
 | 
					        printf("\n");
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
    } else {
 | 
					    } else {
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user