diff --git a/source/Lib/TLibDecoder/TDecCAVLC.cpp b/source/Lib/TLibDecoder/TDecCAVLC.cpp
index 0383e94..dd25bd0 100644
a
|
b
|
|
1625 | 1625 | Void TDecCavlc::parseProfileTier(ProfileTierLevel *ptl) |
1626 | 1626 | { |
1627 | 1627 | 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)); |
1631 | 1631 | for(Int j = 0; j < 32; j++) |
1632 | 1632 | { |
1633 | 1633 | READ_FLAG( uiCode, "XXX_profile_compatibility_flag[][j]"); ptl->setProfileCompatibilityFlag(j, uiCode ? 1 : 0); |