[191] | 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 |
---|
| 4 | * granted under this license. |
---|
| 5 | * |
---|
| 6 | * Copyright (c) 2010-2013, ITU/ISO/IEC |
---|
| 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. |
---|
| 17 | * * Neither the name of the ITU/ISO/IEC nor the names of its contributors may |
---|
| 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 | */ |
---|
| 33 | |
---|
| 34 | /** \file TEncCu.h |
---|
| 35 | \brief Coding Unit (CU) encoder class (header) |
---|
| 36 | */ |
---|
| 37 | |
---|
| 38 | #ifndef __TENCCU__ |
---|
| 39 | #define __TENCCU__ |
---|
| 40 | |
---|
| 41 | // Include files |
---|
| 42 | #include "TLibCommon/CommonDef.h" |
---|
| 43 | #include "TLibCommon/TComYuv.h" |
---|
| 44 | #include "TLibCommon/TComPrediction.h" |
---|
| 45 | #include "TLibCommon/TComTrQuant.h" |
---|
| 46 | #include "TLibCommon/TComBitCounter.h" |
---|
| 47 | #include "TLibCommon/TComDataCU.h" |
---|
| 48 | |
---|
| 49 | #include "TEncEntropy.h" |
---|
| 50 | #include "TEncSearch.h" |
---|
| 51 | #include "TEncRateCtrl.h" |
---|
| 52 | //! \ingroup TLibEncoder |
---|
| 53 | //! \{ |
---|
| 54 | |
---|
| 55 | class TEncTop; |
---|
| 56 | class TEncSbac; |
---|
| 57 | class TEncCavlc; |
---|
| 58 | class TEncSlice; |
---|
| 59 | |
---|
| 60 | // ==================================================================================================================== |
---|
| 61 | // Class definition |
---|
| 62 | // ==================================================================================================================== |
---|
| 63 | |
---|
| 64 | /// CU encoder class |
---|
| 65 | class TEncCu |
---|
| 66 | { |
---|
| 67 | private: |
---|
| 68 | |
---|
| 69 | TComDataCU** m_ppcBestCU; ///< Best CUs in each depth |
---|
| 70 | TComDataCU** m_ppcTempCU; ///< Temporary CUs in each depth |
---|
| 71 | UChar m_uhTotalDepth; |
---|
| 72 | |
---|
| 73 | TComYuv** m_ppcPredYuvBest; ///< Best Prediction Yuv for each depth |
---|
| 74 | TComYuv** m_ppcResiYuvBest; ///< Best Residual Yuv for each depth |
---|
| 75 | TComYuv** m_ppcRecoYuvBest; ///< Best Reconstruction Yuv for each depth |
---|
| 76 | TComYuv** m_ppcPredYuvTemp; ///< Temporary Prediction Yuv for each depth |
---|
| 77 | TComYuv** m_ppcResiYuvTemp; ///< Temporary Residual Yuv for each depth |
---|
| 78 | TComYuv** m_ppcRecoYuvTemp; ///< Temporary Reconstruction Yuv for each depth |
---|
| 79 | TComYuv** m_ppcOrigYuv; ///< Original Yuv for each depth |
---|
| 80 | |
---|
| 81 | // Data : encoder control |
---|
| 82 | Bool m_bEncodeDQP; |
---|
| 83 | |
---|
| 84 | // Access channel |
---|
| 85 | TEncCfg* m_pcEncCfg; |
---|
| 86 | #if INTRA_BL |
---|
| 87 | TComPicYuv* m_pcPicYuvRecBase; ///< reconstructed base layer |
---|
| 88 | #endif |
---|
| 89 | TEncSearch* m_pcPredSearch; |
---|
| 90 | TComTrQuant* m_pcTrQuant; |
---|
| 91 | TComBitCounter* m_pcBitCounter; |
---|
| 92 | TComRdCost* m_pcRdCost; |
---|
| 93 | |
---|
| 94 | #if SVC_EXTENSION |
---|
| 95 | TEncTop** m_ppcTEncTop; |
---|
| 96 | #endif |
---|
| 97 | |
---|
| 98 | TEncEntropy* m_pcEntropyCoder; |
---|
| 99 | TEncCavlc* m_pcCavlcCoder; |
---|
| 100 | TEncSbac* m_pcSbacCoder; |
---|
| 101 | TEncBinCABAC* m_pcBinCABAC; |
---|
| 102 | |
---|
| 103 | // SBAC RD |
---|
| 104 | TEncSbac*** m_pppcRDSbacCoder; |
---|
| 105 | TEncSbac* m_pcRDGoOnSbacCoder; |
---|
| 106 | Bool m_bUseSBACRD; |
---|
| 107 | TEncRateCtrl* m_pcRateCtrl; |
---|
| 108 | #if RATE_CONTROL_LAMBDA_DOMAIN |
---|
| 109 | UInt m_LCUPredictionSAD; |
---|
| 110 | Int m_addSADDepth; |
---|
| 111 | Int m_temporalSAD; |
---|
| 112 | #endif |
---|
| 113 | public: |
---|
| 114 | /// copy parameters from encoder class |
---|
| 115 | Void init ( TEncTop* pcEncTop ); |
---|
| 116 | |
---|
| 117 | /// create internal buffers |
---|
| 118 | Void create ( UChar uhTotalDepth, UInt iMaxWidth, UInt iMaxHeight ); |
---|
| 119 | |
---|
| 120 | /// destroy internal buffers |
---|
| 121 | Void destroy (); |
---|
| 122 | |
---|
| 123 | /// CU analysis function |
---|
| 124 | Void compressCU ( TComDataCU*& rpcCU ); |
---|
| 125 | |
---|
| 126 | /// CU encoding function |
---|
| 127 | Void encodeCU ( TComDataCU* pcCU ); |
---|
| 128 | |
---|
| 129 | Void setBitCounter ( TComBitCounter* pcBitCounter ) { m_pcBitCounter = pcBitCounter; } |
---|
| 130 | #if RATE_CONTROL_LAMBDA_DOMAIN |
---|
| 131 | UInt getLCUPredictionSAD() { return m_LCUPredictionSAD; } |
---|
| 132 | #endif |
---|
| 133 | #if INTRA_BL |
---|
| 134 | Void setBaseRecPic ( TComPicYuv* p ) { m_pcPicYuvRecBase = p; } |
---|
| 135 | #endif |
---|
| 136 | protected: |
---|
| 137 | Void finishCU ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
| 138 | #if AMP_ENC_SPEEDUP |
---|
| 139 | Void xCompressCU ( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU, UInt uiDepth, PartSize eParentPartSize = SIZE_NONE ); |
---|
| 140 | #else |
---|
| 141 | Void xCompressCU ( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU, UInt uiDepth ); |
---|
| 142 | #endif |
---|
| 143 | Void xEncodeCU ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
| 144 | |
---|
| 145 | Int xComputeQP ( TComDataCU* pcCU, UInt uiDepth ); |
---|
| 146 | Void xCheckBestMode ( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU, UInt uiDepth ); |
---|
| 147 | |
---|
| 148 | Void xCheckRDCostMerge2Nx2N( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU, Bool *earlyDetectionSkipMode); |
---|
| 149 | |
---|
| 150 | #if AMP_MRG |
---|
| 151 | Void xCheckRDCostInter ( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU, PartSize ePartSize, Bool bUseMRG = false ); |
---|
| 152 | #else |
---|
| 153 | Void xCheckRDCostInter ( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU, PartSize ePartSize ); |
---|
| 154 | #endif |
---|
| 155 | Void xCheckRDCostIntra ( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU, PartSize ePartSize ); |
---|
| 156 | #if INTRA_BL |
---|
| 157 | Void xCheckRDCostIntraBL ( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU ); |
---|
| 158 | #endif |
---|
| 159 | #if ENCODER_FAST_MODE |
---|
[272] | 160 | Void xCheckRDCostILRUni ( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU, UInt refLayerId); |
---|
[191] | 161 | #endif |
---|
| 162 | Void xCheckDQP ( TComDataCU* pcCU ); |
---|
| 163 | |
---|
| 164 | Void xCheckIntraPCM ( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU ); |
---|
| 165 | Void xCopyAMVPInfo ( AMVPInfo* pSrc, AMVPInfo* pDst ); |
---|
| 166 | Void xCopyYuv2Pic (TComPic* rpcPic, UInt uiCUAddr, UInt uiAbsPartIdx, UInt uiDepth, UInt uiSrcDepth, TComDataCU* pcCU, UInt uiLPelX, UInt uiTPelY ); |
---|
| 167 | Void xCopyYuv2Tmp ( UInt uhPartUnitIdx, UInt uiDepth ); |
---|
| 168 | |
---|
| 169 | Bool getdQPFlag () { return m_bEncodeDQP; } |
---|
| 170 | Void setdQPFlag ( Bool b ) { m_bEncodeDQP = b; } |
---|
| 171 | |
---|
| 172 | #if ADAPTIVE_QP_SELECTION |
---|
| 173 | // Adaptive reconstruction level (ARL) statistics collection functions |
---|
| 174 | Void xLcuCollectARLStats(TComDataCU* rpcCU); |
---|
| 175 | Int xTuCollectARLStats(TCoeff* rpcCoeff, Int* rpcArlCoeff, Int NumCoeffInCU, Double* cSum, UInt* numSamples ); |
---|
| 176 | #endif |
---|
| 177 | |
---|
| 178 | #if AMP_ENC_SPEEDUP |
---|
| 179 | #if AMP_MRG |
---|
| 180 | Void deriveTestModeAMP (TComDataCU *&rpcBestCU, PartSize eParentPartSize, Bool &bTestAMP_Hor, Bool &bTestAMP_Ver, Bool &bTestMergeAMP_Hor, Bool &bTestMergeAMP_Ver); |
---|
| 181 | #else |
---|
| 182 | Void deriveTestModeAMP (TComDataCU *&rpcBestCU, PartSize eParentPartSize, Bool &bTestAMP_Hor, Bool &bTestAMP_Ver); |
---|
| 183 | #endif |
---|
| 184 | #endif |
---|
| 185 | |
---|
| 186 | #if SVC_EXTENSION |
---|
| 187 | TEncTop* getLayerEnc(UInt LayerId) {return m_ppcTEncTop[LayerId]; } |
---|
| 188 | #endif |
---|
| 189 | |
---|
| 190 | Void xFillPCMBuffer ( TComDataCU*& pCU, TComYuv* pOrgYuv ); |
---|
| 191 | }; |
---|
| 192 | |
---|
| 193 | //! \} |
---|
| 194 | |
---|
| 195 | #endif // __TENCMB__ |
---|