Changeset 1559 in SHVCSoftware
- Timestamp:
- 15 Apr 2016, 20:20:45 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/App/TAppEncoder/TAppEncCfg.cpp
r1549 r1559 2653 2653 { 2654 2654 Int& m_conformanceWindowMode = m_apcLayerCfg[layer]->m_conformanceWindowMode; 2655 UInt& m_uiMaxCUHeight= m_apcLayerCfg[layer]->m_uiMaxCUHeight;2655 UInt& m_uiMaxCUHeight = m_apcLayerCfg[layer]->m_uiMaxCUHeight; 2656 2656 UInt& m_uiMaxCUDepth = m_apcLayerCfg[layer]->m_uiMaxCUDepth; 2657 2657 ChromaFormat& m_chromaFormatIDC = m_apcLayerCfg[layer]->m_chromaFormatIDC; 2658 2658 2659 #if SCALABLE_REXT2660 2659 Int& m_confWinLeft = m_apcLayerCfg[layer]->m_confWinLeft; 2661 2660 Int& m_confWinRight = m_apcLayerCfg[layer]->m_confWinRight; 2662 2661 Int& m_confWinTop = m_apcLayerCfg[layer]->m_confWinTop; 2663 2662 Int& m_confWinBottom = m_apcLayerCfg[layer]->m_confWinBottom; 2664 #else 2665 Int& m_confWinLeft = m_apcLayerCfg[layer]->m_confWinLeft; 2666 Int& m_confWinRight = m_apcLayerCfg[layer]->m_confWinLeft; 2667 Int& m_confWinTop = m_apcLayerCfg[layer]->m_confWinLeft; 2668 Int& m_confWinBottom = m_apcLayerCfg[layer]->m_confWinLeft; 2669 #endif 2663 2670 2664 Int* m_aiPad = m_apcLayerCfg[layer]->m_aiPad; 2671 2665 Int*& m_aidQP = m_apcLayerCfg[layer]->m_aidQP; … … 4256 4250 UInt& m_uiMaxCUDepth = m_apcLayerCfg[layerIdx]->m_uiMaxCUDepth; 4257 4251 4258 #if SCALABLE_REXT4259 4252 Int& m_confWinLeft = m_apcLayerCfg[layerIdx]->m_confWinLeft; 4260 4253 Int& m_confWinRight = m_apcLayerCfg[layerIdx]->m_confWinRight; 4261 4254 Int& m_confWinTop = m_apcLayerCfg[layerIdx]->m_confWinTop; 4262 4255 Int& m_confWinBottom = m_apcLayerCfg[layerIdx]->m_confWinBottom; 4263 #else4264 Int& m_confWinLeft = m_apcLayerCfg[layerIdx]->m_confWinLeft;4265 Int& m_confWinRight = m_apcLayerCfg[layerIdx]->m_confWinLeft;4266 Int& m_confWinTop = m_apcLayerCfg[layerIdx]->m_confWinLeft;4267 Int& m_confWinBottom = m_apcLayerCfg[layerIdx]->m_confWinLeft;4268 #endif4269 4256 4270 4257 Int& m_iSourceWidth = m_apcLayerCfg[layerIdx]->m_iSourceWidth; … … 4337 4324 4338 4325 printf("Reconstruction File : %s\n", m_reconFileName.c_str() ); 4326 #if SVC_EXTENSION 4327 printf("Real Format : %dx%d %gHz\n", m_iSourceWidth - ( m_confWinLeft + m_confWinRight ) * TComSPS::getWinUnitX( m_apcLayerCfg[layerIdx]->m_chromaFormatIDC ), m_iSourceHeight - ( m_confWinTop + m_confWinBottom ) * TComSPS::getWinUnitY( m_apcLayerCfg[layerIdx]->m_chromaFormatIDC ), (Double)m_iFrameRate/m_temporalSubsampleRatio ); 4328 #else 4339 4329 printf("Real Format : %dx%d %gHz\n", m_iSourceWidth - m_confWinLeft - m_confWinRight, m_iSourceHeight - m_confWinTop - m_confWinBottom, (Double)m_iFrameRate/m_temporalSubsampleRatio ); 4330 #endif 4340 4331 printf("Internal Format : %dx%d %gHz\n", m_iSourceWidth, m_iSourceHeight, (Double)m_iFrameRate/m_temporalSubsampleRatio ); 4341 4332
Note: See TracChangeset for help on using the changeset viewer.