mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-27 19:24:06 +00:00
Fix small hexbs pattern.
- Who could mess this up? Oh.. right.
This commit is contained in:
parent
3ed8d43661
commit
022d28ab11
|
@ -518,10 +518,9 @@ static unsigned hexagon_search(const encoder_state_t * const state, unsigned dep
|
||||||
// 1
|
// 1
|
||||||
// 2 0 3
|
// 2 0 3
|
||||||
// 4
|
// 4
|
||||||
// TODO: Fix this pattern, it's wrong.
|
|
||||||
static const vector2d_t small_hexbs[5] = {
|
static const vector2d_t small_hexbs[5] = {
|
||||||
{ 0, 0 },
|
{ 0, 0 },
|
||||||
{ -1, -1 }, { -1, 0 }, { 1, 0 }, { 1, 1 }
|
{ 0, -1 }, { -1, 0 }, { 1, 0 }, { 0, 1 }
|
||||||
};
|
};
|
||||||
|
|
||||||
vector2d_t mv = { mv_in_out->x >> 2, mv_in_out->y >> 2 };
|
vector2d_t mv = { mv_in_out->x >> 2, mv_in_out->y >> 2 };
|
||||||
|
|
Loading…
Reference in a new issue