shithub: libvpx

Download patch

ref: 0958bbd18556dcba340d4f5d8ce2f8226f370f75
parent: 66ce10c13dee8d64f4249189df450e4b14cf9ca3
parent: b9e1e994e18dfcc93964771c318999b4b0e61df4
author: hkuang <hkuang@google.com>
date: Wed May 21 08:12:21 EDT 2014

Merge "Fix the memory alignment issue due to patch: https://gerrit.chromium.org/gerrit/#/c/70162/"

--- a/vp9/decoder/vp9_decodeframe.c
+++ b/vp9/decoder/vp9_decodeframe.c
@@ -802,7 +802,7 @@
     CHECK_MEM_ERROR(
         cm,
         pbi->tile_data,
-        vpx_malloc(tile_cols * tile_rows * (sizeof(*pbi->tile_data))));
+        vpx_memalign(32, tile_cols * tile_rows * (sizeof(*pbi->tile_data))));
     pbi->total_tiles = tile_rows * tile_cols;
   }