mirror of
https://github.com/librempeg/librempeg
synced 2024-11-22 18:49:58 +00:00
avcodec/vvcdec: check_available, use && instead of &= for shortcut evaluation
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
78efbaf27c
commit
95da160818
@ -614,9 +614,9 @@ static int check_available(Neighbour *n, const VVCLocalContext *lc, const int ch
|
||||
if (!n->checked) {
|
||||
n->checked = 1;
|
||||
n->available = !sps->r->sps_entropy_coding_sync_enabled_flag || ((n->x >> sps->ctb_log2_size_y) <= (cu->x0 >> sps->ctb_log2_size_y));
|
||||
n->available &= is_available(fc, n->x, n->y) && cu->pred_mode == pred_flag_to_mode(TAB_MVF(n->x, n->y).pred_flag);
|
||||
n->available = n->available && is_available(fc, n->x, n->y) && cu->pred_mode == pred_flag_to_mode(TAB_MVF(n->x, n->y).pred_flag);
|
||||
if (check_mer)
|
||||
n->available &= !is_same_mer(fc, n->x, n->y, cu->x0, cu->y0);
|
||||
n->available = n->available && !is_same_mer(fc, n->x, n->y, cu->x0, cu->y0);
|
||||
}
|
||||
return n->available;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user