source: SHVCSoftware/branches/SHM-dev/source/Lib/TLibEncoder/TEncEntropy.h @ 1263

Last change on this file since 1263 was 1259, checked in by seregin, 9 years ago

port rev 4256

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