Changeset 387 in 3DVCSoftware
- Timestamp:
- 9 May 2013, 08:35:35 (12 years ago)
- Location:
- branches/HTM-6.2-dev3-Mediatek/source/Lib
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-6.2-dev3-Mediatek/source/Lib/TLibCommon/TypeDef.h
r382 r387 77 77 78 78 #define PKU_QC_DEPTH_INTRA_UNI_D0195 1 // JCT3V-D0195: unified syntax table for depth intra coding tools 79 #define MTK_SAMPLE_BASED_SDC_D0110 1 // JCT3V-D0110: sample based SDC 79 80 ///// ***** TMVP/AMVP ********* 80 81 #define TMVP_DEPTH_SWITCH 1 // JCT3V-B0092 additional encoder option only -
branches/HTM-6.2-dev3-Mediatek/source/Lib/TLibDecoder/TDecCu.cpp
r332 r387 1056 1056 UChar ucSegment = pMask?(UChar)pMask[uiX]:0; 1057 1057 assert( ucSegment < uiNumSegments ); 1058 1058 #if MTK_SAMPLE_BASED_SDC_D0110 1059 Pel pResiDC = apDCResiValues[ucSegment]; 1060 1061 pReco [ uiX ] = Clip( pPred[ uiX ] + pResiDC ); 1062 #else 1059 1063 Pel pPredVal= apDCPredValues[ucSegment]; 1060 1064 Pel pResiDC = apDCResiValues[ucSegment]; 1061 1065 1062 1066 pReco [ uiX ] = Clip( pPredVal + pResiDC ); 1067 #endif 1063 1068 pRecIPred[ uiX ] = pReco[ uiX ]; 1064 1069 } -
branches/HTM-6.2-dev3-Mediatek/source/Lib/TLibEncoder/TEncSearch.cpp
r382 r387 1705 1705 UChar ucSegment = pMask?(UChar)pMask[uiX]:0; 1706 1706 assert( ucSegment < uiNumSegments ); 1707 #if MTK_SAMPLE_BASED_SDC_D0110 1708 Pel pResiDC = apDCResiValues[ucSegment]; 1707 1709 1710 pReco [ uiX ] = Clip( pPred[ uiX ] + pResiDC ); 1711 #else 1708 1712 Pel pPredVal= apDCPredValues[ucSegment]; 1709 1713 Pel pResiDC = apDCResiValues[ucSegment]; 1710 1714 1711 1715 pReco [ uiX ] = Clip( pPredVal + pResiDC ); 1716 #endif 1712 1717 pRecIPred[ uiX ] = pReco[ uiX ]; 1713 1718 }
Note: See TracChangeset for help on using the changeset viewer.