Searched refs:new_fb (Results 1 – 6 of 6) sorted by relevance
/external/libvpx/vp8/decoder/ |
D | onyxd_if.c | 222 int new_fb = 0; in swap_frame_buffers() local 225 new_fb = cm->lst_fb_idx; in swap_frame_buffers() 227 new_fb = cm->gld_fb_idx; in swap_frame_buffers() 232 ref_cnt_fb(cm->fb_idx_ref_cnt, &cm->alt_fb_idx, new_fb); in swap_frame_buffers() 236 int new_fb = 0; in swap_frame_buffers() local 239 new_fb = cm->lst_fb_idx; in swap_frame_buffers() 241 new_fb = cm->alt_fb_idx; in swap_frame_buffers() 246 ref_cnt_fb(cm->fb_idx_ref_cnt, &cm->gld_fb_idx, new_fb); in swap_frame_buffers()
|
/external/libaom/av1/encoder/ |
D | encoder_utils.c | 710 RefCntBuffer *new_fb = cpi->scaled_ref_buf[ref_frame - 1]; in av1_scale_references() local 711 if (new_fb == NULL) { in av1_scale_references() 718 new_fb = &pool->frame_bufs[new_fb_idx]; in av1_scale_references() 721 if (force_scaling || new_fb->buf.y_crop_width != cm->width || in av1_scale_references() 722 new_fb->buf.y_crop_height != cm->height) { in av1_scale_references() 724 &new_fb->buf, cm->width, cm->height, in av1_scale_references() 730 --new_fb->ref_count; in av1_scale_references() 736 ref->y_crop_width, ref->y_crop_height, new_fb->buf.y_crop_width, in av1_scale_references() 737 new_fb->buf.y_crop_height); in av1_scale_references() 743 new_fb->buf.uv_crop_width, new_fb->buf.uv_crop_height); in av1_scale_references() [all …]
|
/external/igt-gpu-tools/tests/ |
D | kms_frontbuffer_tracking.c | 2556 struct igt_fb new_fb, *old_fb; in scaledprimary_subtest() local 2570 opt.tiling, t->plane, &new_fb); in scaledprimary_subtest() 2571 fill_fb(&new_fb, COLOR_BLUE); in scaledprimary_subtest() 2573 igt_draw_rect_fb(drm.fd, drm.bufmgr, NULL, &new_fb, t->method, in scaledprimary_subtest() 2575 pick_color(&new_fb, COLOR_GREEN)); in scaledprimary_subtest() 2576 igt_draw_rect_fb(drm.fd, drm.bufmgr, NULL, &new_fb, t->method, in scaledprimary_subtest() 2579 pick_color(&new_fb, COLOR_RED)); in scaledprimary_subtest() 2580 igt_draw_rect_fb(drm.fd, drm.bufmgr, NULL, &new_fb, t->method, in scaledprimary_subtest() 2583 pick_color(&new_fb, COLOR_MAGENTA)); in scaledprimary_subtest() 2586 igt_plane_set_fb(reg->plane, &new_fb); in scaledprimary_subtest() [all …]
|
/external/libvpx/vp9/decoder/ |
D | vp9_decodeframe.c | 2335 YV12_BUFFER_CONFIG *const new_fb = get_frame_new_buffer(cm); in decode_tiles_row_wise_mt() local 2355 vp9_loop_filter_data_reset(thread_data->lf_data, new_fb, cm, in decode_tiles_row_wise_mt() 2443 YV12_BUFFER_CONFIG *const new_fb = get_frame_new_buffer(cm); in decode_tiles_mt() local 2465 vp9_loop_filter_data_reset(tile_data->lf_data, new_fb, cm, pbi->mb.plane); in decode_tiles_mt() 2958 YV12_BUFFER_CONFIG *const new_fb = get_frame_new_buffer(cm); in vp9_decode_frame() local 2965 xd->cur_buf = new_fb; in vp9_decode_frame() 2991 new_fb->corrupted = read_compressed_header(pbi, data, first_partition_size); in vp9_decode_frame() 2992 if (new_fb->corrupted) in vp9_decode_frame() 3027 new_fb, cm, pbi->mb.plane, cm->lf.filter_level, 0, 0, in vp9_decode_frame()
|
/external/libvpx/vp9/encoder/ |
D | vp9_encoder.c | 3367 int new_fb = cpi->scaled_ref_idx[ref_frame - 1]; local 3368 if (new_fb == INVALID_IDX) { 3369 new_fb = get_free_fb(cm); 3372 if (new_fb == INVALID_IDX) return; 3373 new_fb_ptr = &pool->frame_bufs[new_fb]; 3385 cpi->scaled_ref_idx[ref_frame - 1] = new_fb; 3386 alloc_frame_mvs(cm, new_fb); 3392 int new_fb = cpi->scaled_ref_idx[ref_frame - 1]; 3393 if (new_fb == INVALID_IDX) { 3394 new_fb = get_free_fb(cm); [all …]
|
/external/libaom/av1/decoder/ |
D | decodeframe.c | 5173 YV12_BUFFER_CONFIG *new_fb = &cm->cur_frame->buf; in av1_decode_frame_headers_and_setup() local 5174 xd->cur_buf = new_fb; in av1_decode_frame_headers_and_setup()
|