- Timestamp:
- 31 Jul 2014, 15:30:18 (10 years ago)
- Location:
- branches/HTM-11.2-dev0/source
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-11.2-dev0/source/App/TAppEncoder/TAppEncCfg.cpp
r1030 r1033 1415 1415 for ( Int i = 0; i < m_layerIdsInSets[lsIdx].size(); i++ ) 1416 1416 { 1417 #if FIX_TICKET_61 1418 xConfirmPara( m_layerIdsInSets[lsIdx][i] < 0 || m_layerIdsInSets[lsIdx][i] >= MAX_NUM_LAYER_IDS, "LayerIdsInSet must be greater than 0 and less than MAX_NUM_LAYER_IDS" ); 1419 #else 1417 1420 xConfirmPara( m_layerIdsInSets[lsIdx][i] < 0 || m_layerIdsInSets[lsIdx].size() >= MAX_NUM_LAYER_IDS, "LayerIdsInSet must be greater than and less than MAX_NUM_LAYER_IDS" ); 1421 #endif 1418 1422 } 1419 1423 } -
branches/HTM-11.2-dev0/source/Lib/TAppCommon/program_options_lite.h
r872 r1033 378 378 std::string cDescBuffer; 379 379 380 #if !FIX_TICKET_62 380 381 cNameBuffer .resize( name.size() + 10 ); 381 382 cDescBuffer.resize( desc.size() + 10 ); 383 #endif 382 384 383 385 storage.resize(uiMaxNum); 384 386 for ( unsigned int uiK = 0; uiK < uiMaxNum; uiK++ ) 385 387 { 388 389 #if FIX_TICKET_62 390 cNameBuffer .resize( name.size() + 10 ); 391 cDescBuffer.resize( desc.size() + 10 ); 392 #endif 393 386 394 Bool duplicate = (uiK != 0); 387 395 // isn't there are sprintf function for string?? -
branches/HTM-11.2-dev0/source/Lib/TLibCommon/TypeDef.h
r1030 r1033 282 282 /////////////////////////////////// DERIVED DEFINES /////////////////////////////////// 283 283 ///////////////////////////////////////////////////////////////////////////////////////// 284 285 // Fixes 286 #define FIX_TICKET_62 1 // layerIdsInSets size check 287 #define FIX_TICKET_61 1 // layerIdsInSets size check 284 288 285 289 ///// ***** VIEW SYNTHESIS OPTIMIZAION *********
Note: See TracChangeset for help on using the changeset viewer.