[isp] properly reset cabac context during intra search

This commit is contained in:
Joose Sainio 2022-12-21 14:33:10 +02:00 committed by Marko Viitanen
parent b27eca7c37
commit 2d00cab4b9

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
// whole transform, assume that splitting further is a bad idea.
if (nosplit_cost <= cost_treshold) {
memcpy(&state->search_cabac, &cabac_data, sizeof(cabac_data));
return nosplit_cost;
}
}