Home
last modified time | relevance | path

Searched refs:fs_ilref (Results 1 – 3 of 3) sorted by relevance

/rockchip-linux_mpp/mpp/codec/dec/h264/
H A Dh264d_init.c203 H264_FrameStore_t *fs = p_Dpb->fs_ilref[0]; in store_proc_picture_in_dpb()
963 H264_FrameStore_t *fs = p_Dpb->fs_ilref[0]; in append_interview_list()
1695 if (currSlice->structure == FRAME && p_Dpb->fs_ilref[j]->is_used == 3) { in prepare_init_dpb_info()
1696 … if (p_Dpb->fs_ilref[j]->inter_view_flag[0] == 0 && p_Dpb->fs_ilref[j]->inter_view_flag[1] == 0) in prepare_init_dpb_info()
1698 p_Dec->dpb_info[i].refpic = p_Dpb->fs_ilref[j]->frame; in prepare_init_dpb_info()
1700 if (p_Dpb->fs_ilref[j]->frame->is_mmco_5) { in prepare_init_dpb_info()
1701 p_Dec->dpb_info[i].TOP_POC = p_Dpb->fs_ilref[j]->frame->top_poc_mmco5; in prepare_init_dpb_info()
1702 p_Dec->dpb_info[i].BOT_POC = p_Dpb->fs_ilref[j]->frame->bot_poc_mmco5; in prepare_init_dpb_info()
1704 p_Dec->dpb_info[i].TOP_POC = p_Dpb->fs_ilref[j]->frame->top_poc; in prepare_init_dpb_info()
1705 p_Dec->dpb_info[i].BOT_POC = p_Dpb->fs_ilref[j]->frame->bottom_poc; in prepare_init_dpb_info()
[all …]
H A Dh264d_dpb.c1580 if (p_Dpb->fs_ilref) { in free_dpb()
1582 free_frame_store(p_Vid->p_Dec, p_Dpb->fs_ilref[i]); in free_dpb()
1583 p_Dpb->fs_ilref[i] = NULL; in free_dpb()
1585 MPP_FREE(p_Dpb->fs_ilref); in free_dpb()
1896 memcpy(tmp, p_Dpb->fs_ilref, sizeof(H264_FrameStore_t*) * p_Dpb->size); in enlarge_dpb()
1897 mpp_free(p_Dpb->fs_ilref); in enlarge_dpb()
1898 p_Dpb->fs_ilref = tmp; in enlarge_dpb()
1986 …p_Dpb->fs_ilref = mpp_calloc(H264_FrameStore_t*, 1); //!< inter-layer reference (for multi-layere… in init_dpb()
1987 MEM_CHECK(ret, p_Dpb->fs && p_Dpb->fs_ref && p_Dpb->fs_ltref && p_Dpb->fs_ilref); in init_dpb()
1999 p_Dpb->fs_ilref[0] = alloc_frame_store(); in init_dpb()
[all …]
H A Dh264d_global.h407 struct h264_frame_store_t **fs_ilref; //!< inter-layer reference (for multi-layered codecs) member