source: SHVCSoftware/trunk/source/Lib/TLibEncoder/TEncEntropy.h

Last change on this file was 713, checked in by seregin, 11 years ago

merge with SHM-6-dev

  • Property svn:eol-style set to native
File size: 11.8 KB
RevLine 
[313]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 *
[595]6 * Copyright (c) 2010-2014, ITU/ISO/IEC
[313]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     TEncEntropy.h
35    \brief    entropy encoder class (header)
36*/
37
38#ifndef __TENCENTROPY__
39#define __TENCENTROPY__
40
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"
48
49class TEncSbac;
50class TEncCavlc;
51class SEI;
[713]52#if Q0048_CGS_3D_ASYMLUT
53class TEnc3DAsymLUT;
54#endif
[313]55
56// ====================================================================================================================
57// Class definition
58// ====================================================================================================================
59
60/// entropy encoder pure class
61class TEncEntropyIf
62{
63public:
64  virtual Void  resetEntropy          ()                = 0;
65  virtual Void  determineCabacInitIdx ()                = 0;
66  virtual Void  setBitstream          ( TComBitIf* p )  = 0;
67  virtual Void  setSlice              ( TComSlice* p )  = 0;
68  virtual Void  resetBits             ()                = 0;
69  virtual Void  resetCoeffCost        ()                = 0;
70  virtual UInt  getNumberOfWrittenBits()                = 0;
71  virtual UInt  getCoeffCost          ()                = 0;
72
73  virtual Void  codeVPS                 ( TComVPS* pcVPS )                                      = 0;
74  virtual Void  codeSPS                 ( TComSPS* pcSPS )                                      = 0;
[713]75  virtual Void  codePPS                 ( TComPPS* pcPPS
76#if Q0048_CGS_3D_ASYMLUT
77    , TEnc3DAsymLUT * pc3DAsymLUT
78#endif
79    )                                      = 0;
[313]80  virtual Void  codeSliceHeader         ( TComSlice* pcSlice )                                  = 0;
81
82  virtual Void  codeTilesWPPEntryPoint  ( TComSlice* pSlice )     = 0;
[644]83#if POC_RESET_IDC_SIGNALLING
84  virtual Void  codeSliceHeaderExtn     ( TComSlice* pSlice, Int shBitsWrittenTillNow )     = 0;
85#endif
[313]86  virtual Void  codeTerminatingBit      ( UInt uilsLast )                                       = 0;
87  virtual Void  codeSliceFinish         ()                                                      = 0;
88  virtual Void codeMVPIdx ( TComDataCU* pcCU, UInt uiAbsPartIdx, RefPicList eRefList ) = 0;
89  virtual Void codeScalingList   ( TComScalingList* scalingList )      = 0;
90 
91public:
92  virtual Void codeCUTransquantBypassFlag( TComDataCU* pcCU, UInt uiAbsPartIdx ) = 0;
93  virtual Void codeSkipFlag      ( TComDataCU* pcCU, UInt uiAbsPartIdx ) = 0;
94  virtual Void codeMergeFlag     ( TComDataCU* pcCU, UInt uiAbsPartIdx ) = 0;
95  virtual Void codeMergeIndex    ( TComDataCU* pcCU, UInt uiAbsPartIdx ) = 0;
96  virtual Void codeSplitFlag     ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ) = 0;
[345]97
[313]98  virtual Void codePartSize      ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ) = 0;
99  virtual Void codePredMode      ( TComDataCU* pcCU, UInt uiAbsPartIdx ) = 0;
100 
101  virtual Void codeIPCMInfo      ( TComDataCU* pcCU, UInt uiAbsPartIdx ) = 0;
102
103  virtual Void codeTransformSubdivFlag( UInt uiSymbol, UInt uiCtx ) = 0;
104  virtual Void codeQtCbf         ( TComDataCU* pcCU, UInt uiAbsPartIdx, TextType eType, UInt uiTrDepth ) = 0;
105  virtual Void codeQtRootCbf     ( TComDataCU* pcCU, UInt uiAbsPartIdx ) = 0;
106  virtual Void codeQtCbfZero     ( TComDataCU* pcCU, TextType eType, UInt uiTrDepth ) = 0;
107  virtual Void codeQtRootCbfZero ( TComDataCU* pcCU ) = 0;
108  virtual Void codeIntraDirLumaAng( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool isMultiplePU ) = 0;
109 
110  virtual Void codeIntraDirChroma( TComDataCU* pcCU, UInt uiAbsPartIdx ) = 0;
111  virtual Void codeInterDir      ( TComDataCU* pcCU, UInt uiAbsPartIdx ) = 0;
112  virtual Void codeRefFrmIdx     ( TComDataCU* pcCU, UInt uiAbsPartIdx, RefPicList eRefList )      = 0;
113  virtual Void codeMvd           ( TComDataCU* pcCU, UInt uiAbsPartIdx, RefPicList eRefList )      = 0;
114  virtual Void codeDeltaQP       ( TComDataCU* pcCU, UInt uiAbsPartIdx ) = 0;
115  virtual Void codeCoeffNxN      ( TComDataCU* pcCU, TCoeff* pcCoef, UInt uiAbsPartIdx, UInt uiWidth, UInt uiHeight, UInt uiDepth, TextType eTType ) = 0;
116  virtual Void codeTransformSkipFlags ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt width, UInt height, TextType eTType ) = 0;
[644]117#if SVC_EXTENSION
118  virtual Void codeSAOBlkParam(SAOBlkParam& saoBlkParam, UInt* saoMaxOffsetQVal, Bool* sliceEnabled, Bool leftMergeAvail, Bool aboveMergeAvail, Bool onlyEstMergeInfo = false)    =0;
119#else
[540]120  virtual Void codeSAOBlkParam(SAOBlkParam& saoBlkParam, Bool* sliceEnabled, Bool leftMergeAvail, Bool aboveMergeAvail, Bool onlyEstMergeInfo = false)    =0;
[644]121#endif
[313]122  virtual Void estBit               (estBitsSbacStruct* pcEstBitsSbac, Int width, Int height, TextType eTType) = 0;
123 
124  virtual Void updateContextTables ( SliceType eSliceType, Int iQp, Bool bExecuteFinish )   = 0;
125  virtual Void updateContextTables ( SliceType eSliceType, Int iQp )   = 0;
126
127  virtual Void codeDFFlag (UInt uiCode, const Char *pSymbolName) = 0;
128  virtual Void codeDFSvlc (Int iCode, const Char *pSymbolName)   = 0;
129
130  virtual ~TEncEntropyIf() {}
131
132};
133
134/// entropy encoder class
135class TEncEntropy
136{
137private:
138  UInt    m_uiBakAbsPartIdx;
139  UInt    m_uiBakChromaOffset;
140  UInt    m_bakAbsPartIdxCU;
141
142public:
143  Void    setEntropyCoder           ( TEncEntropyIf* e, TComSlice* pcSlice );
144  Void    setBitstream              ( TComBitIf* p )          { m_pcEntropyCoderIf->setBitstream(p);  }
145  Void    resetBits                 ()                        { m_pcEntropyCoderIf->resetBits();      }
146  Void    resetCoeffCost            ()                        { m_pcEntropyCoderIf->resetCoeffCost(); }
147  UInt    getNumberOfWrittenBits    ()                        { return m_pcEntropyCoderIf->getNumberOfWrittenBits(); }
148  UInt    getCoeffCost              ()                        { return  m_pcEntropyCoderIf->getCoeffCost(); }
149  Void    resetEntropy              ()                        { m_pcEntropyCoderIf->resetEntropy();  }
150  Void    determineCabacInitIdx     ()                        { m_pcEntropyCoderIf->determineCabacInitIdx(); }
151 
152  Void    encodeSliceHeader         ( TComSlice* pcSlice );
153  Void    encodeTilesWPPEntryPoint( TComSlice* pSlice );
[644]154#if POC_RESET_IDC_SIGNALLING
155Void      encodeSliceHeaderExtn( TComSlice* pSlice, Int shBitsWrittenTillNow );
156#endif
[313]157  Void    encodeTerminatingBit      ( UInt uiIsLast );
158  Void    encodeSliceFinish         ();
159  TEncEntropyIf*      m_pcEntropyCoderIf;
160 
161public:
162  Void encodeVPS               ( TComVPS* pcVPS);
163  // SPS
164  Void encodeSPS               ( TComSPS* pcSPS );
[713]165  Void encodePPS               ( TComPPS* pcPPS
166#if Q0048_CGS_3D_ASYMLUT
167    , TEnc3DAsymLUT * pc3DAsymLUT
168#endif
169    );
[313]170  Void encodeSplitFlag         ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, Bool bRD = false );
171  Void encodeCUTransquantBypassFlag( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD = false );
172  Void encodeSkipFlag          ( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD = false );
173  Void encodePUWise       ( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD = false );
174  Void encodeInterDirPU   ( TComDataCU* pcSubCU, UInt uiAbsPartIdx  );
175  Void encodeRefFrmIdxPU  ( TComDataCU* pcSubCU, UInt uiAbsPartIdx, RefPicList eRefList );
176  Void encodeMvdPU        ( TComDataCU* pcSubCU, UInt uiAbsPartIdx, RefPicList eRefList );
177  Void encodeMVPIdxPU     ( TComDataCU* pcSubCU, UInt uiAbsPartIdx, RefPicList eRefList );
178  Void encodeMergeFlag    ( TComDataCU* pcCU, UInt uiAbsPartIdx );
179  Void encodeMergeIndex   ( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD = false );
180  Void encodePredMode          ( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD = false );
181  Void encodePartSize          ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, Bool bRD = false );
182  Void encodeIPCMInfo          ( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD = false );
183  Void encodePredInfo          ( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD = false );
184  Void encodeIntraDirModeLuma  ( TComDataCU* pcCU, UInt absPartIdx, Bool isMultiplePU = false );
185 
186  Void encodeIntraDirModeChroma( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD = false );
187 
188  Void encodeTransformSubdivFlag( UInt uiSymbol, UInt uiCtx );
189  Void encodeQtCbf             ( TComDataCU* pcCU, UInt uiAbsPartIdx, TextType eType, UInt uiTrDepth );
190  Void encodeQtCbfZero         ( TComDataCU* pcCU, TextType eType, UInt uiTrDepth );
191  Void encodeQtRootCbfZero     ( TComDataCU* pcCU );
192  Void encodeQtRootCbf         ( TComDataCU* pcCU, UInt uiAbsPartIdx );
193  Void encodeQP                ( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD = false );
194  Void updateContextTables     ( SliceType eSliceType, Int iQp, Bool bExecuteFinish )   { m_pcEntropyCoderIf->updateContextTables( eSliceType, iQp, bExecuteFinish );     }
195  Void updateContextTables     ( SliceType eSliceType, Int iQp )                        { m_pcEntropyCoderIf->updateContextTables( eSliceType, iQp, true );               }
196
197  Void encodeScalingList       ( TComScalingList* scalingList );
198
199private:
200  Void xEncodeTransform        ( TComDataCU* pcCU,UInt offsetLumaOffset, UInt offsetChroma, UInt uiAbsPartIdx, UInt uiDepth, UInt width, UInt height, UInt uiTrIdx, Bool& bCodeDQP );
201public:
202  Void encodeCoeff             ( TComDataCU* pcCU,                 UInt uiAbsPartIdx, UInt uiDepth, UInt uiWidth, UInt uiHeight, Bool& bCodeDQP );
203 
204  Void encodeCoeffNxN         ( TComDataCU* pcCU, TCoeff* pcCoeff, UInt uiAbsPartIdx, UInt uiTrWidth, UInt uiTrHeight, UInt uiDepth, TextType eType );
205 
206  Void estimateBit             ( estBitsSbacStruct* pcEstBitsSbac, Int width, Int height, TextType eTType);
[644]207#if SVC_EXTENSION
208  Void encodeSAOBlkParam(SAOBlkParam& saoBlkParam, UInt* saoMaxOffsetQVal, Bool* sliceEnabled, Bool leftMergeAvail, Bool aboveMergeAvail){m_pcEntropyCoderIf->codeSAOBlkParam(saoBlkParam, saoMaxOffsetQVal, sliceEnabled, leftMergeAvail, aboveMergeAvail, false);}
209#else
[540]210  Void encodeSAOBlkParam(SAOBlkParam& saoBlkParam, Bool* sliceEnabled, Bool leftMergeAvail, Bool aboveMergeAvail){m_pcEntropyCoderIf->codeSAOBlkParam(saoBlkParam, sliceEnabled, leftMergeAvail, aboveMergeAvail, false);}
[644]211#endif
[313]212  static Int countNonZeroCoeffs( TCoeff* pcCoef, UInt uiSize );
213
214};// END CLASS DEFINITION TEncEntropy
215
216//! \}
217
218#endif // __TENCENTROPY__
219
Note: See TracBrowser for help on using the repository browser.