Searched refs:lf_sync (Results 1 – 3 of 3) sorted by relevance
38 static INLINE void sync_read(VP9LfSync *const lf_sync, int r, int c) { in sync_read() argument40 const int nsync = lf_sync->sync_range; in sync_read()43 mutex_lock(&lf_sync->mutex_[r - 1]); in sync_read()45 while (c > lf_sync->cur_sb_col[r - 1] - nsync) { in sync_read()46 pthread_cond_wait(&lf_sync->cond_[r - 1], in sync_read()47 &lf_sync->mutex_[r - 1]); in sync_read()49 pthread_mutex_unlock(&lf_sync->mutex_[r - 1]); in sync_read()52 (void)lf_sync; in sync_read()58 static INLINE void sync_write(VP9LfSync *const lf_sync, int r, int c, in sync_write() argument61 const int nsync = lf_sync->sync_range; in sync_write()[all …]
46 void vp9_loop_filter_alloc(struct VP9Common *cm, struct VP9LfSyncData *lf_sync,50 void vp9_loop_filter_dealloc(struct VP9LfSyncData *lf_sync, int rows);
127 struct VP9LfSyncData *lf_sync; member