source: 3DVCSoftware/branches/HTM-DEV-2.0-Renderer-Fix/source/Lib/TLibDecoder/TDecSbac.h @ 1405

Last change on this file since 1405 was 531, checked in by tech, 11 years ago

Merged HTM-DEV-0.3-dev1 Rev. 520.

  • Property svn:eol-style set to native
File size: 9.4 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     TDecSbac.h
35    \brief    SBAC decoder class (header)
36*/
37
38#ifndef __TDECSBAC__
39#define __TDECSBAC__
40
41
42#if _MSC_VER > 1000
43#pragma once
44#endif // _MSC_VER > 1000
45
46
47#include "TDecEntropy.h"
48#include "TDecBinCoder.h"
49#include "TLibCommon/ContextTables.h"
50#include "TLibCommon/ContextModel.h"
51#include "TLibCommon/ContextModel3DBuffer.h"
52
53//! \ingroup TLibDecoder
54//! \{
55
56// ====================================================================================================================
57// Class definition
58// ====================================================================================================================
59
60/// SBAC decoder class
61class TDecSbac : public TDecEntropyIf
62{
63public:
64  TDecSbac();
65  virtual ~TDecSbac();
66 
67  Void  init                      ( TDecBinIf* p )    { m_pcTDecBinIf = p; }
68  Void  uninit                    (              )    { m_pcTDecBinIf = 0; }
69 
70  Void load                          ( TDecSbac* pScr );
71  Void loadContexts                  ( TDecSbac* pScr );
72  Void xCopyFrom           ( TDecSbac* pSrc );
73  Void xCopyContextsFrom       ( TDecSbac* pSrc );
74
75  Void  resetEntropy (TComSlice* pSlice );
76  Void  setBitstream              ( TComInputBitstream* p  ) { m_pcBitstream = p; m_pcTDecBinIf->init( p ); }
77  Void  parseVPS                  ( TComVPS* /*pcVPS*/ ) {}
78#if H_3D
79  Void  parseSPS                  ( TComSPS* /*pcSPS*/ , Int /*viewIndex*/, Bool /*depthFlag*/ ) {}
80#else
81  Void  parseSPS                  ( TComSPS* /*pcSPS*/ ) {}
82#endif
83  Void  parsePPS                  ( TComPPS* /*pcPPS*/ ) {}
84
85  Void  parseSliceHeader          ( TComSlice*& /*rpcSlice*/, ParameterSetManagerDecoder* /*parameterSetManager*/) {}
86  Void  parseTerminatingBit       ( UInt& ruiBit );
87  Void  parseMVPIdx               ( Int& riMVPIdx          );
88  Void  parseSaoMaxUvlc           ( UInt& val, UInt maxSymbol );
89  Void  parseSaoMerge         ( UInt&  ruiVal   );
90  Void  parseSaoTypeIdx           ( UInt&  ruiVal  );
91  Void  parseSaoUflc              ( UInt uiLength, UInt& ruiVal     );
92  Void  parseSaoOneLcuInterleaving(Int rx, Int ry, SAOParam* pSaoParam, TComDataCU* pcCU, Int iCUAddrInSlice, Int iCUAddrUpInSlice, Int allowMergeLeft, Int allowMergeUp);
93  Void  parseSaoOffset            (SaoLcuParam* psSaoLcuParam, UInt compIdx);
94private:
95  Void  xReadUnarySymbol    ( UInt& ruiSymbol, ContextModel* pcSCModel, Int iOffset );
96  Void  xReadUnaryMaxSymbol ( UInt& ruiSymbol, ContextModel* pcSCModel, Int iOffset, UInt uiMaxSymbol );
97  Void  xReadEpExGolomb     ( UInt& ruiSymbol, UInt uiCount );
98  Void  xReadCoefRemainExGolomb ( UInt &rSymbol, UInt &rParam );
99#if H_3D_DIM
100  Void  xReadExGolombLevel   ( UInt& ruiSymbol, ContextModel& rcSCModel  );
101  Void  xParseDimDeltaDC     ( Pel& rValDeltaDC, UInt dimType );
102#if H_3D_DIM_DMM
103  Void  xParseDmm1WedgeIdx   ( UInt& ruiTabIdx, Int iNumBit );
104  Void  xParseDmm2Offset     ( Int& riOffset );
105  Void  xParseDmm3WedgeIdx   ( UInt& ruiIntraIdx, Int iNumBit );
106#endif
107#if H_3D_DIM_RBC
108  Void  xParseRbcEdge        ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth );
109#endif
110#if H_3D_DIM_SDC
111  Void  xParseSDCResidualData     ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt uiPart );
112#endif
113#endif
114private:
115  TComInputBitstream* m_pcBitstream;
116  TDecBinIf*        m_pcTDecBinIf;
117 
118public:
119 
120  Void parseSkipFlag      ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth );
121  Void parseCUTransquantBypassFlag( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth );
122  Void parseSplitFlag     ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth );
123  Void parseMergeFlag     ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt uiPUIdx );
124  Void parseMergeIndex    ( TComDataCU* pcCU, UInt& ruiMergeIndex );
125#if H_3D_ARP
126  Void parseARPW          ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth );
127#endif
128#if H_3D_IC
129  Void parseICFlag        ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth );
130#endif
131  Void parsePartSize      ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth );
132  Void parsePredMode      ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth );
133 
134  Void parseIntraDirLumaAng( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth );
135 
136  Void parseIntraDirChroma( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth );
137 
138#if H_3D_DIM
139  Void parseIntraDepth     ( TComDataCU* pcCU, UInt absPartIdx, UInt depth );
140  Void parseIntraDepthMode ( TComDataCU* pcCU, UInt absPartIdx, UInt depth );
141#endif
142
143  Void parseInterDir      ( TComDataCU* pcCU, UInt& ruiInterDir, UInt uiAbsPartIdx );
144  Void parseRefFrmIdx     ( TComDataCU* pcCU, Int& riRefFrmIdx, RefPicList eRefList );
145  Void parseMvd           ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiPartIdx, UInt uiDepth, RefPicList eRefList );
146 
147  Void parseTransformSubdivFlag( UInt& ruiSubdivFlag, UInt uiLog2TransformBlockSize );
148  Void parseQtCbf         ( TComDataCU* pcCU, UInt uiAbsPartIdx, TextType eType, UInt uiTrDepth, UInt uiDepth );
149  Void parseQtRootCbf     ( UInt uiAbsPartIdx, UInt& uiQtRootCbf );
150 
151  Void parseDeltaQP       ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth );
152 
153  Void parseIPCMInfo      ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth);
154
155  Void parseLastSignificantXY( UInt& uiPosLastX, UInt& uiPosLastY, Int width, Int height, TextType eTType, UInt uiScanIdx );
156  Void parseCoeffNxN      ( TComDataCU* pcCU, TCoeff* pcCoef, UInt uiAbsPartIdx, UInt uiWidth, UInt uiHeight, UInt uiDepth, TextType eTType );
157  Void parseTransformSkipFlags ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt width, UInt height, UInt uiDepth, TextType eTType);
158
159  Void updateContextTables( SliceType eSliceType, Int iQp );
160
161  Void  parseScalingList ( TComScalingList* /*scalingList*/ ) {}
162
163private:
164  UInt m_uiLastDQpNonZero;
165  UInt m_uiLastQp;
166 
167  ContextModel         m_contextModels[MAX_NUM_CTX_MOD];
168  Int                  m_numContextModels;
169  ContextModel3DBuffer m_cCUSplitFlagSCModel;
170  ContextModel3DBuffer m_cCUSkipFlagSCModel;
171  ContextModel3DBuffer m_cCUMergeFlagExtSCModel;
172  ContextModel3DBuffer m_cCUMergeIdxExtSCModel;
173#if H_3D_ARP
174  ContextModel3DBuffer m_cCUPUARPWSCModel;
175#endif
176#if H_3D_IC
177  ContextModel3DBuffer m_cCUICFlagSCModel;
178#endif
179  ContextModel3DBuffer m_cCUPartSizeSCModel;
180  ContextModel3DBuffer m_cCUPredModeSCModel;
181  ContextModel3DBuffer m_cCUIntraPredSCModel;
182  ContextModel3DBuffer m_cCUChromaPredSCModel;
183  ContextModel3DBuffer m_cCUDeltaQpSCModel;
184  ContextModel3DBuffer m_cCUInterDirSCModel;
185  ContextModel3DBuffer m_cCURefPicSCModel;
186  ContextModel3DBuffer m_cCUMvdSCModel;
187  ContextModel3DBuffer m_cCUQtCbfSCModel;
188  ContextModel3DBuffer m_cCUTransSubdivFlagSCModel;
189  ContextModel3DBuffer m_cCUQtRootCbfSCModel;
190 
191  ContextModel3DBuffer m_cCUSigCoeffGroupSCModel;
192  ContextModel3DBuffer m_cCUSigSCModel;
193  ContextModel3DBuffer m_cCuCtxLastX;
194  ContextModel3DBuffer m_cCuCtxLastY;
195  ContextModel3DBuffer m_cCUOneSCModel;
196  ContextModel3DBuffer m_cCUAbsSCModel;
197 
198  ContextModel3DBuffer m_cMVPIdxSCModel;
199 
200  ContextModel3DBuffer m_cCUAMPSCModel;
201  ContextModel3DBuffer m_cSaoMergeSCModel;
202  ContextModel3DBuffer m_cSaoTypeIdxSCModel;
203  ContextModel3DBuffer m_cTransformSkipSCModel;
204  ContextModel3DBuffer m_CUTransquantBypassFlagSCModel;
205
206#if H_3D_DIM
207  ContextModel3DBuffer m_cDepthIntraModeSCModel;
208  ContextModel3DBuffer m_cDdcFlagSCModel;
209  ContextModel3DBuffer m_cDdcDataSCModel;
210#if H_3D_DIM_DMM
211  ContextModel3DBuffer m_cDmm1DataSCModel;
212  ContextModel3DBuffer m_cDmm2DataSCModel;
213  ContextModel3DBuffer m_cDmm3DataSCModel;
214#endif
215#if H_3D_DIM_RBC
216  ContextModel3DBuffer m_cRbcDataSCModel;
217#endif
218#if H_3D_DIM_SDC 
219  ContextModel3DBuffer m_cSDCResidualFlagSCModel;
220  ContextModel3DBuffer m_cSDCResidualSCModel;
221#endif
222#endif
223};
224
225//! \}
226
227#endif // !defined(AFX_TDECSBAC_H__CFCAAA19_8110_47F4_9A16_810C4B5499D5__INCLUDED_)
Note: See TracBrowser for help on using the repository browser.