Ticket #1354: 1.patch

File 1.patch, 1.0 KB (added by kolya, 10 years ago)
  • source/Lib/TLibDecoder/TDecCAVLC.cpp

    diff --git a/source/Lib/TLibDecoder/TDecCAVLC.cpp b/source/Lib/TLibDecoder/TDecCAVLC.cpp
    index 0383e94..dd25bd0 100644
    a b  
    16251625Void TDecCavlc::parseProfileTier(ProfileTierLevel *ptl)
    16261626{
    16271627  UInt uiCode;
    1628   READ_CODE(2 , uiCode, "general_profile_space[]");   ptl->setProfileSpace(uiCode);
    1629   READ_FLAG(    uiCode, "general_tier_flag[]"    );   ptl->setTierFlag    (uiCode ? Level::HIGH : Level::MAIN);
    1630   READ_CODE(5 , uiCode, "general_profile_idc[]"  );   ptl->setProfileIdc  (Profile::Name(uiCode));
     1628  READ_CODE(2 , uiCode, "general_profile_space");   ptl->setProfileSpace(uiCode);
     1629  READ_FLAG(    uiCode, "general_tier_flag"    );   ptl->setTierFlag    (uiCode ? Level::HIGH : Level::MAIN);
     1630  READ_CODE(5 , uiCode, "general_profile_idc"  );   ptl->setProfileIdc  (Profile::Name(uiCode));
    16311631  for(Int j = 0; j < 32; j++)
    16321632  {
    16331633    READ_FLAG(  uiCode, "XXX_profile_compatibility_flag[][j]");   ptl->setProfileCompatibilityFlag(j, uiCode ? 1 : 0);