Changeset 1203 in SHVCSoftware for branches/SHM-dev/source/App/TAppEncoder/TAppEncLayerCfg.cpp
- Timestamp:
- 8 Jul 2015, 20:57:55 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/App/TAppEncoder/TAppEncLayerCfg.cpp
r1200 r1203 45 45 m_cReconFile(string("")), 46 46 m_conformanceMode( 0 ), 47 m_aidQP(NULL) 48 #if REPN_FORMAT_IN_VPS 49 , m_repFormatIdx (-1) 50 #endif 47 m_aidQP(NULL), 48 m_repFormatIdx (-1) 51 49 #if Q0074_COLOUR_REMAPPING_SEI 52 50 , m_colourRemapSEIFileRoot(string("")) … … 214 212 printf("Input File : %s\n", m_cInputFile.c_str() ); 215 213 printf("Reconstruction File : %s\n", m_cReconFile.c_str() ); 216 #if REPN_FORMAT_IN_VPS214 #if SVC_EXTENSION 217 215 printf("Real Format : %dx%d %dHz\n", m_iSourceWidth - ( m_confWinLeft + m_confWinRight ) * TComSPS::getWinUnitX( m_chromaFormatIDC ), m_iSourceHeight - ( m_confWinTop + m_confWinBottom ) * TComSPS::getWinUnitY( m_chromaFormatIDC ), m_iFrameRate ); 218 216 #else … … 314 312 m_aiPad[0] = m_confWinRight = ((m_iSourceWidth / minCuSize) + 1) * minCuSize - m_iSourceWidth; 315 313 m_iSourceWidth += m_confWinRight; 316 #if REPN_FORMAT_IN_VPS314 #if SVC_EXTENSION 317 315 m_confWinRight /= TComSPS::getWinUnitX( m_chromaFormatIDC ); 318 316 #endif … … 327 325 m_aiPad[1] = m_confWinBottom << 1; 328 326 } 329 #if REPN_FORMAT_IN_VPS327 #if SVC_EXTENSION 330 328 m_confWinBottom /= TComSPS::getWinUnitY( m_chromaFormatIDC ); 331 329 #endif … … 346 344 m_confWinRight = m_aiPad[0]; 347 345 m_confWinBottom = m_aiPad[1]; 348 #if REPN_FORMAT_IN_VPS346 #if SVC_EXTENSION 349 347 m_confWinRight /= TComSPS::getWinUnitX( m_chromaFormatIDC ); 350 348 m_confWinBottom /= TComSPS::getWinUnitY( m_chromaFormatIDC ); … … 429 427 xConfirmPara( m_aiPad[1] % TComSPS::getWinUnitY(CHROMA_420) != 0, "Vertical padding must be an integer multiple of the specified chroma subsampling"); 430 428 431 #if ! REPN_FORMAT_IN_VPS429 #if !SVC_EXTENSION 432 430 xConfirmPara( m_confLeft % TComSPS::getWinUnitX(CHROMA_420) != 0, "Left conformance window offset must be an integer multiple of the specified chroma subsampling"); 433 431 xConfirmPara( m_confRight % TComSPS::getWinUnitX(CHROMA_420) != 0, "Right conformance window offset must be an integer multiple of the specified chroma subsampling");
Note: See TracChangeset for help on using the changeset viewer.