sad_test: fix compilation w/gcc 4.8.5
authorJames Zern <jzern@google.com>
Wed, 27 Jan 2021 02:03:17 +0000 (18:03 -0800)
committerJames Zern <jzern@google.com>
Wed, 27 Jan 2021 02:09:16 +0000 (18:09 -0800)
commitbd8dfea54d10adb2c0b19ccdaa6891757b1e5ae0
tree99d0fe6edda28ad353c1cabce2dcaf3a82822874
parent3aecf4a0ba219d0b92f765c59a89df55ce628da7
sad_test: fix compilation w/gcc 4.8.5

use a #define for kDataAlignment as it's used with DECLARE_ALIGNED
(__attribute__((aligned(n)))) and this version under CentOS is more
strict over integer constants:

../vpx_ports/mem.h:18:72: error: requested alignment is not an integer constant
 #define DECLARE_ALIGNED(n, typ, val) typ val __attribute__((aligned(n)))

Bug: webm:1690
Change-Id: I8d4661ec1c2c1b1522bdc210689715d2302c7e72
test/sad_test.cc