mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
Skip non intra luma code when there is no coded luma.
0.7% speedup for the cathedral sample. Originally committed as revision 16203 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
00794ed0d9
commit
49c084a745
@ -2525,7 +2525,7 @@ static av_always_inline void hl_decode_mb_internal(H264Context *h, int simple){
|
||||
idct_dc_add(dest_y + block_offset[i], h->mb + i*16, linesize);
|
||||
}
|
||||
}
|
||||
}else{
|
||||
}else if(h->cbp&15){
|
||||
const int di = IS_8x8DCT(mb_type) ? 4 : 1;
|
||||
for(i=0; i<16; i+=di){
|
||||
int nnz = h->non_zero_count_cache[ scan8[i] ];
|
||||
|
Loading…
x
Reference in New Issue
Block a user