Home
last modified time | relevance | path

Searched refs:new_fb_idx (Results 1 – 14 of 14) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/decoder/
Donyxd_if.c248 ref_cnt_fb (cm->fb_idx_ref_cnt, &cm->gld_fb_idx, cm->new_fb_idx); in swap_frame_buffers()
251 ref_cnt_fb (cm->fb_idx_ref_cnt, &cm->alt_fb_idx, cm->new_fb_idx); in swap_frame_buffers()
255 ref_cnt_fb (cm->fb_idx_ref_cnt, &cm->lst_fb_idx, cm->new_fb_idx); in swap_frame_buffers()
260 cm->frame_to_show = &cm->yv12_fb[cm->new_fb_idx]; in swap_frame_buffers()
262 cm->fb_idx_ref_cnt[cm->new_fb_idx]--; in swap_frame_buffers()
333 cm->new_fb_idx = get_free_fb (cm); in vp8dx_receive_compressed_data()
336 pbi->dec_fb_ref[INTRA_FRAME] = &cm->yv12_fb[cm->new_fb_idx]; in vp8dx_receive_compressed_data()
349 if (cm->fb_idx_ref_cnt[cm->new_fb_idx] > 0) in vp8dx_receive_compressed_data()
350 cm->fb_idx_ref_cnt[cm->new_fb_idx]--; in vp8dx_receive_compressed_data()
361 if (cm->fb_idx_ref_cnt[cm->new_fb_idx] > 0) in vp8dx_receive_compressed_data()
[all …]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/
Dvp9_decoder.c274 cm->new_fb_idx); in swap_frame_buffers()
283 cm->frame_bufs[cm->new_fb_idx].ref_count--; in swap_frame_buffers()
313 if (cm->new_fb_idx >= 0 && cm->frame_bufs[cm->new_fb_idx].ref_count == 0) in vp9_receive_compressed_data()
315 &cm->frame_bufs[cm->new_fb_idx].raw_frame_buffer); in vp9_receive_compressed_data()
316 cm->new_fb_idx = get_free_fb(cm); in vp9_receive_compressed_data()
331 if (cm->frame_bufs[cm->new_fb_idx].ref_count > 0) in vp9_receive_compressed_data()
332 cm->frame_bufs[cm->new_fb_idx].ref_count--; in vp9_receive_compressed_data()
344 if (cm->frame_bufs[cm->new_fb_idx].ref_count > 0) in vp9_receive_compressed_data()
345 cm->frame_bufs[cm->new_fb_idx].ref_count--; in vp9_receive_compressed_data()
Dvp9_decodeframe.c637 &cm->frame_bufs[cm->new_fb_idx].raw_frame_buffer, cm->get_fb_cb, in apply_frame_size()
1040 ref_cnt_fb(cm->frame_bufs, &cm->new_fb_idx, frame_to_show); in read_uncompressed_header()
1077 cm->frame_refs[i].idx = cm->new_fb_idx; in read_uncompressed_header()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
Donyxc_int.h85 int new_fb_idx, lst_fb_idx, gld_fb_idx, alt_fb_idx; member
Dalloccommon.c69 oci->new_fb_idx = 0; in vp8_alloc_frame_buffers()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
Dvp9_onyxc_int.h102 int new_fb_idx; member
211 return &cm->frame_bufs[cm->new_fb_idx].buf; in get_frame_new_buffer()
Dvp9_alloccommon.c178 cm->new_fb_idx = FRAME_BUFFERS - 1; in vp9_alloc_frame_buffers()
179 cm->frame_bufs[cm->new_fb_idx].ref_count = 1; in vp9_alloc_frame_buffers()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/
Dvp9_dx_iface.c212 cm->new_fb_idx = -1; in decode_one()
268 ctx->img.fb_priv = cm->frame_bufs[cm->new_fb_idx].raw_frame_buffer.priv; in decode_one()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
Dencodeframe.c270 YV12_BUFFER_CONFIG *new_yv12 = &cm->yv12_fb[cm->new_fb_idx]; in build_activity_map()
374 int dst_fb_idx = cm->new_fb_idx; in encode_mb_row()
635 xd->dst = cm->yv12_fb[cm->new_fb_idx]; in init_encode_frame_mb_context()
638 vp8_setup_intra_recon(&cm->yv12_fb[cm->new_fb_idx]); in init_encode_frame_mb_context()
Dethreading.c86 int dst_fb_idx = cm->new_fb_idx; in thread_encoding_proc()
469 mbd->dst = cm->yv12_fb[cm->new_fb_idx]; in vp8cx_init_mbrthread_data()
Donyx_if.c3099 yv12_fb[cm->new_fb_idx].flags |= VP8_GOLD_FRAME | VP8_ALTR_FRAME ; in update_reference_frames()
3104 cm->alt_fb_idx = cm->gld_fb_idx = cm->new_fb_idx; in update_reference_frames()
3117 cm->yv12_fb[cm->new_fb_idx].flags |= VP8_ALTR_FRAME; in update_reference_frames()
3119 cm->alt_fb_idx = cm->new_fb_idx; in update_reference_frames()
3163 cm->yv12_fb[cm->new_fb_idx].flags |= VP8_GOLD_FRAME; in update_reference_frames()
3165 cm->gld_fb_idx = cm->new_fb_idx; in update_reference_frames()
3208 cm->yv12_fb[cm->new_fb_idx].flags |= VP8_LAST_FRAME; in update_reference_frames()
3210 cm->lst_fb_idx = cm->new_fb_idx; in update_reference_frames()
4115 &cm->yv12_fb[cm->new_fb_idx]); in encode_frame_to_data_rate()
4328 &cm->yv12_fb[cm->new_fb_idx]); in encode_frame_to_data_rate()
[all …]
Dfirstpass.c516 YV12_BUFFER_CONFIG *new_yv12 = &cm->yv12_fb[cm->new_fb_idx]; in vp8_first_pass()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/
Dvp8_dx_iface.c505 xd->dst = pc->yv12_fb[pc->new_fb_idx]; in vp8_decode()
510 pbi->mb_row_di[i].mbd.dst = pc->yv12_fb[pc->new_fb_idx]; in vp8_decode()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
Dvp9_onyx_if.c2048 &cm->ref_frame_map[cpi->gld_fb_idx], cm->new_fb_idx);
2050 &cm->ref_frame_map[cpi->alt_fb_idx], cm->new_fb_idx);
2071 &cm->ref_frame_map[cpi->alt_fb_idx], cm->new_fb_idx);
2085 &cm->ref_frame_map[arf_idx], cm->new_fb_idx);
2090 &cm->ref_frame_map[cpi->gld_fb_idx], cm->new_fb_idx);
2096 &cm->ref_frame_map[cpi->lst_fb_idx], cm->new_fb_idx);
3164 cm->frame_bufs[cm->new_fb_idx].ref_count--;
3165 cm->new_fb_idx = get_free_fb(cm);