Lines Matching refs:vps
114 MPP_RET h265e_set_vps(H265eCtx *ctx, H265eVps *vps) in h265e_set_vps() argument
118 ProfileTierLevel *profileTierLevel = &vps->m_ptl.m_generalPTL; in h265e_set_vps()
125 vps->m_VPSId = 0; in h265e_set_vps()
126 vps->m_maxTLayers = refs->max_tlayers ? refs->max_tlayers : 1; in h265e_set_vps()
127 vps->m_maxLayers = vps->m_maxTLayers; in h265e_set_vps()
128 vps->m_bTemporalIdNestingFlag = 1; in h265e_set_vps()
129 vps->m_numHrdParameters = 0; in h265e_set_vps()
130 vps->m_maxNuhReservedZeroLayerId = 0; in h265e_set_vps()
131 vps->m_hrdParameters = NULL; in h265e_set_vps()
132 vps->m_hrdOpSetIdx = NULL; in h265e_set_vps()
133 vps->m_cprmsPresentFlag = NULL; in h265e_set_vps()
135 vps->m_numReorderPics[i] = 0; in h265e_set_vps()
136 …vps->m_maxDecPicBuffering[i] = MPP_MIN(MAX_REFS, MPP_MAX((vps->m_numReorderPics[i] + 3), codec->nu… in h265e_set_vps()
137 vps->m_maxLatencyIncrease[i] = 0; in h265e_set_vps()
140 …memset(vps->m_ptl.m_subLayerProfilePresentFlag, 0, sizeof(vps->m_ptl.m_subLayerProfilePresentFlag)… in h265e_set_vps()
141 … memset(vps->m_ptl.m_subLayerLevelPresentFlag, 0, sizeof(vps->m_ptl.m_subLayerLevelPresentFlag)); in h265e_set_vps()
180 MPP_RET h265e_set_sps(H265eCtx *ctx, H265eSps *sps, H265eVps *vps) in h265e_set_sps() argument
256 sps->m_maxTLayers = vps->m_maxLayers; in h265e_set_sps()
305 sps->m_maxDecPicBuffering[i] = vps->m_maxDecPicBuffering[i]; in h265e_set_sps()
306 sps->m_numReorderPics[i] = vps->m_numReorderPics[i]; in h265e_set_sps()
337 sps->m_ptl = &vps->m_ptl; in h265e_set_sps()