mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-27 19:24:06 +00:00
Fixed search around mv_in in fullsearch not being saved.
This commit is contained in:
parent
99d8b9abeb
commit
68eef660bd
|
@ -902,8 +902,8 @@ static unsigned search_mv_full(encoder_state_t * const state,
|
||||||
if (cost < best_cost) {
|
if (cost < best_cost) {
|
||||||
best_cost = cost;
|
best_cost = cost;
|
||||||
best_bitcost = bitcost;
|
best_bitcost = bitcost;
|
||||||
mv.x = x;
|
best_mv.x = x;
|
||||||
mv.y = y;
|
best_mv.y = y;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue