summaryrefslogtreecommitdiff
path: root/libavcodec/hevcdec.h
diff options
context:
space:
mode:
authorMark Thompson <sw@jkqxz.net>2017-09-27 01:44:21 +0100
committerMark Thompson <sw@jkqxz.net>2017-10-21 22:19:50 +0100
commit4dee92f6bc8b89e9c335ab737412bf18f3a99be3 (patch)
tree97cfab6b0b36802c24cd8d387bbe9bd720f3e722 /libavcodec/hevcdec.h
parent5ae972f63b7684950eec28c81cb180e05457f109 (diff)
hevc: Fix aligned array declarations
(cherry picked from commit d41e10c1485ec34aa342f7bc2e5bf4f9b6e66414)
Diffstat (limited to 'libavcodec/hevcdec.h')
-rw-r--r--libavcodec/hevcdec.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/hevcdec.h b/libavcodec/hevcdec.h
index 293beb7083..ada2903222 100644
--- a/libavcodec/hevcdec.h
+++ b/libavcodec/hevcdec.h
@@ -363,7 +363,7 @@ typedef struct HEVCLocalContext {
DECLARE_ALIGNED(32, uint8_t, edge_emu_buffer)[(MAX_PB_SIZE + 7) * EDGE_EMU_BUFFER_STRIDE * 2];
/* The extended size between the new edge emu buffer is abused by SAO */
DECLARE_ALIGNED(32, uint8_t, edge_emu_buffer2)[(MAX_PB_SIZE + 7) * EDGE_EMU_BUFFER_STRIDE * 2];
- DECLARE_ALIGNED(32, int16_t, tmp [MAX_PB_SIZE * MAX_PB_SIZE]);
+ DECLARE_ALIGNED(32, int16_t, tmp)[MAX_PB_SIZE * MAX_PB_SIZE];
int ct_depth;
CodingUnit cu;