mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-27 19:24:06 +00:00
Fix tiles when SAO or deblock is enabled.
Was broken by previous commit.
This commit is contained in:
parent
4815a0604b
commit
bc3ca90bdf
|
@ -1200,7 +1200,11 @@ static void encoder_state_encode_leaf(encoder_state * const encoder_state) {
|
|||
}
|
||||
|
||||
search_lcu(encoder_state, lcu->position_px.x, lcu->position_px.y, &hor_buf, ver_buf);
|
||||
|
||||
}
|
||||
|
||||
for (i = 0; i < encoder_state->lcu_order_count; ++i) {
|
||||
const lcu_order_element * const lcu = &encoder_state->lcu_order[i];
|
||||
|
||||
if (encoder->deblock_enable) {
|
||||
filter_deblock_lcu(encoder_state, lcu->position_px.x, lcu->position_px.y);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue