Changeset 6 in SHVCSoftware for trunk/source/Lib/TLibEncoder
- Timestamp:
- 8 Nov 2012, 20:54:05 (13 years ago)
- Location:
- trunk/source/Lib/TLibEncoder
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/Lib/TLibEncoder/TEncEntropy.cpp
r2 r6 237 237 } 238 238 239 #if INTRA_BL 240 if( pcCU->isIntraBL( uiAbsPartIdx ) ) 241 { 242 return; 243 } 244 #endif 245 239 246 m_pcEntropyCoderIf->codePredMode( pcCU, uiAbsPartIdx ); 240 247 } -
trunk/source/Lib/TLibEncoder/TEncSearch.cpp
r2 r6 894 894 Bool bChroma ) 895 895 { 896 #if INTRA_BL897 if ( pcCU->isIntraBL( 0 ))898 {899 return;900 }901 #endif902 903 896 if( bLuma ) 904 897 { … … 917 910 #if INTRA_BL 918 911 m_pcEntropyCoder->encodeIntraBLFlag ( pcCU, 0, true ); 919 #endif 920 912 if( pcCU->isIntraBL( 0 ) ) 913 { 914 return; 915 } 916 #endif 921 917 m_pcEntropyCoder ->encodePartSize( pcCU, 0, pcCU->getDepth(0), true ); 922 918 … … 956 952 } 957 953 } 954 #if INTRA_BL 955 if( pcCU->isIntraBL( 0 ) ) 956 { 957 return; 958 } 959 #endif 958 960 if( bChroma ) 959 961 { … … 6153 6155 } 6154 6156 m_pcEntropyCoder->encodeSkipFlag ( pcCU, 0, true ); 6157 #if INTRA_BL 6158 if(m_pcEncCfg->getLayerId()) 6159 { 6160 m_pcEntropyCoder->encodeIntraBLFlag(pcCU, 0, true); 6161 assert( pcCU->isIntraBL( 0 ) == false ); 6162 } 6163 #endif 6155 6164 m_pcEntropyCoder->encodePredMode( pcCU, 0, true ); 6156 6165 m_pcEntropyCoder->encodePartSize( pcCU, 0, pcCU->getDepth(0), true ); -
trunk/source/Lib/TLibEncoder/TEncTop.cpp
r2 r6 389 389 m_cIlpPic[j] = new TComPic; 390 390 //m_cIlpPic[j]->createWithOutYuv(m_iSourceWidth, m_iSourceHeight, g_uiMaxCUWidth, g_uiMaxCUHeight, g_uiMaxCUDepth, &m_cSPS, true); 391 #if SVC_UPSAMPLING 391 392 m_cIlpPic[j]->create(m_iSourceWidth, m_iSourceHeight, g_uiMaxCUWidth, g_uiMaxCUHeight, g_uiMaxCUDepth, &m_cSPS, true); 393 #else 394 m_cIlpPic[j]->create(m_iSourceWidth, m_iSourceHeight, g_uiMaxCUWidth, g_uiMaxCUHeight, g_uiMaxCUDepth, true); 395 #endif 392 396 #if REF_IDX_ME_AROUND_ZEROMV 393 397 m_cIlpPic[j]->setIsILR(true);
Note: See TracChangeset for help on using the changeset viewer.