Changeset 858 in 3DVCSoftware for branches/HTM-10.0-dev0/source/Lib/TLibDecoder
- Timestamp:
- 1 Mar 2014, 00:45:51 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-10.0-dev0/source/Lib/TLibDecoder/TDecCAVLC.cpp
r857 r858 1329 1329 #endif 1330 1330 1331 #if !H_MV_HLS 7_GEN1331 #if !H_MV_HLS_7_VPS_P0306_22 1332 1332 READ_CODE( 6, uiCode, "vps_num_profile_tier_level_minus1" ); pcVPS->setVpsNumProfileTierLevelMinus1( uiCode ); 1333 1333 #else … … 1457 1457 if ( pcVPS->getRepFormatIdxPresentFlag() ) 1458 1458 { 1459 #if H_MV_HLS 7_GEN1460 READ_UVLC( 4,uiCode, "vps_num_rep_formats_minus1" ); pcVPS->setVpsNumRepFormatsMinus1( uiCode );1459 #if H_MV_HLS_7_VPS_P0306_22 1460 READ_UVLC( uiCode, "vps_num_rep_formats_minus1" ); pcVPS->setVpsNumRepFormatsMinus1( uiCode ); 1461 1461 #else 1462 1462 READ_CODE( 4, uiCode, "vps_num_rep_formats_minus1" ); pcVPS->setVpsNumRepFormatsMinus1( uiCode ); … … 1479 1479 if( pcVPS->getVpsNumRepFormatsMinus1() > 0 ) 1480 1480 { 1481 #if H_MV_HLS_7_VPS_P0306_22 1482 Int numBits = 1; 1483 while ((1 << numBits) < (pcVPS->getVpsNumRepFormatsMinus1() + 1)) 1484 { 1485 numBits++; 1486 } 1487 READ_CODE( numBits, uiCode, "vps_rep_format_idx[i]" ); pcVPS->setVpsRepFormatIdx( i, uiCode ); 1488 #else 1481 1489 READ_CODE( 8, uiCode, "vps_rep_format_idx" ); pcVPS->setVpsRepFormatIdx( i, uiCode ); 1490 #endif 1482 1491 } 1483 1492 }
Note: See TracChangeset for help on using the changeset viewer.