Home
last modified time | relevance | path

Searched refs:new_fb (Results 1 – 5 of 5) sorted by relevance

/external/libvpx/libvpx/vp8/decoder/
Donyxd_if.c222 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/libvpx/libvpx/vp9/decoder/
Dvp9_decodeframe.c1960 YV12_BUFFER_CONFIG *const new_fb = get_frame_new_buffer(cm); in decode_tiles_mt() local
2003 vp9_loop_filter_data_reset(tile_data->lf_data, new_fb, cm, pbi->mb.plane); in decode_tiles_mt()
2498 YV12_BUFFER_CONFIG *const new_fb = get_frame_new_buffer(cm); in vp9_decode_frame() local
2499 xd->cur_buf = new_fb; in vp9_decode_frame()
2525 new_fb->corrupted = read_compressed_header(pbi, data, first_partition_size); in vp9_decode_frame()
2526 if (new_fb->corrupted) in vp9_decode_frame()
2555 vp9_loop_filter_frame_mt(new_fb, cm, pbi->mb.plane, in vp9_decode_frame()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_encoder.c3179 int new_fb = cpi->scaled_ref_idx[ref_frame - 1]; local
3180 if (new_fb == INVALID_IDX) {
3181 new_fb = get_free_fb(cm);
3184 if (new_fb == INVALID_IDX) return;
3185 new_fb_ptr = &pool->frame_bufs[new_fb];
3197 cpi->scaled_ref_idx[ref_frame - 1] = new_fb;
3198 alloc_frame_mvs(cm, new_fb);
3204 int new_fb = cpi->scaled_ref_idx[ref_frame - 1];
3205 if (new_fb == INVALID_IDX) {
3206 new_fb = get_free_fb(cm);
[all …]
/external/libaom/libaom/av1/encoder/
Dencoder.c3386 RefCntBuffer *new_fb = cpi->scaled_ref_buf[ref_frame - 1]; in scale_references() local
3387 if (new_fb == NULL) { in scale_references()
3394 new_fb = &pool->frame_bufs[new_fb_idx]; in scale_references()
3397 if (force_scaling || new_fb->buf.y_crop_width != cm->width || in scale_references()
3398 new_fb->buf.y_crop_height != cm->height) { in scale_references()
3400 &new_fb->buf, cm->width, cm->height, in scale_references()
3406 --new_fb->ref_count; in scale_references()
3412 ref, &new_fb->buf, (int)cm->seq_params.bit_depth, num_planes); in scale_references()
3413 cpi->scaled_ref_buf[ref_frame - 1] = new_fb; in scale_references()
3414 alloc_frame_mvs(cm, new_fb); in scale_references()
/external/libaom/libaom/av1/decoder/
Ddecodeframe.c5524 YV12_BUFFER_CONFIG *new_fb = &cm->cur_frame->buf; in av1_decode_frame_headers_and_setup() local
5525 xd->cur_buf = new_fb; in av1_decode_frame_headers_and_setup()