Commit 024fac5c authored by Ronald S. Bultje's avatar Ronald S. Bultje

vp9: make mv bounds 32bit.

Fixes an assert in file from trac ticket 3188.
parent 5b0fc078
......@@ -232,7 +232,7 @@ typedef struct VP9Context {
// block reconstruction intermediates
int16_t *block_base, *block, *uvblock_base[2], *uvblock[2];
uint8_t *eob_base, *uveob_base[2], *eob, *uveob[2];
VP56mv min_mv, max_mv;
struct { int x, y; } min_mv, max_mv;
DECLARE_ALIGNED(32, uint8_t, tmp_y)[64*64];
DECLARE_ALIGNED(32, uint8_t, tmp_uv)[2][32*32];
} VP9Context;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment