| [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 TEncEntropy.h |
|---|
| 35 | \brief entropy encoder class (header) |
|---|
| 36 | */ |
|---|
| 37 | |
|---|
| 38 | #ifndef __TENCENTROPY__ |
|---|
| 39 | #define __TENCENTROPY__ |
|---|
| 40 | |
|---|
| [56] | 41 | #include "TLibCommon/TComSlice.h" |
|---|
| 42 | #include "TLibCommon/TComDataCU.h" |
|---|
| 43 | #include "TLibCommon/TComBitStream.h" |
|---|
| 44 | #include "TLibCommon/ContextModel.h" |
|---|
| 45 | #include "TLibCommon/TComPic.h" |
|---|
| 46 | #include "TLibCommon/TComTrQuant.h" |
|---|
| 47 | #include "TLibCommon/TComSampleAdaptiveOffset.h" |
|---|
| [1313] | 48 | #include "TLibCommon/TComChromaFormat.h" |
|---|
| [56] | 49 | |
|---|
| [2] | 50 | class TEncSbac; |
|---|
| 51 | class TEncCavlc; |
|---|
| 52 | class SEI; |
|---|
| 53 | |
|---|
| 54 | // ==================================================================================================================== |
|---|
| 55 | // Class definition |
|---|
| 56 | // ==================================================================================================================== |
|---|
| 57 | |
|---|
| 58 | /// entropy encoder pure class |
|---|
| 59 | class TEncEntropyIf |
|---|
| 60 | { |
|---|
| 61 | public: |
|---|
| [1313] | 62 | virtual Void resetEntropy (const TComSlice *pSlice) = 0; |
|---|
| 63 | virtual SliceType determineCabacInitIdx (const TComSlice *pSlice) = 0; |
|---|
| [2] | 64 | virtual Void setBitstream ( TComBitIf* p ) = 0; |
|---|
| 65 | virtual Void resetBits () = 0; |
|---|
| 66 | virtual UInt getNumberOfWrittenBits() = 0; |
|---|
| [56] | 67 | |
|---|
| [1313] | 68 | virtual Void codeVPS ( const TComVPS* pcVPS ) = 0; |
|---|
| 69 | virtual Void codeSPS ( const TComSPS* pcSPS ) = 0; |
|---|
| 70 | virtual Void codePPS ( const TComPPS* pcPPS ) = 0; |
|---|
| [2] | 71 | virtual Void codeSliceHeader ( TComSlice* pcSlice ) = 0; |
|---|
| [56] | 72 | |
|---|
| 73 | virtual Void codeTilesWPPEntryPoint ( TComSlice* pSlice ) = 0; |
|---|
| [2] | 74 | virtual Void codeTerminatingBit ( UInt uilsLast ) = 0; |
|---|
| 75 | virtual Void codeSliceFinish () = 0; |
|---|
| [1313] | 76 | virtual Void codeMVPIdx ( TComDataCU* pcCU, UInt uiAbsPartIdx, RefPicList eRefList ) = 0; |
|---|
| 77 | |
|---|
| [2] | 78 | public: |
|---|
| [608] | 79 | virtual Void codeCUTransquantBypassFlag( TComDataCU* pcCU, UInt uiAbsPartIdx ) = 0; |
|---|
| [2] | 80 | virtual Void codeSkipFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx ) = 0; |
|---|
| [1313] | 81 | #if NH_3D_DIS |
|---|
| [1179] | 82 | virtual Void codeDIS ( TComDataCU* pcCU, UInt uiAbsPartIdx ) = 0; |
|---|
| [1039] | 83 | #endif |
|---|
| [2] | 84 | virtual Void codeMergeFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx ) = 0; |
|---|
| 85 | virtual Void codeMergeIndex ( TComDataCU* pcCU, UInt uiAbsPartIdx ) = 0; |
|---|
| [1313] | 86 | #if NH_3D_DMM || NH_3D_SDC_INTRA || NH_3D_SDC_INTER |
|---|
| 87 | virtual Void codeDeltaDC ( TComDataCU* pcCU, UInt uiAbsPartIdx ) = 0; |
|---|
| 88 | #endif |
|---|
| 89 | #if NH_3D_ARP |
|---|
| [608] | 90 | virtual Void codeARPW ( TComDataCU* pcCU, UInt uiAbsPartIdx ) = 0; |
|---|
| [5] | 91 | #endif |
|---|
| [1313] | 92 | #if NH_3D_IC |
|---|
| [608] | 93 | virtual Void codeICFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx ) = 0; |
|---|
| [443] | 94 | #endif |
|---|
| [1313] | 95 | #if NH_3D_SDC_INTRA || NH_3D_SDC_INTER |
|---|
| [833] | 96 | virtual Void codeSDCFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx ) = 0; |
|---|
| [608] | 97 | #endif |
|---|
| [1313] | 98 | #if NH_3D_DBBP |
|---|
| [833] | 99 | virtual Void codeDBBPFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx ) = 0; |
|---|
| 100 | #endif |
|---|
| [2] | 101 | virtual Void codeSplitFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ) = 0; |
|---|
| [1313] | 102 | |
|---|
| [2] | 103 | virtual Void codePartSize ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ) = 0; |
|---|
| 104 | virtual Void codePredMode ( TComDataCU* pcCU, UInt uiAbsPartIdx ) = 0; |
|---|
| [1313] | 105 | |
|---|
| [608] | 106 | virtual Void codeIPCMInfo ( TComDataCU* pcCU, UInt uiAbsPartIdx ) = 0; |
|---|
| [56] | 107 | |
|---|
| [2] | 108 | virtual Void codeTransformSubdivFlag( UInt uiSymbol, UInt uiCtx ) = 0; |
|---|
| [1313] | 109 | virtual Void codeQtCbf ( TComTU &rTu, const ComponentID compID, const Bool lowestLevel ) = 0; |
|---|
| [2] | 110 | virtual Void codeQtRootCbf ( TComDataCU* pcCU, UInt uiAbsPartIdx ) = 0; |
|---|
| [1313] | 111 | virtual Void codeQtCbfZero ( TComTU &rTu, const ChannelType chType ) = 0; |
|---|
| 112 | virtual Void codeQtRootCbfZero ( ) = 0; |
|---|
| [608] | 113 | virtual Void codeIntraDirLumaAng( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool isMultiplePU ) = 0; |
|---|
| [1313] | 114 | |
|---|
| [2] | 115 | virtual Void codeIntraDirChroma( TComDataCU* pcCU, UInt uiAbsPartIdx ) = 0; |
|---|
| 116 | virtual Void codeInterDir ( TComDataCU* pcCU, UInt uiAbsPartIdx ) = 0; |
|---|
| 117 | virtual Void codeRefFrmIdx ( TComDataCU* pcCU, UInt uiAbsPartIdx, RefPicList eRefList ) = 0; |
|---|
| 118 | virtual Void codeMvd ( TComDataCU* pcCU, UInt uiAbsPartIdx, RefPicList eRefList ) = 0; |
|---|
| [1313] | 119 | |
|---|
| 120 | virtual Void codeCrossComponentPrediction( TComTU &rTu, ComponentID compID ) = 0; |
|---|
| 121 | |
|---|
| [2] | 122 | virtual Void codeDeltaQP ( TComDataCU* pcCU, UInt uiAbsPartIdx ) = 0; |
|---|
| [1313] | 123 | virtual Void codeChromaQpAdjustment( TComDataCU* pcCU, UInt uiAbsPartIdx ) = 0; |
|---|
| 124 | virtual Void codeCoeffNxN ( TComTU &rTu, TCoeff* pcCoef, const ComponentID compID ) = 0; |
|---|
| 125 | virtual Void codeTransformSkipFlags ( TComTU &rTu, ComponentID component ) = 0; |
|---|
| 126 | virtual Void codeSAOBlkParam (SAOBlkParam& saoBlkParam, const BitDepths &bitDepths, Bool* sliceEnabled, Bool leftMergeAvail, Bool aboveMergeAvail, Bool onlyEstMergeInfo = false) =0; |
|---|
| 127 | virtual Void estBit (estBitsSbacStruct* pcEstBitsSbac, Int width, Int height, ChannelType chType) = 0; |
|---|
| [56] | 128 | |
|---|
| [1313] | 129 | virtual Void codeExplicitRdpcmMode ( TComTU &rTu, const ComponentID compID ) = 0; |
|---|
| [56] | 130 | |
|---|
| [2] | 131 | virtual ~TEncEntropyIf() {} |
|---|
| 132 | }; |
|---|
| 133 | |
|---|
| 134 | /// entropy encoder class |
|---|
| 135 | class TEncEntropy |
|---|
| 136 | { |
|---|
| 137 | public: |
|---|
| [1313] | 138 | Void setEntropyCoder ( TEncEntropyIf* e ); |
|---|
| [2] | 139 | Void setBitstream ( TComBitIf* p ) { m_pcEntropyCoderIf->setBitstream(p); } |
|---|
| 140 | Void resetBits () { m_pcEntropyCoderIf->resetBits(); } |
|---|
| [1386] | 141 | #if NH_MV |
|---|
| [1313] | 142 | UInt getNumberOfWrittenBits () { |
|---|
| 143 | D_PRINT_INDENT(g_encNumberOfWrittenBits, "NumBits: " + n2s( m_pcEntropyCoderIf->getNumberOfWrittenBits() )) |
|---|
| [1386] | 144 | return m_pcEntropyCoderIf->getNumberOfWrittenBits(); } |
|---|
| 145 | #else |
|---|
| 146 | UInt getNumberOfWrittenBits () { return m_pcEntropyCoderIf->getNumberOfWrittenBits(); } |
|---|
| [1321] | 147 | #endif |
|---|
| [1313] | 148 | Void resetEntropy (const TComSlice *pSlice) { m_pcEntropyCoderIf->resetEntropy(pSlice); } |
|---|
| 149 | SliceType determineCabacInitIdx (const TComSlice *pSlice) { return m_pcEntropyCoderIf->determineCabacInitIdx(pSlice); } |
|---|
| 150 | |
|---|
| [2] | 151 | Void encodeSliceHeader ( TComSlice* pcSlice ); |
|---|
| [56] | 152 | Void encodeTilesWPPEntryPoint( TComSlice* pSlice ); |
|---|
| [2] | 153 | Void encodeTerminatingBit ( UInt uiIsLast ); |
|---|
| 154 | Void encodeSliceFinish (); |
|---|
| 155 | TEncEntropyIf* m_pcEntropyCoderIf; |
|---|
| [1313] | 156 | |
|---|
| [2] | 157 | public: |
|---|
| [1313] | 158 | Void encodeVPS ( const TComVPS* pcVPS); |
|---|
| [2] | 159 | // SPS |
|---|
| [1313] | 160 | Void encodeSPS ( const TComSPS* pcSPS ); |
|---|
| 161 | Void encodePPS ( const TComPPS* pcPPS ); |
|---|
| [2] | 162 | Void encodeSplitFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, Bool bRD = false ); |
|---|
| [608] | 163 | Void encodeCUTransquantBypassFlag( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD = false ); |
|---|
| [2] | 164 | Void encodeSkipFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD = false ); |
|---|
| [1313] | 165 | #if NH_3D_DIS |
|---|
| [1179] | 166 | Void encodeDIS ( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD=false ); |
|---|
| [1039] | 167 | #endif |
|---|
| [1313] | 168 | Void encodePUWise ( TComDataCU* pcCU, UInt uiAbsPartIdx ); |
|---|
| [2] | 169 | Void encodeInterDirPU ( TComDataCU* pcSubCU, UInt uiAbsPartIdx ); |
|---|
| 170 | Void encodeRefFrmIdxPU ( TComDataCU* pcSubCU, UInt uiAbsPartIdx, RefPicList eRefList ); |
|---|
| 171 | Void encodeMvdPU ( TComDataCU* pcSubCU, UInt uiAbsPartIdx, RefPicList eRefList ); |
|---|
| 172 | Void encodeMVPIdxPU ( TComDataCU* pcSubCU, UInt uiAbsPartIdx, RefPicList eRefList ); |
|---|
| [608] | 173 | Void encodeMergeFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx ); |
|---|
| 174 | Void encodeMergeIndex ( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD = false ); |
|---|
| [1313] | 175 | #if NH_3D_ARP |
|---|
| [608] | 176 | Void encodeARPW ( TComDataCU* pcCU, UInt uiAbspartIdx ); |
|---|
| [443] | 177 | #endif |
|---|
| [1313] | 178 | #if NH_3D_IC |
|---|
| [608] | 179 | Void encodeICFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD = false ); |
|---|
| 180 | #endif |
|---|
| [1313] | 181 | #if NH_3D_DMM || NH_3D_SDC_INTRA || NH_3D_SDC_INTER |
|---|
| [833] | 182 | Void encodeDeltaDC ( TComDataCU* pcCU, UInt absPartIdx ); |
|---|
| [1313] | 183 | #endif |
|---|
| 184 | #if NH_3D_SDC_INTRA || NH_3D_SDC_INTER |
|---|
| [833] | 185 | Void encodeSDCFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD = false ); |
|---|
| [608] | 186 | #endif |
|---|
| [1313] | 187 | #if NH_3D_DBBP |
|---|
| [833] | 188 | Void encodeDBBPFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD = false ); |
|---|
| 189 | #endif |
|---|
| [2] | 190 | Void encodePredMode ( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD = false ); |
|---|
| 191 | Void encodePartSize ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, Bool bRD = false ); |
|---|
| [56] | 192 | Void encodeIPCMInfo ( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD = false ); |
|---|
| [1313] | 193 | Void encodePredInfo ( TComDataCU* pcCU, UInt uiAbsPartIdx ); |
|---|
| [608] | 194 | Void encodeIntraDirModeLuma ( TComDataCU* pcCU, UInt absPartIdx, Bool isMultiplePU = false ); |
|---|
| [1313] | 195 | |
|---|
| 196 | Void encodeIntraDirModeChroma( TComDataCU* pcCU, UInt uiAbsPartIdx ); |
|---|
| 197 | |
|---|
| [2] | 198 | Void encodeTransformSubdivFlag( UInt uiSymbol, UInt uiCtx ); |
|---|
| [1313] | 199 | Void encodeQtCbf ( TComTU &rTu, const ComponentID compID, const Bool lowestLevel ); |
|---|
| 200 | |
|---|
| 201 | Void encodeQtCbfZero ( TComTU &rTu, const ChannelType chType ); |
|---|
| 202 | Void encodeQtRootCbfZero ( ); |
|---|
| [2] | 203 | Void encodeQtRootCbf ( TComDataCU* pcCU, UInt uiAbsPartIdx ); |
|---|
| 204 | Void encodeQP ( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD = false ); |
|---|
| [1313] | 205 | Void encodeChromaQpAdjustment ( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD = false ); |
|---|
| [608] | 206 | |
|---|
| [1313] | 207 | Void encodeCrossComponentPrediction( TComTU &rTu, ComponentID compID ); |
|---|
| [56] | 208 | |
|---|
| [2] | 209 | private: |
|---|
| [1313] | 210 | Void xEncodeTransform ( Bool& bCodeDQP, Bool& codeChromaQpAdj, TComTU &rTu ); |
|---|
| 211 | |
|---|
| [1179] | 212 | public: |
|---|
| [1313] | 213 | Void encodeCoeff ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, Bool& bCodeDQP, Bool& codeChromaQpAdj ); |
|---|
| 214 | |
|---|
| 215 | Void encodeCoeffNxN ( TComTU &rTu, TCoeff* pcCoef, const ComponentID compID ); |
|---|
| 216 | |
|---|
| 217 | Void estimateBit ( estBitsSbacStruct* pcEstBitsSbac, Int width, Int height, ChannelType chType ); |
|---|
| 218 | |
|---|
| 219 | Void encodeSAOBlkParam(SAOBlkParam& saoBlkParam, const BitDepths &bitDepths, Bool* sliceEnabled, Bool leftMergeAvail, Bool aboveMergeAvail){m_pcEntropyCoderIf->codeSAOBlkParam(saoBlkParam, bitDepths, sliceEnabled, leftMergeAvail, aboveMergeAvail, false);} |
|---|
| 220 | |
|---|
| [56] | 221 | static Int countNonZeroCoeffs( TCoeff* pcCoef, UInt uiSize ); |
|---|
| 222 | |
|---|
| [2] | 223 | };// END CLASS DEFINITION TEncEntropy |
|---|
| 224 | |
|---|
| [56] | 225 | //! \} |
|---|
| [2] | 226 | |
|---|
| 227 | #endif // __TENCENTROPY__ |
|---|
| 228 | |
|---|