vp9.h (libav-11.7) | : | vp9.h (libav-11.8) | ||
---|---|---|---|---|
skipping to change at line 402 | skipping to change at line 402 | |||
uint8_t *segmentation_map; | uint8_t *segmentation_map; | |||
VP9MVRefPair *mv[2]; | VP9MVRefPair *mv[2]; | |||
VP9Filter *lflvl; | VP9Filter *lflvl; | |||
DECLARE_ALIGNED(32, uint8_t, edge_emu_buffer)[71 * 80]; | DECLARE_ALIGNED(32, uint8_t, edge_emu_buffer)[71 * 80]; | |||
// block reconstruction intermediates | // block reconstruction intermediates | |||
DECLARE_ALIGNED(32, int16_t, block)[4096]; | DECLARE_ALIGNED(32, int16_t, block)[4096]; | |||
DECLARE_ALIGNED(32, int16_t, uvblock)[2][1024]; | DECLARE_ALIGNED(32, int16_t, uvblock)[2][1024]; | |||
uint8_t eob[256]; | uint8_t eob[256]; | |||
uint8_t uveob[2][64]; | uint8_t uveob[2][64]; | |||
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; | |||
void ff_vp9dsp_init(VP9DSPContext *dsp); | void ff_vp9dsp_init(VP9DSPContext *dsp); | |||
void ff_vp9dsp_init_x86(VP9DSPContext *dsp); | void ff_vp9dsp_init_x86(VP9DSPContext *dsp); | |||
void ff_vp9_fill_mv(VP9Context *s, VP56mv *mv, int mode, int sb); | void ff_vp9_fill_mv(VP9Context *s, VP56mv *mv, int mode, int sb); | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added |