Changeset 402 in SHVCSoftware for branches/SHM-3.1-dev/source/Lib
- Timestamp:
- 20 Sep 2013, 18:42:44 (11 years ago)
- Location:
- branches/SHM-3.1-dev/source/Lib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-3.1-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp
r399 r402 1155 1155 vps->setVpsNumRepFormats( vps->getMaxLayers() ); 1156 1156 } 1157 for( Inti = 0; i < vps->getVpsNumRepFormats(); i++)1157 for(i = 0; i < vps->getVpsNumRepFormats(); i++) 1158 1158 { 1159 1159 // Read rep_format_structures … … 1165 1165 if( vps->getRepFormatIdxPresentFlag() ) 1166 1166 { 1167 for( Inti = 1; i < vps->getMaxLayers(); i++)1167 for(i = 1; i < vps->getMaxLayers(); i++) 1168 1168 { 1169 1169 if( vps->getVpsNumRepFormats() > 1 ) … … 1182 1182 { 1183 1183 // default assignment - each layer assigned each rep_format() structure in the order signaled 1184 for( Inti = 1; i < vps->getMaxLayers(); i++)1184 for(i = 1; i < vps->getMaxLayers(); i++) 1185 1185 { 1186 1186 vps->setVpsRepFormatIdx( i, i ); -
branches/SHM-3.1-dev/source/Lib/TLibEncoder/TEncCavlc.cpp
r399 r402 890 890 WRITE_CODE( vps->getVpsNumRepFormats() - 1, 4, "vps_num_rep_formats_minus1" ); 891 891 } 892 for( Inti = 0; i < vps->getVpsNumRepFormats(); i++)892 for(i = 0; i < vps->getVpsNumRepFormats(); i++) 893 893 { 894 894 // Read rep_format_structures … … 898 898 if( vps->getRepFormatIdxPresentFlag() ) 899 899 { 900 for( Inti = 1; i < vps->getMaxLayers(); i++)900 for(i = 1; i < vps->getMaxLayers(); i++) 901 901 { 902 902 if( vps->getVpsNumRepFormats() > 1 )
Note: See TracChangeset for help on using the changeset viewer.