[isp] properly reset cabac context during intra search

This commit is contained in:
Joose Sainio 2022-12-21 14:33:10 +02:00
parent c64e844ac5
commit c591af3668

View file

@ -571,6 +571,7 @@ static double search_intra_trdepth(
// If the cost of any 1/4th of the transform is already larger than the // If the cost of any 1/4th of the transform is already larger than the
// whole transform, assume that splitting further is a bad idea. // whole transform, assume that splitting further is a bad idea.
if (nosplit_cost <= cost_treshold) { if (nosplit_cost <= cost_treshold) {
memcpy(&state->search_cabac, &cabac_data, sizeof(cabac_data));
return nosplit_cost; return nosplit_cost;
} }
} }