Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2014-01-07 16:24:03 +0400
committerRonald S. Bultje <rsbultje@gmail.com>2014-01-08 05:43:35 +0400
commit024fac5cd4f74d237b7b285355d7e463c1911196 (patch)
tree52296a7884975e354ff3b04e443ed65e68955b20 /libavcodec/vp9.c
parent5b0fc078191138795e817244555741356f9d12e9 (diff)
vp9: make mv bounds 32bit.
Fixes an assert in file from trac ticket 3188.
Diffstat (limited to 'libavcodec/vp9.c')
-rw-r--r--libavcodec/vp9.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vp9.c b/libavcodec/vp9.c
index ca6795f169..b4e8d4e5eb 100644
--- a/libavcodec/vp9.c
+++ b/libavcodec/vp9.c
@@ -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;