Searched refs:lr_sync (Results 1 – 4 of 4) sorted by relevance
/external/libaom/libaom/av1/common/ |
D | thread_common.c | 524 static INLINE void lr_sync_read(void *const lr_sync, int r, int c, int plane) { in lr_sync_read() argument 526 AV1LrSync *const loop_res_sync = (AV1LrSync *)lr_sync; in lr_sync_read() 539 (void)lr_sync; in lr_sync_read() 546 static INLINE void lr_sync_write(void *const lr_sync, int r, int c, in lr_sync_write() argument 549 AV1LrSync *const loop_res_sync = (AV1LrSync *)lr_sync; in lr_sync_write() 571 (void)lr_sync; in lr_sync_write() 580 static void loop_restoration_alloc(AV1LrSync *lr_sync, AV1_COMMON *cm, in loop_restoration_alloc() argument 583 lr_sync->rows = num_rows_lr; in loop_restoration_alloc() 584 lr_sync->num_planes = num_planes; in loop_restoration_alloc() 590 CHECK_MEM_ERROR(cm, lr_sync->mutex_[j], in loop_restoration_alloc() [all …]
|
D | restoration.h | 328 typedef void (*sync_read_fn_t)(void *const lr_sync, int r, int c, int plane); 330 typedef void (*sync_write_fn_t)(void *const lr_sync, int r, int c, 369 struct AV1LrSyncData *const lr_sync); 372 void av1_lr_sync_read_dummy(void *const lr_sync, int r, int c, int plane); 373 void av1_lr_sync_write_dummy(void *const lr_sync, int r, int c,
|
D | thread_common.h | 114 int num_workers, AV1LrSync *lr_sync, 116 void av1_loop_restoration_dealloc(AV1LrSync *lr_sync, int num_workers);
|
D | restoration.c | 1195 struct AV1LrSyncData *const lr_sync) { in av1_foreach_rest_unit_in_row() argument 1214 on_sync_read(lr_sync, row_number, j, plane); in av1_foreach_rest_unit_in_row() 1217 on_sync_read(lr_sync, row_number + 2, j, plane); in av1_foreach_rest_unit_in_row() 1221 on_sync_write(lr_sync, row_number, j, hunits_per_tile, plane); in av1_foreach_rest_unit_in_row() 1228 void av1_lr_sync_read_dummy(void *const lr_sync, int r, int c, int plane) { in av1_lr_sync_read_dummy() argument 1229 (void)lr_sync; in av1_lr_sync_read_dummy() 1235 void av1_lr_sync_write_dummy(void *const lr_sync, int r, int c, in av1_lr_sync_write_dummy() argument 1237 (void)lr_sync; in av1_lr_sync_write_dummy()
|