Skip to content

Commit

Permalink
H265: Initialize profile_idc with INVALID value
Browse files Browse the repository at this point in the history
  • Loading branch information
Raju Konda authored and zlatinski committed Feb 6, 2025
1 parent be2a96f commit 37fd14e
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -416,6 +416,7 @@ void EncoderConfigH265::InitializeSpsRefPicSet(SpsH265 *pSps)
StdVideoH265ProfileTierLevel EncoderConfigH265::GetLevelTier()
{
StdVideoH265ProfileTierLevel profileTierLevel{};
profileTierLevel.general_profile_idc = STD_VIDEO_H265_PROFILE_IDC_INVALID;
profileTierLevel.general_level_idc = STD_VIDEO_H265_LEVEL_IDC_INVALID;
uint32_t levelIdx = 0;
for (; levelIdx < levelLimitsTblSize; levelIdx++) {
Expand Down

0 comments on commit 37fd14e

Please sign in to comment.