Searched refs:tpl_sync (Results 1 – 2 of 2) sorted by relevance
2214 void av1_tpl_dealloc(AV1TplRowMultiThreadSync *tpl_sync) { in av1_tpl_dealloc() argument2215 assert(tpl_sync != NULL); in av1_tpl_dealloc()2218 if (tpl_sync->mutex_ != NULL) { in av1_tpl_dealloc()2219 for (int i = 0; i < tpl_sync->rows; ++i) in av1_tpl_dealloc()2220 pthread_mutex_destroy(&tpl_sync->mutex_[i]); in av1_tpl_dealloc()2221 aom_free(tpl_sync->mutex_); in av1_tpl_dealloc()2223 if (tpl_sync->cond_ != NULL) { in av1_tpl_dealloc()2224 for (int i = 0; i < tpl_sync->rows; ++i) in av1_tpl_dealloc()2225 pthread_cond_destroy(&tpl_sync->cond_[i]); in av1_tpl_dealloc()2226 aom_free(tpl_sync->cond_); in av1_tpl_dealloc()[all …]
73 void av1_tpl_dealloc(AV1TplRowMultiThreadSync *tpl_sync);