summaryrefslogtreecommitdiffstats
path: root/libavcodec/hevcdsp.c
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/hevcdsp.c
parent5ae972f63b7684950eec28c81cb180e05457f109 (diff)
downloadffmpeg-streaming-4dee92f6bc8b89e9c335ab737412bf18f3a99be3.zip
ffmpeg-streaming-4dee92f6bc8b89e9c335ab737412bf18f3a99be3.tar.gz
hevc: Fix aligned array declarations
(cherry picked from commit d41e10c1485ec34aa342f7bc2e5bf4f9b6e66414)
Diffstat (limited to 'libavcodec/hevcdsp.c')
-rw-r--r--libavcodec/hevcdsp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/hevcdsp.c b/libavcodec/hevcdsp.c
index 76ae72b..e432aa3 100644
--- a/libavcodec/hevcdsp.c
+++ b/libavcodec/hevcdsp.c
@@ -91,7 +91,7 @@ static const int8_t transform[32][32] = {
90, -90, 88, -85, 82, -78, 73, -67, 61, -54, 46, -38, 31, -22, 13, -4 },
};
-DECLARE_ALIGNED(16, const int8_t, ff_hevc_epel_filters[7][4]) = {
+DECLARE_ALIGNED(16, const int8_t, ff_hevc_epel_filters)[7][4] = {
{ -2, 58, 10, -2},
{ -4, 54, 16, -2},
{ -6, 46, 28, -4},
@@ -101,7 +101,7 @@ DECLARE_ALIGNED(16, const int8_t, ff_hevc_epel_filters[7][4]) = {
{ -2, 10, 58, -2},
};
-DECLARE_ALIGNED(16, const int8_t, ff_hevc_qpel_filters[3][16]) = {
+DECLARE_ALIGNED(16, const int8_t, ff_hevc_qpel_filters)[3][16] = {
{ -1, 4,-10, 58, 17, -5, 1, 0, -1, 4,-10, 58, 17, -5, 1, 0},
{ -1, 4,-11, 40, 40,-11, 4, -1, -1, 4,-11, 40, 40,-11, 4, -1},
{ 0, 1, -5, 17, 58,-10, 4, -1, 0, 1, -5, 17, 58,-10, 4, -1}
OpenPOWER on IntegriCloud