source: 3DVCSoftware/branches/HTM-14.1-update-dev0/source/Lib/TLibEncoder/TEncSbac.h @ 1218

Last change on this file since 1218 was 1200, checked in by tech, 10 years ago

Update to HM-16.5.
Starting point for further re-activation of 3D-tools.

Includes:

active:

  • MV-HEVC
  • 3D-HLS (apart from DLT)
  • VSO

inactive:

  • remaining 3D-HEVC tools.
  • Property svn:eol-style set to native
File size: 11.3 KB
RevLine 
[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
[1200]4 * granted under this license.
[5]5 *
[1200]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
56class TEncTop;
57
[56]58//! \ingroup TLibEncoder
59//! \{
60
[2]61// ====================================================================================================================
62// Class definition
63// ====================================================================================================================
64
65/// SBAC encoder class
66class TEncSbac : public TEncEntropyIf
67{
68public:
69  TEncSbac();
70  virtual ~TEncSbac();
[1200]71
[2]72  Void  init                   ( TEncBinIf* p )  { m_pcBinIf = p; }
73  Void  uninit                 ()                { m_pcBinIf = 0; }
[608]74
[2]75  //  Virtual list
[1200]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 ); }
[1200]79
80  Void  load                   ( const TEncSbac* pSrc  );
81  Void  loadIntraDirMode       ( const TEncSbac* pScr, const ChannelType chType  );
[608]82#if H_3D_DIM
83  Void  loadIntraDepthMode     ( TEncSbac* pScr  );
[443]84#endif
[1200]85  Void  store                  ( TEncSbac* pDest ) const;
86  Void  loadContexts           ( const TEncSbac* pSrc  );
[2]87  Void  resetBits              ()                { m_pcBinIf->resetBits(); m_pcBitIf->resetBits(); }
88  UInt  getNumberOfWrittenBits ()                { return m_pcBinIf->getNumWrittenBits(); }
89  //--SBAC RD
[56]90
[1200]91  Void  codeVPS                ( const TComVPS* pcVPS );
92  Void  codeSPS                ( const TComSPS* pcSPS     );
93  Void  codePPS                ( const TComPPS* pcPPS     );
94  Void  codeSliceHeader        ( TComSlice* pcSlice );
95  Void  codeTilesWPPEntryPoint ( TComSlice* pSlice );
96  Void  codeTerminatingBit     ( UInt uilsLast      );
97  Void  codeSliceFinish        ();
98  Void  codeSaoMaxUvlc       ( UInt code, UInt maxSymbol );
99  Void  codeSaoMerge         ( UInt  uiCode );
100  Void  codeSaoTypeIdx       ( UInt  uiCode);
101  Void  codeSaoUflc          ( UInt uiLength, UInt  uiCode );
102  Void  codeSAOSign          ( UInt  uiCode);  //<! code SAO offset sign
[2]103
[1200]104  Void codeSAOOffsetParam(ComponentID compIdx, SAOOffset& ctbParam, Bool sliceEnabled, const Int channelBitDepth);
105  Void codeSAOBlkParam(SAOBlkParam& saoBlkParam, const BitDepths &bitDepths
[872]106                    , Bool* sliceEnabled
107                    , Bool leftMergeAvail
108                    , Bool aboveMergeAvail
109                    , Bool onlyEstMergeInfo = false
110                    );
111
[2]112private:
113  Void  xWriteUnarySymbol    ( UInt uiSymbol, ContextModel* pcSCModel, Int iOffset );
114  Void  xWriteUnaryMaxSymbol ( UInt uiSymbol, ContextModel* pcSCModel, Int iOffset, UInt uiMaxSymbol );
115  Void  xWriteEpExGolomb     ( UInt uiSymbol, UInt uiCount );
[1200]116  Void  xWriteCoefRemainExGolomb ( UInt symbol, UInt &rParam, const Bool useLimitedPrefixLength, const Int maxLog2TrDynamicRange );
[773]117#if H_3D_DIM
[56]118  Void  xWriteExGolombLevel  ( UInt uiSymbol, ContextModel& rcSCModel  );
[724]119  Void  xCodeDimDeltaDC      ( Pel valDeltaDC, UInt uiNumSeg );
[608]120#if H_3D_DIM_DMM
121  Void  xCodeDmm1WedgeIdx    ( UInt uiTabIdx, Int iNumBit );
[5]122#endif
[2]123#endif
[56]124
[1200]125  Void  xCopyFrom            ( const TEncSbac* pSrc );
126  Void  xCopyContextsFrom    ( const TEncSbac* pSrc );
127
[2]128protected:
129  TComBitIf*    m_pcBitIf;
130  TEncBinIf*    m_pcBinIf;
[608]131
[2]132  //--Adaptive loop filter
[1200]133
[56]134public:
[608]135  Void codeCUTransquantBypassFlag( TComDataCU* pcCU, UInt uiAbsPartIdx );
[2]136  Void codeSkipFlag      ( TComDataCU* pcCU, UInt uiAbsPartIdx );
[1196]137#if H_3D
[1179]138  Void codeDIS           ( TComDataCU* pcCU, UInt uiAbsPartIdx );
[1039]139#endif
[2]140  Void codeMergeFlag     ( TComDataCU* pcCU, UInt uiAbsPartIdx );
141  Void codeMergeIndex    ( TComDataCU* pcCU, UInt uiAbsPartIdx );
[608]142#if H_3D_ARP
143  Void codeARPW          ( TComDataCU* pcCU, UInt uiAbsPartIdx );
[5]144#endif
[608]145#if H_3D_IC
146  Void codeICFlag        ( TComDataCU* pcCU, UInt uiAbsPartIdx );
[443]147#endif
[655]148#if H_3D_INTER_SDC
[833]149  Void codeDeltaDC       ( TComDataCU* pcCU, UInt absPartIdx );
150  Void codeSDCFlag       ( TComDataCU* pcCU, UInt uiAbsPartIdx );
[608]151#endif
[833]152#if H_3D_DBBP
153  Void codeDBBPFlag      ( TComDataCU* pcCU, UInt uiAbsPartIdx );
154#endif
[2]155  Void codeSplitFlag     ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth );
156  Void codeMVPIdx        ( TComDataCU* pcCU, UInt uiAbsPartIdx, RefPicList eRefList );
[1200]157
[2]158  Void codePartSize      ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth );
159  Void codePredMode      ( TComDataCU* pcCU, UInt uiAbsPartIdx );
[608]160  Void codeIPCMInfo      ( TComDataCU* pcCU, UInt uiAbsPartIdx );
[2]161  Void codeTransformSubdivFlag ( UInt uiSymbol, UInt uiCtx );
[1200]162  Void codeQtCbf               ( TComTU & rTu, const ComponentID compID, const Bool lowestLevel );
[2]163  Void codeQtRootCbf           ( TComDataCU* pcCU, UInt uiAbsPartIdx );
[1200]164  Void codeQtCbfZero           ( TComTU &rTu, const ChannelType chType );
165  Void codeQtRootCbfZero       ( );
[608]166  Void codeIntraDirLumaAng     ( TComDataCU* pcCU, UInt absPartIdx, Bool isMultiple);
[1200]167
[2]168  Void codeIntraDirChroma      ( TComDataCU* pcCU, UInt uiAbsPartIdx );
[608]169
170#if H_3D_DIM
171  Void codeIntraDepth          ( TComDataCU* pcCU, UInt absPartIdx );
172  Void codeIntraDepthMode      ( TComDataCU* pcCU, UInt absPartIdx );
173#endif
174
[2]175  Void codeInterDir            ( TComDataCU* pcCU, UInt uiAbsPartIdx );
176  Void codeRefFrmIdx           ( TComDataCU* pcCU, UInt uiAbsPartIdx, RefPicList eRefList );
177  Void codeMvd                 ( TComDataCU* pcCU, UInt uiAbsPartIdx, RefPicList eRefList );
[1200]178
179  Void codeCrossComponentPrediction( TComTU &rTu, ComponentID compID );
180
[2]181  Void codeDeltaQP             ( TComDataCU* pcCU, UInt uiAbsPartIdx );
[1200]182  Void codeChromaQpAdjustment  ( TComDataCU* cu, UInt absPartIdx );
[608]183
[1200]184  Void codeLastSignificantXY ( UInt uiPosX, UInt uiPosY, Int width, Int height, ComponentID component, UInt uiScanIdx );
185  Void codeCoeffNxN            ( TComTU &rTu, TCoeff* pcCoef, const ComponentID compID );
186  Void codeTransformSkipFlags ( TComTU &rTu, ComponentID component );
187
[2]188  // -------------------------------------------------------------------------------------------------------------------
189  // for RD-optimizatioon
190  // -------------------------------------------------------------------------------------------------------------------
[1200]191
192  Void estBit               (estBitsSbacStruct* pcEstBitsSbac, Int width, Int height, ChannelType chType);
[608]193  Void estCBFBit                     ( estBitsSbacStruct* pcEstBitsSbac );
[1200]194  Void estSignificantCoeffGroupMapBit( estBitsSbacStruct* pcEstBitsSbac, ChannelType chType );
195  Void estSignificantMapBit          ( estBitsSbacStruct* pcEstBitsSbac, Int width, Int height, ChannelType chType );
196  Void estLastSignificantPositionBit ( estBitsSbacStruct* pcEstBitsSbac, Int width, Int height, ChannelType chType );
197  Void estSignificantCoefficientsBit ( estBitsSbacStruct* pcEstBitsSbac, ChannelType chType );
198
199  Void codeExplicitRdpcmMode            ( TComTU &rTu, const ComponentID compID );
200
201
[2]202  TEncBinIf* getEncBinIf()  { return m_pcBinIf; }
203private:
[56]204  ContextModel         m_contextModels[MAX_NUM_CTX_MOD];
205  Int                  m_numContextModels;
[2]206  ContextModel3DBuffer m_cCUSplitFlagSCModel;
207  ContextModel3DBuffer m_cCUSkipFlagSCModel;
[1196]208#if H_3D
[1179]209  ContextModel3DBuffer m_cCUDISFlagSCModel;
210  ContextModel3DBuffer m_cCUDISTypeSCModel;
[1039]211#endif
[2]212  ContextModel3DBuffer m_cCUMergeFlagExtSCModel;
213  ContextModel3DBuffer m_cCUMergeIdxExtSCModel;
[608]214#if H_3D_ARP
215  ContextModel3DBuffer m_cCUPUARPWSCModel;
[56]216#endif
[608]217#if H_3D_IC
218  ContextModel3DBuffer m_cCUICFlagSCModel;
[443]219#endif
[2]220  ContextModel3DBuffer m_cCUPartSizeSCModel;
221  ContextModel3DBuffer m_cCUPredModeSCModel;
222  ContextModel3DBuffer m_cCUIntraPredSCModel;
223  ContextModel3DBuffer m_cCUChromaPredSCModel;
224  ContextModel3DBuffer m_cCUDeltaQpSCModel;
225  ContextModel3DBuffer m_cCUInterDirSCModel;
226  ContextModel3DBuffer m_cCURefPicSCModel;
227  ContextModel3DBuffer m_cCUMvdSCModel;
228  ContextModel3DBuffer m_cCUQtCbfSCModel;
229  ContextModel3DBuffer m_cCUTransSubdivFlagSCModel;
230  ContextModel3DBuffer m_cCUQtRootCbfSCModel;
[1200]231
[56]232  ContextModel3DBuffer m_cCUSigCoeffGroupSCModel;
[2]233  ContextModel3DBuffer m_cCUSigSCModel;
234  ContextModel3DBuffer m_cCuCtxLastX;
235  ContextModel3DBuffer m_cCuCtxLastY;
236  ContextModel3DBuffer m_cCUOneSCModel;
237  ContextModel3DBuffer m_cCUAbsSCModel;
[1200]238
[2]239  ContextModel3DBuffer m_cMVPIdxSCModel;
[1200]240
[443]241  ContextModel3DBuffer m_cSaoMergeSCModel;
242  ContextModel3DBuffer m_cSaoTypeIdxSCModel;
[608]243  ContextModel3DBuffer m_cTransformSkipSCModel;
244  ContextModel3DBuffer m_CUTransquantBypassFlagSCModel;
[1200]245  ContextModel3DBuffer m_explicitRdpcmFlagSCModel;
246  ContextModel3DBuffer m_explicitRdpcmDirSCModel;
247  ContextModel3DBuffer m_cCrossComponentPredictionSCModel;
[56]248
[1200]249  ContextModel3DBuffer m_ChromaQpAdjFlagSCModel;
250  ContextModel3DBuffer m_ChromaQpAdjIdcSCModel;
[608]251#if H_3D_DIM
252  ContextModel3DBuffer m_cDepthIntraModeSCModel;
253  ContextModel3DBuffer m_cDdcFlagSCModel;
254  ContextModel3DBuffer m_cDdcDataSCModel;
[833]255  ContextModel3DBuffer m_cAngleFlagSCModel;
[608]256#if H_3D_DIM_SDC 
257  ContextModel3DBuffer m_cSDCResidualFlagSCModel;
258  ContextModel3DBuffer m_cSDCResidualSCModel;
[100]259#endif
[443]260#endif
[884]261#if H_3D_DIM_SDC
[833]262  ContextModel3DBuffer m_cSDCFlagSCModel;
263#endif
264#if H_3D_DBBP
265  ContextModel3DBuffer m_cDBBPFlagSCModel;
266#endif
[1200]267
268  UInt m_golombRiceAdaptationStatistics[RExt__GOLOMB_RICE_ADAPTATION_STATISTICS_SETS];
[2]269};
270
[56]271//! \}
272
[2]273#endif // !defined(AFX_TENCSBAC_H__DDA7CDC4_EDE3_4015_9D32_2156249C82AA__INCLUDED_)
Note: See TracBrowser for help on using the repository browser.