Merge "Align thread data in vp9_ethread"

This commit is contained in:
Yunqing Wang 2015-01-15 09:21:31 -08:00 коммит произвёл Gerrit Code Review
Родитель 5ca96f9d60 99b99831e4
Коммит d3ccb3fe2e
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -183,7 +183,9 @@ void vp9_encode_tiles_mt(VP9_COMP *cpi) {
// Allocate thread data.
CHECK_MEM_ERROR(cm, thread_data->td,
vpx_calloc(1, sizeof(*thread_data->td)));
vpx_memalign(32, sizeof(*thread_data->td)));
vp9_zero(*thread_data->td);
// Set up pc_tree.
thread_data->td->leaf_tree = NULL;
thread_data->td->pc_tree = NULL;