#include "./vp8_rtcd.h"
#include "test/acm_random.h"
#include "vpx/vpx_integer.h"
+#include "vpx_ports/mem.h"
namespace {
double total_error = 0;
const int count_test_block = 1000000;
for (int i = 0; i < count_test_block; ++i) {
- int16_t test_input_block[16];
+ DECLARE_ALIGNED(16, int16_t, test_input_block[16]);
+ DECLARE_ALIGNED(16, int16_t, test_output_block[16]);
int16_t test_temp_block[16];
- int16_t test_output_block[16];
// Initialize a test block with input range [-255, 255].
for (int j = 0; j < 16; ++j) {