- Timestamp:
- 20 Sep 2013, 18:42:44 (11 years ago)
- Location:
- branches/SHM-3.1-dev/source
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-3.1-dev/source/App/TAppEncoder/TAppEncCfg.cpp
r401 r402 69 69 , m_avcBaseLayerFlag(0) 70 70 #endif 71 #if N0120_MAX_TID_REF_CFG 72 , m_maxTidRefPresentFlag(1) 73 #endif 71 74 , m_pColumnWidth() 72 75 , m_pRowHeight() 73 76 , m_scalingListFile() 74 77 , m_elRapSliceBEnabled(0) 75 #if N0120_MAX_TID_REF_CFG76 , m_maxTidRefPresentFlag(1)77 #endif78 78 { 79 79 for(UInt layer=0; layer<MAX_LAYERS; layer++) -
branches/SHM-3.1-dev/source/App/TAppEncoder/TAppEncCfg.h
r398 r402 68 68 Int m_framesToBeEncoded; ///< number of encoded frames 69 69 #if AVC_BASE 70 Int m_avcBaseLayerFlag; ///< AVC_BASElayer_flag70 Int m_avcBaseLayerFlag; ///< avc_baselayer_flag 71 71 #endif 72 72 #if AVC_SYNTAX -
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.