[5] | 1 | /* The copyright in this software is being made available under the BSD |
---|
| 2 | * License, included below. This software may be subject to other third party |
---|
| 3 | * and contributor rights, including patent rights, and no such rights are |
---|
[1200] | 4 | * granted under this license. |
---|
[5] | 5 | * |
---|
[1200] | 6 | * Copyright (c) 2010-2015, ITU/ISO/IEC |
---|
[5] | 7 | * All rights reserved. |
---|
| 8 | * |
---|
| 9 | * Redistribution and use in source and binary forms, with or without |
---|
| 10 | * modification, are permitted provided that the following conditions are met: |
---|
| 11 | * |
---|
| 12 | * * Redistributions of source code must retain the above copyright notice, |
---|
| 13 | * this list of conditions and the following disclaimer. |
---|
| 14 | * * Redistributions in binary form must reproduce the above copyright notice, |
---|
| 15 | * this list of conditions and the following disclaimer in the documentation |
---|
| 16 | * and/or other materials provided with the distribution. |
---|
[56] | 17 | * * Neither the name of the ITU/ISO/IEC nor the names of its contributors may |
---|
[5] | 18 | * be used to endorse or promote products derived from this software without |
---|
| 19 | * specific prior written permission. |
---|
| 20 | * |
---|
| 21 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
---|
| 22 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
---|
| 23 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
---|
| 24 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS |
---|
| 25 | * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
---|
| 26 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
---|
| 27 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
---|
| 28 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
---|
| 29 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
---|
| 30 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF |
---|
| 31 | * THE POSSIBILITY OF SUCH DAMAGE. |
---|
| 32 | */ |
---|
[2] | 33 | |
---|
| 34 | /** \file TComPrediction.h |
---|
| 35 | \brief prediction class (header) |
---|
| 36 | */ |
---|
| 37 | |
---|
| 38 | #ifndef __TCOMPREDICTION__ |
---|
| 39 | #define __TCOMPREDICTION__ |
---|
| 40 | |
---|
| 41 | |
---|
| 42 | // Include files |
---|
[1200] | 43 | #include "TComYuv.h" |
---|
[56] | 44 | #include "TComInterpolationFilter.h" |
---|
| 45 | #include "TComWeightPrediction.h" |
---|
| 46 | |
---|
[1200] | 47 | // forward declaration |
---|
| 48 | class TComMv; |
---|
| 49 | class TComTU; |
---|
| 50 | |
---|
[56] | 51 | //! \ingroup TLibCommon |
---|
| 52 | //! \{ |
---|
| 53 | |
---|
[2] | 54 | // ==================================================================================================================== |
---|
| 55 | // Class definition |
---|
| 56 | // ==================================================================================================================== |
---|
| 57 | |
---|
| 58 | /// prediction class |
---|
[1200] | 59 | typedef enum PRED_BUF_E |
---|
| 60 | { |
---|
| 61 | PRED_BUF_UNFILTERED=0, |
---|
| 62 | PRED_BUF_FILTERED=1, |
---|
| 63 | NUM_PRED_BUF=2 |
---|
| 64 | } PRED_BUF; |
---|
| 65 | |
---|
| 66 | static const UInt MAX_INTRA_FILTER_DEPTHS=5; |
---|
| 67 | |
---|
[56] | 68 | class TComPrediction : public TComWeightPrediction |
---|
[2] | 69 | { |
---|
[1200] | 70 | private: |
---|
| 71 | static const UChar m_aucIntraFilter[MAX_NUM_CHANNEL_TYPE][MAX_INTRA_FILTER_DEPTHS]; |
---|
| 72 | |
---|
[2] | 73 | protected: |
---|
[1200] | 74 | Pel* m_piYuvExt[MAX_NUM_COMPONENT][NUM_PRED_BUF]; |
---|
| 75 | Int m_iYuvExtSize; |
---|
| 76 | |
---|
| 77 | TComYuv m_acYuvPred[NUM_REF_PIC_LIST_01]; |
---|
[2] | 78 | TComYuv m_cYuvPredTemp; |
---|
[608] | 79 | #if H_3D_ARP |
---|
[443] | 80 | TComYuv m_acYuvPredBase[2]; |
---|
| 81 | #endif |
---|
[1200] | 82 | TComYuv m_filteredBlock[LUMA_INTERPOLATION_FILTER_SUB_SAMPLE_POSITIONS][LUMA_INTERPOLATION_FILTER_SUB_SAMPLE_POSITIONS]; |
---|
| 83 | TComYuv m_filteredBlockTmp[LUMA_INTERPOLATION_FILTER_SUB_SAMPLE_POSITIONS]; |
---|
| 84 | |
---|
[56] | 85 | TComInterpolationFilter m_if; |
---|
[1200] | 86 | |
---|
| 87 | Pel* m_pLumaRecBuffer; ///< array for downsampled reconstructed luma sample |
---|
[56] | 88 | Int m_iLumaRecStride; ///< stride of #m_pLumaRecBuffer array |
---|
[608] | 89 | #if H_3D_IC |
---|
| 90 | UInt m_uiaShift[ 64 ]; // Table for multiplication to substitue of division operation |
---|
| 91 | #endif |
---|
[2] | 92 | |
---|
[608] | 93 | #if H_3D_VSP |
---|
[884] | 94 | Int* m_pDepthBlock; ///< Store a depth block, local variable, to prevent memory allocation every time |
---|
| 95 | TComYuv m_cYuvDepthOnVsp; |
---|
[296] | 96 | #endif |
---|
| 97 | |
---|
[1200] | 98 | Void xPredIntraAng ( Int bitDepth, const Pel* pSrc, Int srcStride, Pel* pDst, Int dstStride, UInt width, UInt height, ChannelType channelType, UInt dirMode, Bool blkAboveAvailable, Bool blkLeftAvailable, const Bool bEnableEdgeFilters ); |
---|
| 99 | Void xPredIntraPlanar ( const Pel* pSrc, Int srcStride, Pel* rpDst, Int dstStride, UInt width, UInt height ); |
---|
| 100 | |
---|
[2] | 101 | // motion compensation functions |
---|
[608] | 102 | #if H_3D_ARP |
---|
| 103 | Void xPredInterUniARP ( TComDataCU* pcCU, UInt uiPartAddr, Int iWidth, Int iHeight, RefPicList eRefPicList, TComYuv*& rpcYuvPred, Bool bi=false, TComMvField * pNewMvFiled = NULL ); |
---|
[1039] | 104 | Bool xCheckBiInterviewARP ( TComDataCU* pcCU, UInt uiPartAddr, Int iWidth, Int iHeight, RefPicList eBaseRefPicList, TComPic*& pcPicYuvCurrTRef, TComMv& cBaseTMV, Int& iCurrTRefPoc ); |
---|
[724] | 105 | Void xPredInterUniARPviewRef( TComDataCU* pcCU, UInt uiPartAddr, Int iWidth, Int iHeight, RefPicList eRefPicList, TComYuv*& rpcYuvPred, Bool bi, TComMvField * pNewMvFiled = NULL ); |
---|
[443] | 106 | #endif |
---|
[1200] | 107 | |
---|
| 108 | Void xPredInterUni ( TComDataCU* pcCU, UInt uiPartAddr, Int iWidth, Int iHeight, RefPicList eRefPicList, TComYuv* pcYuvPred, Bool bi=false ); |
---|
| 109 | Void xPredInterBi ( TComDataCU* pcCU, UInt uiPartAddr, Int iWidth, Int iHeight, TComYuv* pcYuvPred ); |
---|
[608] | 110 | #if H_3D_VSP |
---|
| 111 | Void xPredInterUniVSP ( TComDataCU* pcCU, UInt uiPartAddr, Int iWidth, Int iHeight, RefPicList eRefPicList, TComYuv*& rpcYuvPred, Bool bi=false ); |
---|
| 112 | Void xPredInterBiVSP ( TComDataCU* pcCU, UInt uiPartAddr, Int iWidth, Int iHeight, TComYuv*& rpcYuvPred ); |
---|
[296] | 113 | #endif |
---|
[56] | 114 | |
---|
[1200] | 115 | Void xPredInterBlk(const ComponentID compID, TComDataCU *cu, TComPicYuv *refPic, UInt partAddr, TComMv *mv, Int width, Int height, TComYuv *dstPic, Bool bi, const Int bitDepth |
---|
[608] | 116 | #if H_3D_ARP |
---|
| 117 | , Bool filterType = false |
---|
[296] | 118 | #endif |
---|
[608] | 119 | #if H_3D_IC |
---|
| 120 | , Bool bICFlag = false |
---|
[296] | 121 | #endif |
---|
[1200] | 122 | ); |
---|
[332] | 123 | |
---|
[608] | 124 | #if H_3D_ARP |
---|
| 125 | , Bool filterType = false |
---|
[296] | 126 | #endif |
---|
[608] | 127 | #if H_3D_IC |
---|
| 128 | , Bool bICFlag = false |
---|
[443] | 129 | #endif |
---|
[608] | 130 | #if H_3D_VSP |
---|
[833] | 131 | Void xPredInterUniSubPU ( TComDataCU *cu, UInt uiPartAddr, Int iWidth, Int iHeight, RefPicList eRefPicList, TComYuv*& rpcYuvPred, Bool bi, Int widthSubPU=4, Int heightSubPU=4 ); |
---|
[189] | 132 | #endif |
---|
[1200] | 133 | |
---|
| 134 | Void xWeightedAverage ( TComYuv* pcYuvSrc0, TComYuv* pcYuvSrc1, Int iRefIdx0, Int iRefIdx1, UInt uiPartAddr, Int iWidth, Int iHeight, TComYuv* pcYuvDst, const BitDepths &clipBitDepths ); |
---|
| 135 | |
---|
| 136 | Void xGetLLSPrediction ( const Pel* pSrc0, Int iSrcStride, Pel* pDst0, Int iDstStride, UInt uiWidth, UInt uiHeight, UInt uiExt0, const ChromaFormat chFmt DEBUG_STRING_FN_DECLARE(sDebug) ); |
---|
[608] | 137 | #if H_3D_IC |
---|
| 138 | Void xGetLLSICPrediction( TComDataCU* pcCU, TComMv *pMv, TComPicYuv *pRefPic, Int &a, Int &b, TextType eType ); |
---|
[443] | 139 | #endif |
---|
[1200] | 140 | Void xDCPredFiltering( const Pel* pSrc, Int iSrcStride, Pel* pDst, Int iDstStride, Int iWidth, Int iHeight, ChannelType channelType ); |
---|
[56] | 141 | Bool xCheckIdenticalMotion ( TComDataCU* pcCU, UInt PartAddr); |
---|
[773] | 142 | #if H_3D_SPIVMP |
---|
[724] | 143 | Bool xCheckTwoSPMotion ( TComDataCU* pcCU, UInt PartAddr0, UInt PartAddr1 ); |
---|
| 144 | Void xGetSubPUAddrAndMerge(TComDataCU* pcCU, UInt uiPartAddr, Int iSPWidth, Int iSPHeight, Int iNumSPInOneLine, Int iNumSP, UInt* uiMergedSPW, UInt* uiMergedSPH, UInt* uiSPAddr ); |
---|
| 145 | #endif |
---|
[608] | 146 | #if H_3D_DIM |
---|
| 147 | // depth intra functions |
---|
| 148 | Void xPredBiSegDCs ( Int* ptrSrc, UInt srcStride, Bool* biSegPattern, Int patternStride, Pel& predDC1, Pel& predDC2 ); |
---|
| 149 | Void xAssignBiSegDCs ( Pel* ptrDst, UInt dstStride, Bool* biSegPattern, Int patternStride, Pel valDC1, Pel valDC2 ); |
---|
| 150 | #if H_3D_DIM_DMM |
---|
| 151 | UInt xPredWedgeFromTex ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiWidth, UInt uiHeight, UInt intraTabIdx ); |
---|
| 152 | Void xPredContourFromTex ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiWidth, UInt uiHeight, TComWedgelet* pcContourWedge ); |
---|
| 153 | Void xCopyTextureLumaBlock ( TComDataCU* pcCU, UInt uiAbsPartIdx, Pel* piDestBlockY, UInt uiWidth, UInt uiHeight ); |
---|
[5] | 154 | #endif |
---|
| 155 | #endif |
---|
[2] | 156 | |
---|
[1200] | 157 | Void destroy(); |
---|
| 158 | |
---|
[2] | 159 | public: |
---|
| 160 | TComPrediction(); |
---|
| 161 | virtual ~TComPrediction(); |
---|
[1200] | 162 | |
---|
| 163 | Void initTempBuff(ChromaFormat chromaFormatIDC); |
---|
| 164 | |
---|
| 165 | ChromaFormat getChromaFormat() const { return m_cYuvPredTemp.getChromaFormat(); } |
---|
| 166 | |
---|
[2] | 167 | // inter |
---|
[608] | 168 | Void motionCompensation ( TComDataCU* pcCU, TComYuv* pcYuvPred, RefPicList eRefPicList = REF_PIC_LIST_X, Int iPartIdx = -1 ); |
---|
[1200] | 169 | |
---|
[2] | 170 | // motion vector prediction |
---|
[608] | 171 | Void getMvPredAMVP ( TComDataCU* pcCU, UInt uiPartIdx, UInt uiPartAddr, RefPicList eRefPicList, TComMv& rcMvPred ); |
---|
[1200] | 172 | |
---|
[2] | 173 | // Angular Intra |
---|
[1200] | 174 | Void predIntraAng ( const ComponentID compID, UInt uiDirMode, Pel *piOrg /* Will be null for decoding */, UInt uiOrgStride, Pel* piPred, UInt uiStride, TComTU &rTu, Bool bAbove, Bool bLeft, const Bool bUseFilteredPredSamples, const Bool bUseLosslessDPCM = false ); |
---|
| 175 | |
---|
[608] | 176 | #if H_3D_DIM |
---|
| 177 | // Depth intra |
---|
[833] | 178 | Void predIntraLumaDepth ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiIntraMode, Pel* piPred, UInt uiStride, Int iWidth, Int iHeight, Bool bFastEnc = false |
---|
| 179 | , TComWedgelet* dmm4Segmentation = NULL |
---|
| 180 | ); |
---|
[608] | 181 | #if H_3D_DIM_SDC |
---|
| 182 | Void analyzeSegmentsSDC ( Pel* pOrig, UInt uiStride, UInt uiSize, Pel* rpSegMeans, UInt uiNumSegments, Bool* pMask, UInt uiMaskStride |
---|
| 183 | ,UInt uiIntraMode |
---|
| 184 | ,Bool orgDC=false |
---|
| 185 | ); |
---|
| 186 | #endif |
---|
| 187 | #endif |
---|
[833] | 188 | |
---|
| 189 | #if H_3D_DBBP |
---|
[1179] | 190 | PartSize getPartitionSizeFromDepth(Pel* pDepthPels, UInt uiDepthStride, UInt uiSize, TComDataCU*& pcCU); |
---|
| 191 | Bool getSegmentMaskFromDepth( Pel* pDepthPels, UInt uiDepthStride, UInt uiWidth, UInt uiHeight, Bool* pMask, TComDataCU*& pcCU); |
---|
[1039] | 192 | Void combineSegmentsWithMask( TComYuv* pInYuv[2], TComYuv* pOutYuv, Bool* pMask, UInt uiWidth, UInt uiHeight, UInt uiPartAddr, UInt partSize ); |
---|
[833] | 193 | #endif |
---|
[608] | 194 | |
---|
[1200] | 195 | Pel predIntraGetPredValDC ( const Pel* pSrc, Int iSrcStride, UInt iWidth, UInt iHeight, Bool bAbove, Bool bLeft ); |
---|
[56] | 196 | |
---|
[1200] | 197 | Pel* getPredictorPtr ( const ComponentID compID, const Bool bUseFilteredPredictions ) |
---|
| 198 | { |
---|
| 199 | return m_piYuvExt[compID][bUseFilteredPredictions?PRED_BUF_FILTERED:PRED_BUF_UNFILTERED]; |
---|
| 200 | } |
---|
| 201 | |
---|
| 202 | // This function is actually still in TComPattern.cpp |
---|
| 203 | /// set parameters from CU data for accessing intra data |
---|
| 204 | Void initIntraPatternChType ( TComTU &rTu, |
---|
| 205 | Bool& bAbove, |
---|
| 206 | Bool& bLeft, |
---|
| 207 | const ComponentID compID, const Bool bFilterRefSamples |
---|
| 208 | DEBUG_STRING_FN_DECLARE(sDebug) |
---|
| 209 | ); |
---|
| 210 | |
---|
| 211 | static Bool filteringIntraReferenceSamples(const ComponentID compID, UInt uiDirMode, UInt uiTuChWidth, UInt uiTuChHeight, const ChromaFormat chFmt, const Bool intraReferenceSmoothingDisabled); |
---|
| 212 | |
---|
| 213 | static Bool UseDPCMForFirstPassIntraEstimation(TComTU &rTu, const UInt uiDirMode); |
---|
[2] | 214 | }; |
---|
| 215 | |
---|
[56] | 216 | //! \} |
---|
[2] | 217 | |
---|
| 218 | #endif // __TCOMPREDICTION__ |
---|