Merge "Fix the memory alignment issue due to patch: https://gerrit.chromium.org/gerrit/#/c/70162/"
This commit is contained in:
commit
0958bbd185
@ -802,7 +802,7 @@ static const uint8_t *decode_tiles(VP9Decoder *pbi,
|
|||||||
CHECK_MEM_ERROR(
|
CHECK_MEM_ERROR(
|
||||||
cm,
|
cm,
|
||||||
pbi->tile_data,
|
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;
|
pbi->total_tiles = tile_rows * tile_cols;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user