source: 3DVCSoftware/branches/HTM-10.0rc1-dev0/source/Lib/TLibEncoder/TEncSbac.h @ 836

Last change on this file since 836 was 833, checked in by tech, 10 years ago

Merged 9.3-dev0@831.

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