diff options
author | Christophe Gisquet <christophe.gisquet@gmail.com> | 2014-09-23 21:36:42 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-09-24 01:26:12 +0200 |
commit | 3fe962940f1e8fd2f1881c0cee646bd0e52ab204 (patch) | |
tree | 9494fd77590a6cba59a5179033df2226ceeaa095 /libavcodec/hevc.h | |
parent | de60ce391d385ad0fcfe49b4aaafff932bbfbf47 (diff) | |
download | ffmpeg-3fe962940f1e8fd2f1881c0cee646bd0e52ab204.tar.gz |
hevc: move intermediate bidir buffer
Other buffers are already there.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/hevc.h')
-rw-r--r-- | libavcodec/hevc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/hevc.h b/libavcodec/hevc.h index 980d95f94d..90e47a14b0 100644 --- a/libavcodec/hevc.h +++ b/libavcodec/hevc.h @@ -771,6 +771,7 @@ typedef struct HEVCLocalContext { /* +7 is for subpixel interpolation, *2 for high bit depths */ DECLARE_ALIGNED(32, uint8_t, edge_emu_buffer)[(MAX_PB_SIZE + 7) * EDGE_EMU_BUFFER_STRIDE * 2]; DECLARE_ALIGNED(32, uint8_t, edge_emu_buffer2)[(MAX_PB_SIZE + 7) * EDGE_EMU_BUFFER_STRIDE * 2]; + DECLARE_ALIGNED(16, int16_t, tmp [MAX_PB_SIZE * MAX_PB_SIZE]); CodingTree ct; CodingUnit cu; |