source: 3DVCSoftware/branches/HTM-3.0-Samsung/source/Lib/TLibDecoder/TDecCAVLC.h @ 72

Last change on this file since 72 was 70, checked in by vidyo, 12 years ago
  • Property svn:eol-style set to native
File size: 8.8 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-2012, 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     TDecCAVLC.h
35    \brief    CAVLC decoder class (header)
36*/
37
38#ifndef __TDECCAVLC__
39#define __TDECCAVLC__
40
41#if _MSC_VER > 1000
42#pragma once
43#endif // _MSC_VER > 1000
44
45#include "TDecEntropy.h"
46
47//! \ingroup TLibDecoder
48//! \{
49
50// ====================================================================================================================
51// Class definition
52// ====================================================================================================================
53
54class SEImessages;
55
56/// CAVLC decoder class
57class TDecCavlc : public TDecEntropyIf
58{
59public:
60  TDecCavlc();
61  virtual ~TDecCavlc();
62 
63protected:
64  Void  xReadCode             (UInt   uiLength, UInt& ruiCode);
65  Void  xReadUvlc             (UInt&  ruiVal);
66  Void  xReadSvlc             (Int&   riVal);
67  Void  xReadFlag             (UInt&  ruiCode);
68  Void  xReadEpExGolomb       ( UInt& ruiSymbol, UInt uiCount );
69  Void  xReadExGolombLevel    ( UInt& ruiSymbol );
70  Void  xReadUnaryMaxSymbol   ( UInt& ruiSymbol, UInt uiMaxSymbol );
71#if ENC_DEC_TRACE
72  Void  xReadCodeTr           (UInt  length, UInt& rValue, const Char *pSymbolName);
73  Void  xReadUvlcTr           (              UInt& rValue, const Char *pSymbolName);
74  Void  xReadSvlcTr           (               Int& rValue, const Char *pSymbolName);
75  Void  xReadFlagTr           (              UInt& rValue, const Char *pSymbolName);
76#endif
77 
78  Void  xReadPCMAlignZero     ();
79
80  UInt  xGetBit             ();
81 
82#if RPS_IN_SPS
83  void  parseShortTermRefPicSet            (TComSPS* pcSPS, TComReferencePictureSet* pcRPS, Int idx);
84#else
85  void  parseShortTermRefPicSet            (TComPPS* pcPPS, TComReferencePictureSet* pcRPS, Int idx);
86#endif
87private:
88  TComInputBitstream*   m_pcBitstream;
89  Int           m_iSliceGranularity; //!< slice granularity
90 
91  Int**    m_aaiTempScale;
92  Int**    m_aaiTempOffset;
93  Int**    m_aaiTempPdmScaleNomDelta;
94  Int**    m_aaiTempPdmOffset;
95 
96public:
97
98  /// rest entropy coder by intial QP and IDC in CABAC
99#if !CABAC_INIT_FLAG
100  Void  resetEntropy        (Int  iQp, Int iID) { printf("Not supported yet\n"); assert(0); exit(1);}
101  Void  resetEntropy        ( TComSlice* pcSlice  );
102#else
103  Void  resetEntropy        ( TComSlice* pcSlice  )     { assert(0); };
104#endif
105  Void  setBitstream        ( TComInputBitstream* p )   { m_pcBitstream = p; }
106  /// set slice granularity
107  Void setSliceGranularity(Int iSliceGranularity)  {m_iSliceGranularity = iSliceGranularity;}
108
109  /// get slice granularity
110  Int  getSliceGranularity()                       {return m_iSliceGranularity;             }
111  Void  parseTransformSubdivFlag( UInt& ruiSubdivFlag, UInt uiLog2TransformBlockSize );
112  Void  parseQtCbf          ( TComDataCU* pcCU, UInt uiAbsPartIdx, TextType eType, UInt uiTrDepth, UInt uiDepth );
113  Void  parseQtRootCbf      ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt& uiQtRootCbf );
114
115#if VIDYO_VPS_INTEGRATION
116  Void  parseVPS            ( TComVPS* pcVPS );
117#endif
118#if HHI_MPI
119  Void  parseSPS            ( TComSPS* pcSPS, Bool bIsDepth );
120#else
121  Void  parseSPS            ( TComSPS* pcSPS );
122#endif
123#if TILES_OR_ENTROPY_SYNC_IDC
124  Void  parsePPS            ( TComPPS* pcPPS, ParameterSetManagerDecoder *parameterSet);
125#else
126  Void  parsePPS            ( TComPPS* pcPPS);
127#endif
128  Void  parseSEI(SEImessages&);
129  Void  parseAPS            ( TComAPS* pAPS );
130#if LCU_SYNTAX_ALF
131  Void  parseSliceHeader    ( TComSlice*& rpcSlice, ParameterSetManagerDecoder *parameterSetManager, AlfCUCtrlInfo &alfCUCtrl, AlfParamSet& alfParamSet);
132#else
133  Void  parseSliceHeader    ( TComSlice*& rpcSlice, ParameterSetManagerDecoder *parameterSetManager, AlfCUCtrlInfo &alfCUCtrl );
134#endif
135  Void  parseTerminatingBit ( UInt& ruiBit );
136 
137#if HHI_INTER_VIEW_MOTION_PRED
138  Void  parseMVPIdx         ( Int& riMVPIdx, Int iAMVPCands );
139#else
140  Void  parseMVPIdx         ( Int& riMVPIdx );
141#endif
142 
143  Void  parseSkipFlag       ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth );
144  Void parseMergeFlag       ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt uiPUIdx );
145  Void parseMergeIndex      ( TComDataCU* pcCU, UInt& ruiMergeIndex, UInt uiAbsPartIdx, UInt uiDepth );
146#if HHI_INTER_VIEW_RESIDUAL_PRED
147  Void parseResPredFlag     ( TComDataCU* pcCU, Bool& rbResPredFlag, UInt uiAbsPartIdx, UInt uiDepth );
148#endif
149  Void parseSplitFlag       ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth );
150  Void parsePartSize        ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth );
151  Void parsePredMode        ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth );
152 
153  Void parseIntraDirLumaAng ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth );
154 
155  Void parseIntraDirChroma  ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth );
156 
157  Void parseInterDir        ( TComDataCU* pcCU, UInt& ruiInterDir, UInt uiAbsPartIdx, UInt uiDepth );
158  Void parseRefFrmIdx       ( TComDataCU* pcCU, Int& riRefFrmIdx,  UInt uiAbsPartIdx, UInt uiDepth, RefPicList eRefList );
159  Void parseMvd             ( TComDataCU* pcCU, UInt uiAbsPartAddr,UInt uiPartIdx,    UInt uiDepth, RefPicList eRefList );
160 
161  Void parseDeltaQP         ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth );
162  Void parseCoeffNxN        ( TComDataCU* pcCU, TCoeff* pcCoef, UInt uiAbsPartIdx, UInt uiWidth, UInt uiHeight, UInt uiDepth, TextType eTType );
163 
164  Void parseIPCMInfo        ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth);
165
166  Void readTileMarker     ( UInt& uiTileIdx, UInt uiBitsUsed );
167  Void updateContextTables  ( SliceType eSliceType, Int iQp ) { return; }
168#if OL_FLUSH
169  Void decodeFlush() {};
170#endif
171
172  Void xParsePredWeightTable ( TComSlice* pcSlice );
173  Void  parseScalingList               ( TComScalingList* scalingList );
174  Void xDecodeScalingList    ( TComScalingList *scalingList, UInt sizeId, UInt listId);
175  Void parseDFFlag         ( UInt& ruiVal, const Char *pSymbolName );
176  Void parseDFSvlc         ( Int&  riVal,  const Char *pSymbolName  );
177protected:
178#if DBL_CONTROL
179  Void  xParseDblParam       ( TComAPS* aps );
180#endif
181  Void  xParseSaoParam       ( SAOParam* pSaoParam );
182#if SAO_UNIT_INTERLEAVING
183  Void  xParseSaoOffset      (SaoLcuParam* saoLcuParam);
184  Void  xParseSaoUnit        (Int rx, Int ry, Int compIdx, SAOParam* saoParam, Bool& repeatedRow );
185#else
186  Void  xParseSaoSplitParam  ( SAOParam* pSaoParam, Int iPartIdx, Int iYCbCr );
187  Void  xParseSaoOffsetParam ( SAOParam* pSaoParam, Int iPartIdx, Int iYCbCr );
188#endif
189#if LCU_SYNTAX_ALF
190  Void  xParseAlfParam(AlfParamSet* pAlfParamSet, Bool bSentInAPS = true, Int firstLCUAddr = 0, Bool acrossSlice = true, Int numLCUInWidth= -1, Int numLCUInHeight= -1);
191  Void  parseAlfParamSet(AlfParamSet* pAlfParamSet, Int firstLCUAddr, Bool alfAcrossSlice);
192  Void  parseAlfFixedLengthRun(UInt& idx, UInt rx, UInt numLCUInWidth);
193  Void  parseAlfStoredFilterIdx(UInt& idx, UInt numFilterSetsInBuffer);
194#endif
195  Void  xParseAlfParam       ( ALFParam* pAlfParam );
196  Void  xParseAlfCuControlParam(AlfCUCtrlInfo& cAlfParam, Int iNumCUsInPic);
197  Int   xGolombDecode        ( Int k );
198  Bool  xMoreRbspData();
199};
200
201//! \}
202
203#endif // !defined(AFX_TDECCAVLC_H__9732DD64_59B0_4A41_B29E_1A5B18821EAD__INCLUDED_)
204
Note: See TracBrowser for help on using the repository browser.