Home
last modified time | relevance | path

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

/OK3568_Linux_fs/external/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()
948 H264_FrameStore_t *fs = p_Dpb->fs_ilref[0]; in append_interview_list()
1683 if (currSlice->structure == FRAME && p_Dpb->fs_ilref[j]->is_used == 3) { in prepare_init_dpb_info()
1684 … 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()
1686 p_Dec->dpb_info[i].refpic = p_Dpb->fs_ilref[j]->frame; in prepare_init_dpb_info()
1688 if (p_Dpb->fs_ilref[j]->frame->is_mmco_5) { in prepare_init_dpb_info()
1689 p_Dec->dpb_info[i].TOP_POC = p_Dpb->fs_ilref[j]->frame->top_poc_mmco5; in prepare_init_dpb_info()
1690 p_Dec->dpb_info[i].BOT_POC = p_Dpb->fs_ilref[j]->frame->bot_poc_mmco5; in prepare_init_dpb_info()
1692 p_Dec->dpb_info[i].TOP_POC = p_Dpb->fs_ilref[j]->frame->top_poc; in prepare_init_dpb_info()
1693 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.c1579 if (p_Dpb->fs_ilref) { in free_dpb()
1581 free_frame_store(p_Vid->p_Dec, p_Dpb->fs_ilref[i]); in free_dpb()
1582 p_Dpb->fs_ilref[i] = NULL; in free_dpb()
1584 MPP_FREE(p_Dpb->fs_ilref); in free_dpb()
1902 …p_Dpb->fs_ilref = mpp_calloc(H264_FrameStore_t*, 1); //!< inter-layer reference (for multi-layere… in init_dpb()
1903 MEM_CHECK(ret, p_Dpb->fs && p_Dpb->fs_ref && p_Dpb->fs_ltref && p_Dpb->fs_ilref); in init_dpb()
1915 p_Dpb->fs_ilref[0] = alloc_frame_store(); in init_dpb()
1916 MEM_CHECK(ret, p_Dpb->fs_ilref[0]); in init_dpb()
1918 p_Dpb->fs_ilref[0]->view_id = -1; in init_dpb()
1919 p_Dpb->fs_ilref[0]->inter_view_flag[0] = p_Dpb->fs_ilref[0]->inter_view_flag[1] = 0; in init_dpb()
[all …]
H A Dh264d_global.h407 struct h264_frame_store_t **fs_ilref; //!< inter-layer reference (for multi-layered codecs) member