mirror of
				https://git.ffmpeg.org/ffmpeg.git
				synced 2025-11-04 01:30:56 +00:00 
			
		
		
		
	H.264: fix filter_mb_fast with 4:4:4 + 8x8dct
This commit is contained in:
		
							parent
							
								
									e35c674d13
								
							
						
					
					
						commit
						7f7dc4fb55
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -317,7 +317,7 @@ void ff_h264_filter_mb_fast( H264Context *h, int mb_x, int mb_y, uint8_t *img_y,
 | 
			
		|||
    } else {
 | 
			
		||||
        LOCAL_ALIGNED_8(int16_t, bS, [2], [4][4]);
 | 
			
		||||
        int edges;
 | 
			
		||||
        if( IS_8x8DCT(mb_type) && (h->cbp&7) == 7 ) {
 | 
			
		||||
        if( IS_8x8DCT(mb_type) && (h->cbp&7) == 7 && !chroma444 ) {
 | 
			
		||||
            edges = 4;
 | 
			
		||||
            AV_WN64A(bS[0][0], 0x0002000200020002ULL);
 | 
			
		||||
            AV_WN64A(bS[0][2], 0x0002000200020002ULL);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue