Searched refs:lr_sync (Results 1 – 4 of 4) sorted by relevance
/external/libaom/libaom/av1/common/ |
D | thread_common.c | 531 static INLINE void lr_sync_read(void *const lr_sync, int r, int c, int plane) { in lr_sync_read() argument 533 AV1LrSync *const loop_res_sync = (AV1LrSync *)lr_sync; in lr_sync_read() 546 (void)lr_sync; in lr_sync_read() 553 static INLINE void lr_sync_write(void *const lr_sync, int r, int c, in lr_sync_write() argument 556 AV1LrSync *const loop_res_sync = (AV1LrSync *)lr_sync; in lr_sync_write() 578 (void)lr_sync; in lr_sync_write() 587 static void loop_restoration_alloc(AV1LrSync *lr_sync, AV1_COMMON *cm, in loop_restoration_alloc() argument 590 lr_sync->rows = num_rows_lr; in loop_restoration_alloc() 591 lr_sync->num_planes = num_planes; in loop_restoration_alloc() 597 CHECK_MEM_ERROR(cm, lr_sync->mutex_[j], in loop_restoration_alloc() [all …]
|
D | restoration.h | 329 typedef void (*sync_read_fn_t)(void *const lr_sync, int r, int c, int plane); 331 typedef void (*sync_write_fn_t)(void *const lr_sync, int r, int c, 370 struct AV1LrSyncData *const lr_sync); 373 void av1_lr_sync_read_dummy(void *const lr_sync, int r, int c, int plane); 374 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 | 1212 struct AV1LrSyncData *const lr_sync) { in av1_foreach_rest_unit_in_row() argument 1231 on_sync_read(lr_sync, row_number, j, plane); in av1_foreach_rest_unit_in_row() 1234 on_sync_read(lr_sync, row_number + 2, j, plane); in av1_foreach_rest_unit_in_row() 1238 on_sync_write(lr_sync, row_number, j, hunits_per_tile, plane); in av1_foreach_rest_unit_in_row() 1245 void av1_lr_sync_read_dummy(void *const lr_sync, int r, int c, int plane) { in av1_lr_sync_read_dummy() argument 1246 (void)lr_sync; in av1_lr_sync_read_dummy() 1252 void av1_lr_sync_write_dummy(void *const lr_sync, int r, int c, in av1_lr_sync_write_dummy() argument 1254 (void)lr_sync; in av1_lr_sync_write_dummy()
|