mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-04 06:08:26 +02:00
Remove useless check of the 2 left MBs of a pair being in the same slice.
Originally committed as revision 22069 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
f57a5dcd4e
commit
8f8497ae78
@ -860,8 +860,8 @@ static void fill_decode_caches(H264Context *h, int mb_type){
|
||||
h->left_samples_available&= 0xFF5F;
|
||||
}
|
||||
}else{
|
||||
int left_typei = h->slice_table[left_xy[0] + s->mb_stride ] == h->slice_num
|
||||
? s->current_picture.mb_type[left_xy[0] + s->mb_stride] : 0;
|
||||
int left_typei = s->current_picture.mb_type[left_xy[0] + s->mb_stride];
|
||||
|
||||
assert(left_xy[0] == left_xy[1]);
|
||||
if(!((left_typei & type_mask) && (left_type[0] & type_mask))){
|
||||
h->topleft_samples_available&= 0xDF5F;
|
||||
|
Loading…
x
Reference in New Issue
Block a user