Lines Matching refs:ptl
232 void codeProfileTier(H265eStream *s, ProfileTierLevel* ptl) in codeProfileTier() argument
235 h265e_stream_write_with_log(s, ptl->m_profileSpace, 2, "profile_space[]"); in codeProfileTier()
236 h265e_stream_write1_with_log(s, ptl->m_tierFlag, "tier_flag[]"); in codeProfileTier()
237 h265e_stream_write_with_log(s, ptl->m_profileIdc, 5, "profile_idc[]"); in codeProfileTier()
239 …h265e_stream_write1_with_log(s, ptl->m_profileCompatibilityFlag[j], "profile_compatibility_flag[][… in codeProfileTier()
242 …h265e_stream_write1_with_log(s, ptl->m_progressiveSourceFlag, "general_progressive_source_flag"); in codeProfileTier()
243 … h265e_stream_write1_with_log(s, ptl->m_interlacedSourceFlag, "general_interlaced_source_flag"); in codeProfileTier()
244 …h265e_stream_write1_with_log(s, ptl->m_nonPackedConstraintFlag, "general_non_packed_constraint_fla… in codeProfileTier()
245 …h265e_stream_write1_with_log(s, ptl->m_frameOnlyConstraintFlag, "general_frame_only_constraint_fla… in codeProfileTier()
247 if (ptl->m_profileIdc == MPP_PROFILE_HEVC_FORMAT_RANGE_EXTENDIONS) { in codeProfileTier()
248 …h265e_stream_write1_with_log(s, ptl->m_max12bitConstraintFlag , "general_max_12_bit_constraint_fla… in codeProfileTier()
249 …h265e_stream_write1_with_log(s, ptl->m_max10bitConstraintFlag, "general_max_10_bit_constraint_flag… in codeProfileTier()
250 …h265e_stream_write1_with_log(s, ptl->m_max8bitConstraintFlag, "general_max_8_bit_constraint_flag"… in codeProfileTier()
251 …h265e_stream_write1_with_log(s, ptl->m_max422chromaConstraintFlag, "general_max_422chroma_constrai… in codeProfileTier()
252 …h265e_stream_write1_with_log(s, ptl->m_max420chromaConstraintFlag, "general_max_420chroma_constrai… in codeProfileTier()
253 …h265e_stream_write1_with_log(s, ptl->m_maxMonochromaConstraintFlag, "general_max_monochroma_constr… in codeProfileTier()
254 … h265e_stream_write1_with_log(s, ptl->m_intraConstraintFlag, "general_intra_constraint_flag"); in codeProfileTier()
255 …h265e_stream_write1_with_log(s, ptl->m_onePictureConstraintFlag, "general_one_picture_constraint_f… in codeProfileTier()
256 …h265e_stream_write1_with_log(s, ptl->m_lowerBitRateConstraintFlag, "general_lower_bit_rate_constra… in codeProfileTier()
267 void codePTL(H265eStream *s, H265ePTL* ptl, RK_U32 profilePresentFlag, int maxNumSubLayersMinus1) in codePTL() argument
271 codeProfileTier(s, &ptl->m_generalPTL); in codePTL()
273 h265e_stream_write_with_log(s, ptl->m_generalPTL.m_levelIdc, 8, "general_level_idc"); in codePTL()
277 …h265e_stream_write1_with_log(s, ptl->m_subLayerProfilePresentFlag[i], "sub_layer_profile_present_f… in codePTL()
280 …h265e_stream_write1_with_log(s, ptl->m_subLayerLevelPresentFlag[i], "sub_layer_level_present_flag[… in codePTL()
290 if (profilePresentFlag && ptl->m_subLayerProfilePresentFlag[i]) { in codePTL()
291 codeProfileTier(s, &ptl->m_subLayerPTL[i]); // sub_layer_... in codePTL()
293 if (ptl->m_subLayerLevelPresentFlag[i]) { in codePTL()
294 … h265e_stream_write_with_log(s, ptl->m_subLayerPTL[i].m_levelIdc, 8, "sub_layer_level_idc[i]"); in codePTL()