source: 3DVCSoftware/branches/HTM-8.2-dev0/source/Lib/TLibDecoder/TDecSbac.h @ 712

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

Merged DEV3 ( branch HTM-8.2-dev3-Samsung@699 )

  • Property svn:eol-style set to native
File size: 9.9 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
[56]4 * granted under this license. 
[5]5 *
[608]6 * Copyright (c) 2010-2013, 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     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"
[56]49#include "TLibCommon/ContextTables.h"
50#include "TLibCommon/ContextModel.h"
51#include "TLibCommon/ContextModel3DBuffer.h"
[2]52
[56]53//! \ingroup TLibDecoder
54//! \{
55
[2]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 
[56]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 ); }
[608]77  Void  parseVPS                  ( TComVPS* /*pcVPS*/ ) {}
78#if H_3D
79  Void  parseSPS                  ( TComSPS* /*pcSPS*/ , Int /*viewIndex*/, Bool /*depthFlag*/ ) {}
[56]80#else
[608]81  Void  parseSPS                  ( TComSPS* /*pcSPS*/ ) {}
[56]82#endif
[608]83  Void  parsePPS                  ( TComPPS* /*pcPPS*/ ) {}
[56]84
[608]85  Void  parseSliceHeader          ( TComSlice*& /*rpcSlice*/, ParameterSetManagerDecoder* /*parameterSetManager*/) {}
[2]86  Void  parseTerminatingBit       ( UInt& ruiBit );
[56]87  Void  parseMVPIdx               ( Int& riMVPIdx          );
[443]88  Void  parseSaoMaxUvlc           ( UInt& val, UInt maxSymbol );
[608]89  Void  parseSaoMerge         ( UInt&  ruiVal   );
[443]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);
[2]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 );
[608]98  Void  xReadCoefRemainExGolomb ( UInt &rSymbol, UInt &rParam );
99#if H_3D_DIM
100  Void  xReadExGolombLevel   ( UInt& ruiSymbol, ContextModel& rcSCModel  );
[712]101#if QC_DIM_DELTADC_UNIFY_F0132
102  Void  xParseDimDeltaDC     ( Pel& rValDeltaDC, UInt uiNumSeg );
103#else
[608]104  Void  xParseDimDeltaDC     ( Pel& rValDeltaDC, UInt dimType );
[712]105#endif
[608]106#if H_3D_DIM_DMM
107  Void  xParseDmm1WedgeIdx   ( UInt& ruiTabIdx, Int iNumBit );
[712]108#if !SEC_DMM3_RBC_F0147
[608]109  Void  xParseDmm3WedgeIdx   ( UInt& ruiIntraIdx, Int iNumBit );
[5]110#endif
[712]111#endif
[608]112#if H_3D_DIM_RBC
113  Void  xParseRbcEdge        ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth );
[296]114#endif
[608]115#if H_3D_DIM_SDC
116  Void  xParseSDCResidualData     ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt uiPart );
[2]117#endif
[100]118#endif
[655]119#if H_3D_INTER_SDC
[608]120  Void  parseInterSDCFlag    ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth );
121  Void  parseInterSDCResidualData ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt uiPart );
122#endif
[2]123private:
[56]124  TComInputBitstream* m_pcBitstream;
[2]125  TDecBinIf*        m_pcTDecBinIf;
[608]126 
127public:
[2]128 
129  Void parseSkipFlag      ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth );
[608]130  Void parseCUTransquantBypassFlag( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth );
[2]131  Void parseSplitFlag     ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth );
132  Void parseMergeFlag     ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt uiPUIdx );
[608]133  Void parseMergeIndex    ( TComDataCU* pcCU, UInt& ruiMergeIndex );
134#if H_3D_ARP
[443]135  Void parseARPW          ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth );
136#endif
[608]137#if H_3D_IC
138  Void parseICFlag        ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth );
139#endif
[2]140  Void parsePartSize      ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth );
141  Void parsePredMode      ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth );
[608]142 
[2]143  Void parseIntraDirLumaAng( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth );
144 
145  Void parseIntraDirChroma( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth );
146 
[608]147#if H_3D_DIM
148  Void parseIntraDepth     ( TComDataCU* pcCU, UInt absPartIdx, UInt depth );
149  Void parseIntraDepthMode ( TComDataCU* pcCU, UInt absPartIdx, UInt depth );
150#endif
151
152  Void parseInterDir      ( TComDataCU* pcCU, UInt& ruiInterDir, UInt uiAbsPartIdx );
153  Void parseRefFrmIdx     ( TComDataCU* pcCU, Int& riRefFrmIdx, RefPicList eRefList );
[2]154  Void parseMvd           ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiPartIdx, UInt uiDepth, RefPicList eRefList );
155 
156  Void parseTransformSubdivFlag( UInt& ruiSubdivFlag, UInt uiLog2TransformBlockSize );
157  Void parseQtCbf         ( TComDataCU* pcCU, UInt uiAbsPartIdx, TextType eType, UInt uiTrDepth, UInt uiDepth );
[608]158  Void parseQtRootCbf     ( UInt uiAbsPartIdx, UInt& uiQtRootCbf );
[2]159 
160  Void parseDeltaQP       ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth );
161 
[56]162  Void parseIPCMInfo      ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth);
[2]163
[56]164  Void parseLastSignificantXY( UInt& uiPosLastX, UInt& uiPosLastY, Int width, Int height, TextType eTType, UInt uiScanIdx );
[2]165  Void parseCoeffNxN      ( TComDataCU* pcCU, TCoeff* pcCoef, UInt uiAbsPartIdx, UInt uiWidth, UInt uiHeight, UInt uiDepth, TextType eTType );
[608]166  Void parseTransformSkipFlags ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt width, UInt height, UInt uiDepth, TextType eTType);
167
[56]168  Void updateContextTables( SliceType eSliceType, Int iQp );
169
[608]170  Void  parseScalingList ( TComScalingList* /*scalingList*/ ) {}
[56]171
[2]172private:
173  UInt m_uiLastDQpNonZero;
174  UInt m_uiLastQp;
175 
[56]176  ContextModel         m_contextModels[MAX_NUM_CTX_MOD];
177  Int                  m_numContextModels;
178  ContextModel3DBuffer m_cCUSplitFlagSCModel;
[2]179  ContextModel3DBuffer m_cCUSkipFlagSCModel;
180  ContextModel3DBuffer m_cCUMergeFlagExtSCModel;
181  ContextModel3DBuffer m_cCUMergeIdxExtSCModel;
[608]182#if H_3D_ARP
183  ContextModel3DBuffer m_cCUPUARPWSCModel;
[56]184#endif
[608]185#if H_3D_IC
186  ContextModel3DBuffer m_cCUICFlagSCModel;
[443]187#endif
[2]188  ContextModel3DBuffer m_cCUPartSizeSCModel;
189  ContextModel3DBuffer m_cCUPredModeSCModel;
190  ContextModel3DBuffer m_cCUIntraPredSCModel;
191  ContextModel3DBuffer m_cCUChromaPredSCModel;
[56]192  ContextModel3DBuffer m_cCUDeltaQpSCModel;
[2]193  ContextModel3DBuffer m_cCUInterDirSCModel;
194  ContextModel3DBuffer m_cCURefPicSCModel;
195  ContextModel3DBuffer m_cCUMvdSCModel;
[56]196  ContextModel3DBuffer m_cCUQtCbfSCModel;
[2]197  ContextModel3DBuffer m_cCUTransSubdivFlagSCModel;
198  ContextModel3DBuffer m_cCUQtRootCbfSCModel;
199 
[56]200  ContextModel3DBuffer m_cCUSigCoeffGroupSCModel;
[2]201  ContextModel3DBuffer m_cCUSigSCModel;
202  ContextModel3DBuffer m_cCuCtxLastX;
203  ContextModel3DBuffer m_cCuCtxLastY;
204  ContextModel3DBuffer m_cCUOneSCModel;
205  ContextModel3DBuffer m_cCUAbsSCModel;
206 
207  ContextModel3DBuffer m_cMVPIdxSCModel;
208 
[56]209  ContextModel3DBuffer m_cCUAMPSCModel;
[443]210  ContextModel3DBuffer m_cSaoMergeSCModel;
211  ContextModel3DBuffer m_cSaoTypeIdxSCModel;
[608]212  ContextModel3DBuffer m_cTransformSkipSCModel;
213  ContextModel3DBuffer m_CUTransquantBypassFlagSCModel;
[56]214
[608]215#if H_3D_DIM
216  ContextModel3DBuffer m_cDepthIntraModeSCModel;
217  ContextModel3DBuffer m_cDdcFlagSCModel;
218  ContextModel3DBuffer m_cDdcDataSCModel;
219#if H_3D_DIM_DMM
220  ContextModel3DBuffer m_cDmm1DataSCModel;
[712]221#if !SEC_DMM3_RBC_F0147
[608]222  ContextModel3DBuffer m_cDmm3DataSCModel;
[2]223#endif
[712]224#endif
[608]225#if H_3D_DIM_RBC
226  ContextModel3DBuffer m_cRbcDataSCModel;
[100]227#endif
[608]228#if H_3D_DIM_SDC 
229  ContextModel3DBuffer m_cSDCResidualFlagSCModel;
230  ContextModel3DBuffer m_cSDCResidualSCModel;
[100]231#endif
[443]232#endif
[655]233#if H_3D_INTER_SDC
[608]234  ContextModel3DBuffer m_cInterSDCFlagSCModel;
235  ContextModel3DBuffer m_cInterSDCResidualSCModel;
236  ContextModel3DBuffer m_cInterSDCResidualSignFlagSCModel;
[443]237#endif
[2]238};
239
[56]240//! \}
241
[2]242#endif // !defined(AFX_TDECSBAC_H__CFCAAA19_8110_47F4_9A16_810C4B5499D5__INCLUDED_)
Note: See TracBrowser for help on using the repository browser.