Changeset 282 in 3DVCSoftware for branches/HTM-5.1-dev1-LG-Fix/source/Lib/TLibEncoder
- Timestamp:
- 16 Feb 2013, 01:58:05 (12 years ago)
- Location:
- branches/HTM-5.1-dev1-LG-Fix/source/Lib/TLibEncoder
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-5.1-dev1-LG-Fix/source/Lib/TLibEncoder/TEncCu.cpp
r253 r282 1239 1239 xCheckRDCostMvInheritance( rpcBestCU, rpcTempCU, uiDepth, false, false ); 1240 1240 rpcTempCU->initEstData( uiDepth, iQP ); 1241 #if FIX_ILLUCOMP_DEPTH 1242 rpcTempCU->setICFlagSubParts(bICFlag, 0, 0, uiDepth); 1243 #endif 1241 1244 xCheckRDCostMvInheritance( rpcBestCU, rpcTempCU, uiDepth, true, false ); 1242 1245 rpcTempCU->initEstData( uiDepth, iQP ); -
branches/HTM-5.1-dev1-LG-Fix/source/Lib/TLibEncoder/TEncSearch.cpp
r268 r282 4829 4829 m_pcEntropyCoder->encodeMergeIndex( pcCU, 0, 0, true ); 4830 4830 #if LGE_ILLUCOMP_B0045 4831 m_pcEntropyCoder->encodeICFlag(pcCU, 0, true); 4831 m_pcEntropyCoder->encodeICFlag(pcCU, 0, true 4832 #if FIX_ILLUCOMP_DEPTH 4833 , pcCU->getDepth( 0 ) 4834 #endif 4835 ); 4832 4836 #endif 4833 4837 #if HHI_INTER_VIEW_RESIDUAL_PRED … … 6212 6216 m_pcEntropyCoder->encodeMergeIndex(pcCU, 0, 0, true); 6213 6217 #if LGE_ILLUCOMP_B0045 6214 m_pcEntropyCoder->encodeICFlag(pcCU, 0, true); 6218 m_pcEntropyCoder->encodeICFlag(pcCU, 0, true 6219 #if FIX_ILLUCOMP_DEPTH 6220 , pcCU->getDepth( 0 ) 6221 #endif 6222 ); 6215 6223 #endif 6216 6224 #if HHI_INTER_VIEW_RESIDUAL_PRED … … 6235 6243 m_pcEntropyCoder->encodePredInfo( pcCU, 0, true ); 6236 6244 #if LGE_ILLUCOMP_B0045 6237 m_pcEntropyCoder->encodeICFlag(pcCU, 0, true); 6245 m_pcEntropyCoder->encodeICFlag(pcCU, 0, true 6246 #if FIX_ILLUCOMP_DEPTH 6247 , pcCU->getDepth( 0 ) 6248 #endif 6249 ); 6238 6250 #endif 6239 6251 #if HHI_INTER_VIEW_RESIDUAL_PRED
Note: See TracChangeset for help on using the changeset viewer.