Searched defs:lf_sync (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
H A Dvp9_loopfilter.h128 struct VP9LfSyncData *lf_sync; member in struct:LoopFilterWorkerData
/external/libvpx/libvpx/vp9/common/
H A Dvp9_loopfilter.h127 struct VP9LfSyncData *lf_sync; member in struct:LoopFilterWorkerData
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/decoder/
H A Dvp9_dthread.c38 static INLINE void sync_read(VP9LfSync *const lf_sync, int r, int c) { argument
40 const int nsync = lf_sync->sync_range;
43 pthread_mutex_t *const mutex = &lf_sync->mutex_[r - 1];
46 while (c > lf_sync->cur_sb_col[r - 1] - nsync) {
47 pthread_cond_wait(&lf_sync->cond_[r - 1], mutex);
52 (void)lf_sync;
58 static INLINE void sync_write(VP9LfSync *const lf_sync, int r, int c, argument
61 const int nsync = lf_sync->sync_range;
75 mutex_lock(&lf_sync->mutex_[r]);
77 lf_sync
91 loop_filter_rows_mt(const YV12_BUFFER_CONFIG *const frame_buffer, VP9_COMMON *const cm, struct macroblockd_plane planes[MAX_MB_PLANE], int start, int stop, int y_only, VP9LfSync *const lf_sync, int num_lf_workers) argument
140 VP9LfSync *const lf_sync = &pbi->lf_row_sync; local
217 vp9_loop_filter_alloc(VP9LfSync *lf_sync, VP9_COMMON *cm, int rows, int width) argument
246 vp9_loop_filter_dealloc(VP9LfSync *lf_sync) argument
[all...]
/external/libvpx/libvpx/vp9/decoder/
H A Dvp9_dthread.c38 static INLINE void sync_read(VP9LfSync *const lf_sync, int r, int c) { argument
40 const int nsync = lf_sync->sync_range;
43 mutex_lock(&lf_sync->mutex_[r - 1]);
45 while (c > lf_sync->cur_sb_col[r - 1] - nsync) {
46 pthread_cond_wait(&lf_sync->cond_[r - 1],
47 &lf_sync->mutex_[r - 1]);
49 pthread_mutex_unlock(&lf_sync->mutex_[r - 1]);
52 (void)lf_sync;
58 static INLINE void sync_write(VP9LfSync *const lf_sync, int r, int c, argument
61 const int nsync = lf_sync
91 loop_filter_rows_mt(const YV12_BUFFER_CONFIG *const frame_buffer, VP9_COMMON *const cm, MACROBLOCKD *const xd, int start, int stop, int y_only, VP9LfSync *const lf_sync, int num_lf_workers) argument
149 VP9LfSync *const lf_sync = &pbi->lf_row_sync; local
229 vp9_loop_filter_alloc(VP9_COMMON *cm, VP9LfSync *lf_sync, int rows, int width) argument
255 vp9_loop_filter_dealloc(VP9LfSync *lf_sync, int rows) argument
[all...]

Completed in 116 milliseconds