Changeset 244 in 3DVCSoftware for branches/HTM-5.1-dev2-Mediatek/source/Lib/TLibDecoder
- Timestamp:
- 31 Jan 2013, 03:48:51 (12 years ago)
- Location:
- branches/HTM-5.1-dev2-Mediatek/source/Lib/TLibDecoder
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-5.1-dev2-Mediatek/source/Lib/TLibDecoder/TDecCu.cpp
r189 r244 400 400 } 401 401 #endif 402 #if HHI_INTER_VIEW_RESIDUAL_PRED 402 #if HHI_INTER_VIEW_RESIDUAL_PRED && !MTK_MDIVRP_C0138 403 403 m_pcEntropyDecoder->decodeResPredFlag( pcCU, uiAbsPartIdx, uiDepth, m_ppcCU[uiDepth], 0 ); 404 404 #endif … … 452 452 #endif 453 453 454 #if HHI_INTER_VIEW_RESIDUAL_PRED 454 #if HHI_INTER_VIEW_RESIDUAL_PRED && !MTK_MDIVRP_C0138 455 455 if( !pcCU->isIntra( uiAbsPartIdx ) ) 456 456 { … … 660 660 m_pcPrediction->motionCompensation( pcCU, m_ppcYuvReco[uiDepth] ); 661 661 662 #if MTK_MDIVRP_C0138 663 if (pcCU->getMergeFlag(0) && pcCU->getMergeIndex(0)==0 && pcCU->getResPredAvail(0)) 664 { 665 m_pcPrediction->residualPrediction(pcCU, m_ppcYuvReco[uiDepth], m_ppcYuvResPred[uiDepth]); 666 } 667 #endif 668 662 669 #if HHI_MPI 663 670 if( pcCU->getTextureModeDepth( 0 ) != -1 ) … … 665 672 #endif 666 673 667 #if HHI_INTER_VIEW_RESIDUAL_PRED 674 #if HHI_INTER_VIEW_RESIDUAL_PRED && !MTK_MDIVRP_C0138 668 675 if( pcCU->getResPredFlag( 0 ) ) 669 676 { … … 696 703 { 697 704 #if HHI_INTER_VIEW_RESIDUAL_PRED 705 #if MTK_MDIVRP_C0138 706 if (pcCU->getMergeFlag(0) && pcCU->getMergeIndex(0)==0 && pcCU->getResPredAvail(0)) 707 #else 698 708 if( pcCU->getResPredFlag( 0 ) ) 709 #endif 699 710 { 700 711 m_ppcYuvReco[uiDepth]->clip( pcCU->getWidth( 0 ), pcCU->getHeight( 0 ) ); -
branches/HTM-5.1-dev2-Mediatek/source/Lib/TLibDecoder/TDecEntropy.cpp
r189 r244 100 100 } 101 101 102 #if HHI_INTER_VIEW_RESIDUAL_PRED 102 #if HHI_INTER_VIEW_RESIDUAL_PRED && !MTK_MDIVRP_C0138 103 103 Void 104 104 TDecEntropy::decodeResPredFlag( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, TComDataCU* pcSubCU, UInt uiPUIdx ) -
branches/HTM-5.1-dev2-Mediatek/source/Lib/TLibDecoder/TDecEntropy.h
r210 r244 210 210 Void decodeMergeFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt uiPUIdx ); 211 211 Void decodeMergeIndex ( TComDataCU* pcSubCU, UInt uiPartIdx, UInt uiPartAddr, PartSize eCUMode, UChar* puhInterDirNeighbours, TComMvField* pcMvFieldNeighbours, UInt uiDepth ); 212 #if HHI_INTER_VIEW_RESIDUAL_PRED 212 #if HHI_INTER_VIEW_RESIDUAL_PRED && !MTK_MDIVRP_C0138 213 213 Void decodeResPredFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, TComDataCU* pcSubCU, UInt uiPUIdx ); 214 214 #endif
Note: See TracChangeset for help on using the changeset viewer.