[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 |
---|
[1313] | 4 | * granted under this license. |
---|
[5] | 5 | * |
---|
[1313] | 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 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(); |
---|
[1313] | 71 | |
---|
[2] | 72 | Void init ( TEncBinIf* p ) { m_pcBinIf = p; } |
---|
| 73 | Void uninit () { m_pcBinIf = 0; } |
---|
[608] | 74 | |
---|
[2] | 75 | // Virtual list |
---|
[1313] | 76 | Void resetEntropy (const TComSlice *pSlice); |
---|
| 77 | SliceType determineCabacInitIdx (const TComSlice *pSlice); |
---|
[2] | 78 | Void setBitstream ( TComBitIf* p ) { m_pcBitIf = p; m_pcBinIf->init( p ); } |
---|
[1313] | 79 | |
---|
| 80 | Void load ( const TEncSbac* pSrc ); |
---|
| 81 | Void loadIntraDirMode ( const TEncSbac* pScr, const ChannelType chType ); |
---|
| 82 | Void store ( TEncSbac* pDest ) const; |
---|
| 83 | Void loadContexts ( const TEncSbac* pSrc ); |
---|
[2] | 84 | Void resetBits () { m_pcBinIf->resetBits(); m_pcBitIf->resetBits(); } |
---|
| 85 | UInt getNumberOfWrittenBits () { return m_pcBinIf->getNumWrittenBits(); } |
---|
| 86 | //--SBAC RD |
---|
[56] | 87 | |
---|
[1313] | 88 | Void codeVPS ( const TComVPS* pcVPS ); |
---|
| 89 | Void codeSPS ( const TComSPS* pcSPS ); |
---|
| 90 | Void codePPS ( const TComPPS* pcPPS ); |
---|
| 91 | Void codeSliceHeader ( TComSlice* pcSlice ); |
---|
| 92 | Void codeTilesWPPEntryPoint ( TComSlice* pSlice ); |
---|
| 93 | Void codeTerminatingBit ( UInt uilsLast ); |
---|
| 94 | Void codeSliceFinish (); |
---|
| 95 | Void codeSaoMaxUvlc ( UInt code, UInt maxSymbol ); |
---|
| 96 | Void codeSaoMerge ( UInt uiCode ); |
---|
| 97 | Void codeSaoTypeIdx ( UInt uiCode); |
---|
| 98 | Void codeSaoUflc ( UInt uiLength, UInt uiCode ); |
---|
| 99 | Void codeSAOSign ( UInt uiCode); //<! code SAO offset sign |
---|
[2] | 100 | |
---|
[1313] | 101 | Void codeSAOOffsetParam(ComponentID compIdx, SAOOffset& ctbParam, Bool sliceEnabled, const Int channelBitDepth); |
---|
| 102 | Void codeSAOBlkParam(SAOBlkParam& saoBlkParam, const BitDepths &bitDepths |
---|
[872] | 103 | , Bool* sliceEnabled |
---|
| 104 | , Bool leftMergeAvail |
---|
| 105 | , Bool aboveMergeAvail |
---|
| 106 | , Bool onlyEstMergeInfo = false |
---|
| 107 | ); |
---|
| 108 | |
---|
[2] | 109 | private: |
---|
| 110 | Void xWriteUnarySymbol ( UInt uiSymbol, ContextModel* pcSCModel, Int iOffset ); |
---|
| 111 | Void xWriteUnaryMaxSymbol ( UInt uiSymbol, ContextModel* pcSCModel, Int iOffset, UInt uiMaxSymbol ); |
---|
| 112 | Void xWriteEpExGolomb ( UInt uiSymbol, UInt uiCount ); |
---|
[1313] | 113 | Void xWriteCoefRemainExGolomb ( UInt symbol, UInt &rParam, const Bool useLimitedPrefixLength, const Int maxLog2TrDynamicRange ); |
---|
[56] | 114 | |
---|
[1313] | 115 | |
---|
| 116 | Void xCopyFrom ( const TEncSbac* pSrc ); |
---|
| 117 | Void xCopyContextsFrom ( const TEncSbac* pSrc ); |
---|
| 118 | |
---|
[2] | 119 | protected: |
---|
| 120 | TComBitIf* m_pcBitIf; |
---|
| 121 | TEncBinIf* m_pcBinIf; |
---|
[608] | 122 | |
---|
[2] | 123 | //--Adaptive loop filter |
---|
[1313] | 124 | |
---|
[56] | 125 | public: |
---|
[608] | 126 | Void codeCUTransquantBypassFlag( TComDataCU* pcCU, UInt uiAbsPartIdx ); |
---|
[2] | 127 | Void codeSkipFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx ); |
---|
| 128 | Void codeMergeFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx ); |
---|
| 129 | Void codeMergeIndex ( TComDataCU* pcCU, UInt uiAbsPartIdx ); |
---|
| 130 | Void codeSplitFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
| 131 | Void codeMVPIdx ( TComDataCU* pcCU, UInt uiAbsPartIdx, RefPicList eRefList ); |
---|
[1313] | 132 | |
---|
[2] | 133 | Void codePartSize ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
| 134 | Void codePredMode ( TComDataCU* pcCU, UInt uiAbsPartIdx ); |
---|
[608] | 135 | Void codeIPCMInfo ( TComDataCU* pcCU, UInt uiAbsPartIdx ); |
---|
[2] | 136 | Void codeTransformSubdivFlag ( UInt uiSymbol, UInt uiCtx ); |
---|
[1313] | 137 | Void codeQtCbf ( TComTU & rTu, const ComponentID compID, const Bool lowestLevel ); |
---|
[2] | 138 | Void codeQtRootCbf ( TComDataCU* pcCU, UInt uiAbsPartIdx ); |
---|
[1313] | 139 | Void codeQtCbfZero ( TComTU &rTu, const ChannelType chType ); |
---|
| 140 | Void codeQtRootCbfZero ( ); |
---|
[608] | 141 | Void codeIntraDirLumaAng ( TComDataCU* pcCU, UInt absPartIdx, Bool isMultiple); |
---|
[2] | 142 | Void codeIntraDirChroma ( TComDataCU* pcCU, UInt uiAbsPartIdx ); |
---|
| 143 | Void codeInterDir ( TComDataCU* pcCU, UInt uiAbsPartIdx ); |
---|
| 144 | Void codeRefFrmIdx ( TComDataCU* pcCU, UInt uiAbsPartIdx, RefPicList eRefList ); |
---|
| 145 | Void codeMvd ( TComDataCU* pcCU, UInt uiAbsPartIdx, RefPicList eRefList ); |
---|
[1313] | 146 | |
---|
| 147 | Void codeCrossComponentPrediction( TComTU &rTu, ComponentID compID ); |
---|
| 148 | |
---|
[2] | 149 | Void codeDeltaQP ( TComDataCU* pcCU, UInt uiAbsPartIdx ); |
---|
[1313] | 150 | Void codeChromaQpAdjustment ( TComDataCU* cu, UInt absPartIdx ); |
---|
[608] | 151 | |
---|
[1313] | 152 | Void codeLastSignificantXY ( UInt uiPosX, UInt uiPosY, Int width, Int height, ComponentID component, UInt uiScanIdx ); |
---|
| 153 | Void codeCoeffNxN ( TComTU &rTu, TCoeff* pcCoef, const ComponentID compID ); |
---|
| 154 | Void codeTransformSkipFlags ( TComTU &rTu, ComponentID component ); |
---|
| 155 | |
---|
[2] | 156 | // ------------------------------------------------------------------------------------------------------------------- |
---|
| 157 | // for RD-optimizatioon |
---|
| 158 | // ------------------------------------------------------------------------------------------------------------------- |
---|
[1313] | 159 | |
---|
| 160 | Void estBit (estBitsSbacStruct* pcEstBitsSbac, Int width, Int height, ChannelType chType); |
---|
[608] | 161 | Void estCBFBit ( estBitsSbacStruct* pcEstBitsSbac ); |
---|
[1313] | 162 | Void estSignificantCoeffGroupMapBit( estBitsSbacStruct* pcEstBitsSbac, ChannelType chType ); |
---|
| 163 | Void estSignificantMapBit ( estBitsSbacStruct* pcEstBitsSbac, Int width, Int height, ChannelType chType ); |
---|
| 164 | Void estLastSignificantPositionBit ( estBitsSbacStruct* pcEstBitsSbac, Int width, Int height, ChannelType chType ); |
---|
| 165 | Void estSignificantCoefficientsBit ( estBitsSbacStruct* pcEstBitsSbac, ChannelType chType ); |
---|
| 166 | |
---|
| 167 | Void codeExplicitRdpcmMode ( TComTU &rTu, const ComponentID compID ); |
---|
| 168 | |
---|
| 169 | |
---|
[2] | 170 | TEncBinIf* getEncBinIf() { return m_pcBinIf; } |
---|
| 171 | private: |
---|
[56] | 172 | ContextModel m_contextModels[MAX_NUM_CTX_MOD]; |
---|
| 173 | Int m_numContextModels; |
---|
[2] | 174 | ContextModel3DBuffer m_cCUSplitFlagSCModel; |
---|
| 175 | ContextModel3DBuffer m_cCUSkipFlagSCModel; |
---|
| 176 | ContextModel3DBuffer m_cCUMergeFlagExtSCModel; |
---|
| 177 | ContextModel3DBuffer m_cCUMergeIdxExtSCModel; |
---|
| 178 | ContextModel3DBuffer m_cCUPartSizeSCModel; |
---|
| 179 | ContextModel3DBuffer m_cCUPredModeSCModel; |
---|
| 180 | ContextModel3DBuffer m_cCUIntraPredSCModel; |
---|
| 181 | ContextModel3DBuffer m_cCUChromaPredSCModel; |
---|
| 182 | ContextModel3DBuffer m_cCUDeltaQpSCModel; |
---|
| 183 | ContextModel3DBuffer m_cCUInterDirSCModel; |
---|
| 184 | ContextModel3DBuffer m_cCURefPicSCModel; |
---|
| 185 | ContextModel3DBuffer m_cCUMvdSCModel; |
---|
| 186 | ContextModel3DBuffer m_cCUQtCbfSCModel; |
---|
| 187 | ContextModel3DBuffer m_cCUTransSubdivFlagSCModel; |
---|
| 188 | ContextModel3DBuffer m_cCUQtRootCbfSCModel; |
---|
[1313] | 189 | |
---|
[56] | 190 | ContextModel3DBuffer m_cCUSigCoeffGroupSCModel; |
---|
[2] | 191 | ContextModel3DBuffer m_cCUSigSCModel; |
---|
| 192 | ContextModel3DBuffer m_cCuCtxLastX; |
---|
| 193 | ContextModel3DBuffer m_cCuCtxLastY; |
---|
| 194 | ContextModel3DBuffer m_cCUOneSCModel; |
---|
| 195 | ContextModel3DBuffer m_cCUAbsSCModel; |
---|
[1313] | 196 | |
---|
[2] | 197 | ContextModel3DBuffer m_cMVPIdxSCModel; |
---|
[1313] | 198 | |
---|
[443] | 199 | ContextModel3DBuffer m_cSaoMergeSCModel; |
---|
| 200 | ContextModel3DBuffer m_cSaoTypeIdxSCModel; |
---|
[608] | 201 | ContextModel3DBuffer m_cTransformSkipSCModel; |
---|
| 202 | ContextModel3DBuffer m_CUTransquantBypassFlagSCModel; |
---|
[1313] | 203 | ContextModel3DBuffer m_explicitRdpcmFlagSCModel; |
---|
| 204 | ContextModel3DBuffer m_explicitRdpcmDirSCModel; |
---|
| 205 | ContextModel3DBuffer m_cCrossComponentPredictionSCModel; |
---|
[56] | 206 | |
---|
[1313] | 207 | ContextModel3DBuffer m_ChromaQpAdjFlagSCModel; |
---|
| 208 | ContextModel3DBuffer m_ChromaQpAdjIdcSCModel; |
---|
| 209 | |
---|
| 210 | |
---|
| 211 | UInt m_golombRiceAdaptationStatistics[RExt__GOLOMB_RICE_ADAPTATION_STATISTICS_SETS]; |
---|
[2] | 212 | }; |
---|
| 213 | |
---|
[56] | 214 | //! \} |
---|
| 215 | |
---|
[2] | 216 | #endif // !defined(AFX_TENCSBAC_H__DDA7CDC4_EDE3_4015_9D32_2156249C82AA__INCLUDED_) |
---|