Home
last modified time | relevance | path

Searched refs:rst_info (Results 1 – 9 of 9) sorted by relevance

/external/libaom/libaom/av1/common/
Dalloccommon.c112 av1_alloc_restoration_struct(cm, &cm->rst_info[p], p > 0); in av1_alloc_restoration_buffers()
151 RestorationStripeBoundaries *boundaries = &cm->rst_info[p].boundaries; in av1_alloc_restoration_buffers()
173 av1_free_restoration_struct(&cm->rst_info[p]); in av1_free_restoration_buffers()
179 RestorationStripeBoundaries *boundaries = &cm->rst_info[p].boundaries; in av1_free_restoration_buffers()
Drestoration.c101 void av1_free_restoration_struct(RestorationInfo *rst_info) { in av1_free_restoration_struct() argument
102 aom_free(rst_info->unit_info); in av1_free_restoration_struct()
103 rst_info->unit_info = NULL; in av1_free_restoration_struct()
1110 RestorationInfo *rsi = &cm->rst_info[plane]; in av1_loop_restoration_filter_frame_init()
1151 if (cm->rst_info[plane].frame_restoration_type == RESTORE_NONE) continue; in av1_loop_restoration_copy_planes()
1163 if (cm->rst_info[plane].frame_restoration_type == RESTORE_NONE) { in foreach_rest_unit_in_planes()
1287 const RestorationInfo *rsi = &cm->rst_info[plane]; in av1_foreach_rest_unit_in_plane()
1302 if (cm->rst_info[plane].frame_restoration_type == RESTORE_NONE) return 0; in av1_loop_restoration_corners_in_sb()
1322 const RestorationInfo *rsi = &cm->rst_info[plane]; in av1_loop_restoration_corners_in_sb()
1489 RestorationStripeBoundaries *boundaries = &cm->rst_info[plane].boundaries; in save_tile_row_boundary_lines()
Dthread_common.c703 if (cm->rst_info[plane].frame_restoration_type == RESTORE_NONE) continue; in enqueue_lr_jobs()
711 if (cm->rst_info[plane].frame_restoration_type == RESTORE_NONE) continue; in enqueue_lr_jobs()
856 if (cm->rst_info[plane].frame_restoration_type == RESTORE_NONE) continue; in foreach_rest_unit_in_planes_mt()
861 const int unit_size = cm->rst_info[plane].restoration_unit_size; in foreach_rest_unit_in_planes_mt()
Drestoration.h287 void av1_free_restoration_struct(RestorationInfo *rst_info);
Donyxc_int.h458 RestorationInfo rst_info[MAX_MB_PLANE]; member
/external/libaom/libaom/av1/decoder/
Ddecodeframe.c1764 const int rstride = cm->rst_info[plane].horz_units_per_tile; in decode_partition()
1961 RestorationInfo *rsi = &cm->rst_info[p]; in decode_restoration_mode()
1980 cm->rst_info[p].restoration_unit_size = sb_size; in decode_restoration_mode()
1982 RestorationInfo *rsi = &cm->rst_info[0]; in decode_restoration_mode()
1993 cm->rst_info[p].restoration_unit_size = size; in decode_restoration_mode()
1999 cm->rst_info[1].restoration_unit_size = in decode_restoration_mode()
2000 cm->rst_info[0].restoration_unit_size >> (aom_rb_read_bit(rb) * s); in decode_restoration_mode()
2002 cm->rst_info[1].restoration_unit_size = in decode_restoration_mode()
2003 cm->rst_info[0].restoration_unit_size; in decode_restoration_mode()
2005 cm->rst_info[2].restoration_unit_size = in decode_restoration_mode()
[all …]
/external/libaom/libaom/av1/encoder/
Dbitstream.c1603 const int rstride = cm->rst_info[plane].horz_units_per_tile; in write_modes_sb()
1608 &cm->rst_info[plane].unit_info[runit_idx]; in write_modes_sb()
1729 RestorationInfo *rsi = &cm->rst_info[p]; in encode_restoration_mode()
1759 RestorationInfo *rsi = &cm->rst_info[0]; in encode_restoration_mode()
1775 aom_wb_write_bit(wb, cm->rst_info[1].restoration_unit_size != in encode_restoration_mode()
1776 cm->rst_info[0].restoration_unit_size); in encode_restoration_mode()
1777 assert(cm->rst_info[1].restoration_unit_size == in encode_restoration_mode()
1778 cm->rst_info[0].restoration_unit_size || in encode_restoration_mode()
1779 cm->rst_info[1].restoration_unit_size == in encode_restoration_mode()
1780 (cm->rst_info[0].restoration_unit_size >> s)); in encode_restoration_mode()
[all …]
Dpickrst.c163 const RestorationInfo *rsi = &cm->rst_info[plane]; in try_restoration_unit()
1376 const RestorationInfo *rsi = &cm->rst_info[plane]; in rest_tiles_in_plane()
1435 cm->rst_info[plane].frame_restoration_type = best_rtype; in av1_pick_filter_restoration()
1441 copy_unit_info(best_rtype, &rusi[u], &cm->rst_info[plane].unit_info[u]); in av1_pick_filter_restoration()
Dencoder.c3720 seq_params->subsampling_y, cm->rst_info); in av1_set_frame_size()
3722 cm->rst_info[i].frame_restoration_type = RESTORE_NONE; in av1_set_frame_size()
4094 if (cm->rst_info[0].frame_restoration_type != RESTORE_NONE || in loopfilter_frame()
4095 cm->rst_info[1].frame_restoration_type != RESTORE_NONE || in loopfilter_frame()
4096 cm->rst_info[2].frame_restoration_type != RESTORE_NONE) { in loopfilter_frame()
4106 cm->rst_info[0].frame_restoration_type = RESTORE_NONE; in loopfilter_frame()
4107 cm->rst_info[1].frame_restoration_type = RESTORE_NONE; in loopfilter_frame()
4108 cm->rst_info[2].frame_restoration_type = RESTORE_NONE; in loopfilter_frame()
5041 cm->rst_info[0].frame_restoration_type = RESTORE_NONE; in encode_frame_to_data_rate()
5042 cm->rst_info[1].frame_restoration_type = RESTORE_NONE; in encode_frame_to_data_rate()
[all …]