Changeset 277 in 3DVCSoftware
- Timestamp:
- 14 Feb 2013, 14:49:09 (12 years ago)
- Location:
- branches/HTM-5.1-dev1-LG/source/Lib
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-5.1-dev1-LG/source/Lib/TLibCommon/TypeDef.h
r253 r277 142 142 #define FIX_LGE_ILLUCOMP_B0045 1 143 143 #define LGE_ILLUCOMP_DEPTH_C0046 1 // JCT2-C0046 Apply illumination compensation to depth 144 #if LGE_ILLUCOMP_DEPTH_C0046 145 #define FIX_ILLUCOMP_DEPTH 1 146 #endif 144 147 #endif 145 148 -
branches/HTM-5.1-dev1-LG/source/Lib/TLibEncoder/TEncCu.cpp
r253 r277 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/source/Lib/TLibEncoder/TEncSearch.cpp
r251 r277 4825 4825 m_pcEntropyCoder->encodeMergeIndex( pcCU, 0, 0, true ); 4826 4826 #if LGE_ILLUCOMP_B0045 4827 m_pcEntropyCoder->encodeICFlag(pcCU, 0, true); 4827 m_pcEntropyCoder->encodeICFlag(pcCU, 0, true 4828 #if FIX_ILLUCOMP_DEPTH 4829 , pcCU->getDepth( 0 ) 4830 #endif 4831 ); 4828 4832 #endif 4829 4833 #if HHI_INTER_VIEW_RESIDUAL_PRED … … 6208 6212 m_pcEntropyCoder->encodeMergeIndex(pcCU, 0, 0, true); 6209 6213 #if LGE_ILLUCOMP_B0045 6210 m_pcEntropyCoder->encodeICFlag(pcCU, 0, true); 6214 m_pcEntropyCoder->encodeICFlag(pcCU, 0, true 6215 #if FIX_ILLUCOMP_DEPTH 6216 , pcCU->getDepth( 0 ) 6217 #endif 6218 ); 6211 6219 #endif 6212 6220 #if HHI_INTER_VIEW_RESIDUAL_PRED … … 6231 6239 m_pcEntropyCoder->encodePredInfo( pcCU, 0, true ); 6232 6240 #if LGE_ILLUCOMP_B0045 6233 m_pcEntropyCoder->encodeICFlag(pcCU, 0, true); 6241 m_pcEntropyCoder->encodeICFlag(pcCU, 0, true 6242 #if FIX_ILLUCOMP_DEPTH 6243 , pcCU->getDepth( 0 ) 6244 #endif 6245 ); 6234 6246 #endif 6235 6247 #if HHI_INTER_VIEW_RESIDUAL_PRED
Note: See TracChangeset for help on using the changeset viewer.