[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 |
---|
[56] | 4 | * granted under this license. |
---|
[5] | 5 | * |
---|
[872] | 6 | * Copyright (c) 2010-2014, 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 TEncSbac.h |
---|
| 35 | \brief Context-adaptive entropy encoder class (header) |
---|
| 36 | */ |
---|
| 37 | |
---|
| 38 | #ifndef __TENCSBAC__ |
---|
| 39 | #define __TENCSBAC__ |
---|
| 40 | |
---|
| 41 | #if _MSC_VER > 1000 |
---|
| 42 | #pragma once |
---|
| 43 | #endif // _MSC_VER > 1000 |
---|
| 44 | |
---|
[56] | 45 | #include "TLibCommon/TComBitStream.h" |
---|
| 46 | #include "TLibCommon/ContextTables.h" |
---|
| 47 | #include "TLibCommon/ContextModel.h" |
---|
| 48 | #include "TLibCommon/ContextModel3DBuffer.h" |
---|
[2] | 49 | #include "TEncEntropy.h" |
---|
| 50 | #include "TEncBinCoder.h" |
---|
| 51 | #include "TEncBinCoderCABAC.h" |
---|
[56] | 52 | #if FAST_BIT_EST |
---|
| 53 | #include "TEncBinCoderCABACCounter.h" |
---|
| 54 | #endif |
---|
[2] | 55 | |
---|
| 56 | class TEncTop; |
---|
| 57 | |
---|
[56] | 58 | //! \ingroup TLibEncoder |
---|
| 59 | //! \{ |
---|
| 60 | |
---|
[2] | 61 | // ==================================================================================================================== |
---|
| 62 | // Class definition |
---|
| 63 | // ==================================================================================================================== |
---|
| 64 | |
---|
| 65 | /// SBAC encoder class |
---|
| 66 | class TEncSbac : public TEncEntropyIf |
---|
| 67 | { |
---|
| 68 | public: |
---|
| 69 | TEncSbac(); |
---|
| 70 | virtual ~TEncSbac(); |
---|
| 71 | |
---|
| 72 | Void init ( TEncBinIf* p ) { m_pcBinIf = p; } |
---|
| 73 | Void uninit () { m_pcBinIf = 0; } |
---|
[608] | 74 | |
---|
[2] | 75 | // Virtual list |
---|
| 76 | Void resetEntropy (); |
---|
[56] | 77 | Void determineCabacInitIdx (); |
---|
[2] | 78 | Void setBitstream ( TComBitIf* p ) { m_pcBitIf = p; m_pcBinIf->init( p ); } |
---|
| 79 | Void setSlice ( TComSlice* p ) { m_pcSlice = p; } |
---|
| 80 | // SBAC RD |
---|
| 81 | Void resetCoeffCost () { m_uiCoeffCost = 0; } |
---|
| 82 | UInt getCoeffCost () { return m_uiCoeffCost; } |
---|
| 83 | |
---|
| 84 | Void load ( TEncSbac* pScr ); |
---|
[56] | 85 | Void loadIntraDirModeLuma ( TEncSbac* pScr ); |
---|
[608] | 86 | #if H_3D_DIM |
---|
| 87 | Void loadIntraDepthMode ( TEncSbac* pScr ); |
---|
[443] | 88 | #endif |
---|
[2] | 89 | Void store ( TEncSbac* pDest ); |
---|
[56] | 90 | Void loadContexts ( TEncSbac* pScr ); |
---|
[2] | 91 | Void resetBits () { m_pcBinIf->resetBits(); m_pcBitIf->resetBits(); } |
---|
| 92 | UInt getNumberOfWrittenBits () { return m_pcBinIf->getNumWrittenBits(); } |
---|
| 93 | //--SBAC RD |
---|
[56] | 94 | |
---|
[77] | 95 | Void codeVPS ( TComVPS* pcVPS ); |
---|
[608] | 96 | #if !H_3D |
---|
| 97 | Void codeSPS ( TComSPS* pcSPS ); |
---|
[42] | 98 | #else |
---|
[608] | 99 | Void codeSPS ( TComSPS* pcSPS, Int viewIndex, Bool depthFlag ); |
---|
[42] | 100 | #endif |
---|
[2] | 101 | Void codePPS ( TComPPS* pcPPS ); |
---|
| 102 | Void codeSliceHeader ( TComSlice* pcSlice ); |
---|
[56] | 103 | Void codeTilesWPPEntryPoint( TComSlice* pSlice ); |
---|
[2] | 104 | Void codeTerminatingBit ( UInt uilsLast ); |
---|
| 105 | Void codeSliceFinish (); |
---|
[443] | 106 | Void codeSaoMaxUvlc ( UInt code, UInt maxSymbol ); |
---|
[608] | 107 | Void codeSaoMerge ( UInt uiCode ); |
---|
[443] | 108 | Void codeSaoTypeIdx ( UInt uiCode); |
---|
| 109 | Void codeSaoUflc ( UInt uiLength, UInt uiCode ); |
---|
| 110 | Void codeSAOSign ( UInt uiCode); //<! code SAO offset sign |
---|
[608] | 111 | Void codeScalingList ( TComScalingList* /*scalingList*/ ){ assert (0); return;}; |
---|
[2] | 112 | |
---|
[872] | 113 | Void codeSAOOffsetParam(Int compIdx, SAOOffset& ctbParam, Bool sliceEnabled); |
---|
| 114 | Void codeSAOBlkParam(SAOBlkParam& saoBlkParam |
---|
| 115 | , Bool* sliceEnabled |
---|
| 116 | , Bool leftMergeAvail |
---|
| 117 | , Bool aboveMergeAvail |
---|
| 118 | , Bool onlyEstMergeInfo = false |
---|
| 119 | ); |
---|
| 120 | |
---|
[2] | 121 | private: |
---|
| 122 | Void xWriteUnarySymbol ( UInt uiSymbol, ContextModel* pcSCModel, Int iOffset ); |
---|
| 123 | Void xWriteUnaryMaxSymbol ( UInt uiSymbol, ContextModel* pcSCModel, Int iOffset, UInt uiMaxSymbol ); |
---|
| 124 | Void xWriteEpExGolomb ( UInt uiSymbol, UInt uiCount ); |
---|
[608] | 125 | Void xWriteCoefRemainExGolomb ( UInt symbol, UInt &rParam ); |
---|
[773] | 126 | #if H_3D_DIM |
---|
[56] | 127 | Void xWriteExGolombLevel ( UInt uiSymbol, ContextModel& rcSCModel ); |
---|
[724] | 128 | Void xCodeDimDeltaDC ( Pel valDeltaDC, UInt uiNumSeg ); |
---|
[608] | 129 | #if H_3D_DIM_DMM |
---|
| 130 | Void xCodeDmm1WedgeIdx ( UInt uiTabIdx, Int iNumBit ); |
---|
[5] | 131 | #endif |
---|
[608] | 132 | #if H_3D_DIM_SDC |
---|
| 133 | Void xCodeSDCResidualData ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiSegment ); |
---|
[2] | 134 | #endif |
---|
[100] | 135 | #endif |
---|
[608] | 136 | |
---|
| 137 | Void xCopyFrom ( TEncSbac* pSrc ); |
---|
| 138 | Void xCopyContextsFrom ( TEncSbac* pSrc ); |
---|
| 139 | |
---|
| 140 | Void codeDFFlag( UInt /*uiCode*/, const Char* /*pSymbolName*/ ) {printf("Not supported in codeDFFlag()\n"); assert(0); exit(1);}; |
---|
| 141 | Void codeDFSvlc( Int /*iCode*/, const Char* /*pSymbolName*/ ) {printf("Not supported in codeDFSvlc()\n"); assert(0); exit(1);}; |
---|
[56] | 142 | |
---|
[2] | 143 | protected: |
---|
| 144 | TComBitIf* m_pcBitIf; |
---|
| 145 | TComSlice* m_pcSlice; |
---|
| 146 | TEncBinIf* m_pcBinIf; |
---|
| 147 | //SBAC RD |
---|
| 148 | UInt m_uiCoeffCost; |
---|
[608] | 149 | |
---|
[2] | 150 | //--Adaptive loop filter |
---|
[56] | 151 | |
---|
| 152 | public: |
---|
[608] | 153 | Void codeCUTransquantBypassFlag( TComDataCU* pcCU, UInt uiAbsPartIdx ); |
---|
[2] | 154 | Void codeSkipFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx ); |
---|
[983] | 155 | #if MTK_SINGLE_DEPTH_MODE_I0095 |
---|
| 156 | Void codeSingleDepthMode( TComDataCU* pcCU, UInt uiAbsPartIdx ); |
---|
| 157 | #endif |
---|
[2] | 158 | Void codeMergeFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx ); |
---|
| 159 | Void codeMergeIndex ( TComDataCU* pcCU, UInt uiAbsPartIdx ); |
---|
[608] | 160 | #if H_3D_ARP |
---|
| 161 | Void codeARPW ( TComDataCU* pcCU, UInt uiAbsPartIdx ); |
---|
[5] | 162 | #endif |
---|
[608] | 163 | #if H_3D_IC |
---|
| 164 | Void codeICFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx ); |
---|
[443] | 165 | #endif |
---|
[655] | 166 | #if H_3D_INTER_SDC |
---|
[833] | 167 | Void codeDeltaDC ( TComDataCU* pcCU, UInt absPartIdx ); |
---|
| 168 | Void codeSDCFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx ); |
---|
[608] | 169 | #endif |
---|
[833] | 170 | #if H_3D_DBBP |
---|
| 171 | Void codeDBBPFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx ); |
---|
| 172 | #endif |
---|
[2] | 173 | Void codeSplitFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
| 174 | Void codeMVPIdx ( TComDataCU* pcCU, UInt uiAbsPartIdx, RefPicList eRefList ); |
---|
| 175 | |
---|
| 176 | Void codePartSize ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
| 177 | Void codePredMode ( TComDataCU* pcCU, UInt uiAbsPartIdx ); |
---|
[608] | 178 | Void codeIPCMInfo ( TComDataCU* pcCU, UInt uiAbsPartIdx ); |
---|
[2] | 179 | Void codeTransformSubdivFlag ( UInt uiSymbol, UInt uiCtx ); |
---|
| 180 | Void codeQtCbf ( TComDataCU* pcCU, UInt uiAbsPartIdx, TextType eType, UInt uiTrDepth ); |
---|
| 181 | Void codeQtRootCbf ( TComDataCU* pcCU, UInt uiAbsPartIdx ); |
---|
[608] | 182 | Void codeQtCbfZero ( TComDataCU* pcCU, TextType eType, UInt uiTrDepth ); |
---|
| 183 | Void codeQtRootCbfZero ( TComDataCU* pcCU ); |
---|
| 184 | Void codeIntraDirLumaAng ( TComDataCU* pcCU, UInt absPartIdx, Bool isMultiple); |
---|
[2] | 185 | |
---|
| 186 | Void codeIntraDirChroma ( TComDataCU* pcCU, UInt uiAbsPartIdx ); |
---|
[608] | 187 | |
---|
| 188 | #if H_3D_DIM |
---|
| 189 | Void codeIntraDepth ( TComDataCU* pcCU, UInt absPartIdx ); |
---|
| 190 | Void codeIntraDepthMode ( TComDataCU* pcCU, UInt absPartIdx ); |
---|
| 191 | #endif |
---|
| 192 | |
---|
[2] | 193 | Void codeInterDir ( TComDataCU* pcCU, UInt uiAbsPartIdx ); |
---|
| 194 | Void codeRefFrmIdx ( TComDataCU* pcCU, UInt uiAbsPartIdx, RefPicList eRefList ); |
---|
| 195 | Void codeMvd ( TComDataCU* pcCU, UInt uiAbsPartIdx, RefPicList eRefList ); |
---|
| 196 | |
---|
| 197 | Void codeDeltaQP ( TComDataCU* pcCU, UInt uiAbsPartIdx ); |
---|
| 198 | |
---|
[56] | 199 | Void codeLastSignificantXY ( UInt uiPosX, UInt uiPosY, Int width, Int height, TextType eTType, UInt uiScanIdx ); |
---|
| 200 | Void codeCoeffNxN ( TComDataCU* pcCU, TCoeff* pcCoef, UInt uiAbsPartIdx, UInt uiWidth, UInt uiHeight, UInt uiDepth, TextType eTType ); |
---|
[608] | 201 | void codeTransformSkipFlags ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt width, UInt height, TextType eTType ); |
---|
| 202 | |
---|
[2] | 203 | // ------------------------------------------------------------------------------------------------------------------- |
---|
| 204 | // for RD-optimizatioon |
---|
| 205 | // ------------------------------------------------------------------------------------------------------------------- |
---|
| 206 | |
---|
[56] | 207 | Void estBit (estBitsSbacStruct* pcEstBitsSbac, Int width, Int height, TextType eTType); |
---|
[608] | 208 | Void estCBFBit ( estBitsSbacStruct* pcEstBitsSbac ); |
---|
| 209 | Void estSignificantCoeffGroupMapBit( estBitsSbacStruct* pcEstBitsSbac, TextType eTType ); |
---|
[56] | 210 | Void estSignificantMapBit ( estBitsSbacStruct* pcEstBitsSbac, Int width, Int height, TextType eTType ); |
---|
[608] | 211 | Void estSignificantCoefficientsBit ( estBitsSbacStruct* pcEstBitsSbac, TextType eTType ); |
---|
[2] | 212 | |
---|
[56] | 213 | Void updateContextTables ( SliceType eSliceType, Int iQp, Bool bExecuteFinish=true ); |
---|
| 214 | Void updateContextTables ( SliceType eSliceType, Int iQp ) { this->updateContextTables( eSliceType, iQp, true); }; |
---|
[2] | 215 | |
---|
| 216 | TEncBinIf* getEncBinIf() { return m_pcBinIf; } |
---|
| 217 | private: |
---|
| 218 | UInt m_uiLastQp; |
---|
[56] | 219 | |
---|
| 220 | ContextModel m_contextModels[MAX_NUM_CTX_MOD]; |
---|
| 221 | Int m_numContextModels; |
---|
[2] | 222 | ContextModel3DBuffer m_cCUSplitFlagSCModel; |
---|
| 223 | ContextModel3DBuffer m_cCUSkipFlagSCModel; |
---|
[983] | 224 | #if MTK_SINGLE_DEPTH_MODE_I0095 |
---|
| 225 | ContextModel3DBuffer m_cCUSingleDepthFlagSCModel; |
---|
| 226 | ContextModel3DBuffer m_cSingleDepthValueSCModel; |
---|
| 227 | #endif |
---|
[2] | 228 | ContextModel3DBuffer m_cCUMergeFlagExtSCModel; |
---|
| 229 | ContextModel3DBuffer m_cCUMergeIdxExtSCModel; |
---|
[608] | 230 | #if H_3D_ARP |
---|
| 231 | ContextModel3DBuffer m_cCUPUARPWSCModel; |
---|
[56] | 232 | #endif |
---|
[608] | 233 | #if H_3D_IC |
---|
| 234 | ContextModel3DBuffer m_cCUICFlagSCModel; |
---|
[443] | 235 | #endif |
---|
[2] | 236 | ContextModel3DBuffer m_cCUPartSizeSCModel; |
---|
| 237 | ContextModel3DBuffer m_cCUPredModeSCModel; |
---|
| 238 | ContextModel3DBuffer m_cCUIntraPredSCModel; |
---|
| 239 | ContextModel3DBuffer m_cCUChromaPredSCModel; |
---|
| 240 | ContextModel3DBuffer m_cCUDeltaQpSCModel; |
---|
| 241 | ContextModel3DBuffer m_cCUInterDirSCModel; |
---|
| 242 | ContextModel3DBuffer m_cCURefPicSCModel; |
---|
| 243 | ContextModel3DBuffer m_cCUMvdSCModel; |
---|
| 244 | ContextModel3DBuffer m_cCUQtCbfSCModel; |
---|
| 245 | ContextModel3DBuffer m_cCUTransSubdivFlagSCModel; |
---|
| 246 | ContextModel3DBuffer m_cCUQtRootCbfSCModel; |
---|
| 247 | |
---|
[56] | 248 | ContextModel3DBuffer m_cCUSigCoeffGroupSCModel; |
---|
[2] | 249 | ContextModel3DBuffer m_cCUSigSCModel; |
---|
| 250 | ContextModel3DBuffer m_cCuCtxLastX; |
---|
| 251 | ContextModel3DBuffer m_cCuCtxLastY; |
---|
| 252 | ContextModel3DBuffer m_cCUOneSCModel; |
---|
| 253 | ContextModel3DBuffer m_cCUAbsSCModel; |
---|
| 254 | |
---|
| 255 | ContextModel3DBuffer m_cMVPIdxSCModel; |
---|
| 256 | |
---|
[443] | 257 | ContextModel3DBuffer m_cSaoMergeSCModel; |
---|
| 258 | ContextModel3DBuffer m_cSaoTypeIdxSCModel; |
---|
[608] | 259 | ContextModel3DBuffer m_cTransformSkipSCModel; |
---|
| 260 | ContextModel3DBuffer m_CUTransquantBypassFlagSCModel; |
---|
[56] | 261 | |
---|
[608] | 262 | #if H_3D_DIM |
---|
| 263 | ContextModel3DBuffer m_cDepthIntraModeSCModel; |
---|
| 264 | ContextModel3DBuffer m_cDdcFlagSCModel; |
---|
| 265 | ContextModel3DBuffer m_cDdcDataSCModel; |
---|
[833] | 266 | ContextModel3DBuffer m_cAngleFlagSCModel; |
---|
[608] | 267 | #if H_3D_DIM_SDC |
---|
| 268 | ContextModel3DBuffer m_cSDCResidualFlagSCModel; |
---|
| 269 | ContextModel3DBuffer m_cSDCResidualSCModel; |
---|
[100] | 270 | #endif |
---|
[443] | 271 | #endif |
---|
[884] | 272 | #if H_3D_DIM_SDC |
---|
[833] | 273 | ContextModel3DBuffer m_cSDCFlagSCModel; |
---|
| 274 | #endif |
---|
| 275 | #if H_3D_DBBP |
---|
| 276 | ContextModel3DBuffer m_cDBBPFlagSCModel; |
---|
| 277 | #endif |
---|
[2] | 278 | }; |
---|
| 279 | |
---|
[56] | 280 | //! \} |
---|
| 281 | |
---|
[2] | 282 | #endif // !defined(AFX_TENCSBAC_H__DDA7CDC4_EDE3_4015_9D32_2156249C82AA__INCLUDED_) |
---|