Browse Source

vp9: make mv bounds 32bit.

Fixes an assert in file from trac ticket 3188.
tags/n2.2-rc1
Ronald S. Bultje 12 years ago
parent
commit
024fac5cd4
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/vp9.c

+ 1
- 1
libavcodec/vp9.c View File

@@ -232,7 +232,7 @@ typedef struct VP9Context {
// block reconstruction intermediates // block reconstruction intermediates
int16_t *block_base, *block, *uvblock_base[2], *uvblock[2]; int16_t *block_base, *block, *uvblock_base[2], *uvblock[2];
uint8_t *eob_base, *uveob_base[2], *eob, *uveob[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_y)[64*64];
DECLARE_ALIGNED(32, uint8_t, tmp_uv)[2][32*32]; DECLARE_ALIGNED(32, uint8_t, tmp_uv)[2][32*32];
} VP9Context; } VP9Context;


Loading…
Cancel
Save