avfilter/vf_deshake_opencl: Ensure that the first iteration initializes the best variables
Fixes: CID1452759 Uninitialized scalar variable Sponsored-by: Sovereign Tech Fund Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 9385847af47211e8c618198499ffea99614bb55d) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
ca19dbf33d
commit
39d083cb73
@ -703,7 +703,7 @@ static int minimize_error(
|
|||||||
total_err += deshake_ctx->ransac_err[j];
|
total_err += deshake_ctx->ransac_err[j];
|
||||||
}
|
}
|
||||||
|
|
||||||
if (total_err < best_err) {
|
if (i == 0 || total_err < best_err) {
|
||||||
for (int mi = 0; mi < 6; ++mi) {
|
for (int mi = 0; mi < 6; ++mi) {
|
||||||
best_model[mi] = model[mi];
|
best_model[mi] = model[mi];
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user