source: SHVCSoftware/branches/SHM-dev/source/Lib/TLibDecoder/TDecCAVLC.h @ 1139

Last change on this file since 1139 was 1029, checked in by seregin, 10 years ago

merge with SHM-upgrade branch

  • Property svn:eol-style set to native
File size: 7.0 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-2014, 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#include "SyntaxElementParser.h"
47
48#if Q0048_CGS_3D_ASYMLUT
49class TCom3DAsymLUT;
50#endif
51//! \ingroup TLibDecoder
52//! \{
53
54// ====================================================================================================================
55// Class definition
56// ====================================================================================================================
57
58/// CAVLC decoder class
59class TDecCavlc : public SyntaxElementParser, public TDecEntropyIf
60{
61public:
62  TDecCavlc();
63  virtual ~TDecCavlc();
64
65protected:
66
67  Void  parseShortTermRefPicSet            (TComSPS* pcSPS, TComReferencePictureSet* pcRPS, Int idx);
68
69public:
70
71  /// rest entropy coder by intial QP and IDC in CABAC
72  Void  resetEntropy        ( TComSlice* /*pcSlice*/  )     { assert(0); };
73  Void  setBitstream        ( TComInputBitstream* p )   { m_pcBitstream = p; }
74  Void  parseTransformSubdivFlag( UInt& ruiSubdivFlag, UInt uiLog2TransformBlockSize );
75  Void  parseQtCbf          ( class TComTU &rTu, const ComponentID compID, const Bool lowestLevel );
76  Void  parseQtRootCbf      ( UInt uiAbsPartIdx, UInt& uiQtRootCbf );
77  Void  parseVPS            ( TComVPS* pcVPS );
78#if !SVC_EXTENSION
79  Void  parseSPS            ( TComSPS* pcSPS );
80  Void  parsePPS            ( TComPPS* pcPPS );
81#endif
82  Void  parseVUI            ( TComVUI* pcVUI, TComSPS* pcSPS );
83  Void  parseSEI            ( SEIMessages& );
84  Void  parsePTL            ( TComPTL *rpcPTL, Bool profilePresentFlag, Int maxNumSubLayersMinus1 );
85  Void  parseProfileTier    (ProfileTierLevel *ptl);
86  Void  parseHrdParameters  (TComHRD *hrd, Bool cprms_present_flag, UInt tempLevelHigh);
87  Void  parseSliceHeader    ( TComSlice* pcSlice, ParameterSetManagerDecoder *parameterSetManager);
88  Void  parseTerminatingBit ( UInt& ruiBit );
89  Void  parseRemainingBytes ( Bool noTrailingBytesExpected );
90
91  Void parseMVPIdx          ( Int& riMVPIdx );
92
93  Void parseSkipFlag        ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth );
94  Void parseCUTransquantBypassFlag( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth );
95  Void parseMergeFlag       ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt uiPUIdx );
96  Void parseMergeIndex      ( TComDataCU* pcCU, UInt& ruiMergeIndex );
97  Void parseSplitFlag       ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth );
98  Void parsePartSize        ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth );
99  Void parsePredMode        ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth );
100
101  Void parseIntraDirLumaAng ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth );
102  Void parseIntraDirChroma  ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth );
103
104  Void parseInterDir        ( TComDataCU* pcCU, UInt& ruiInterDir, UInt uiAbsPartIdx );
105  Void parseRefFrmIdx       ( TComDataCU* pcCU, Int& riRefFrmIdx, RefPicList eRefList );
106  Void parseMvd             ( TComDataCU* pcCU, UInt uiAbsPartAddr,UInt uiPartIdx,    UInt uiDepth, RefPicList eRefList );
107
108  Void parseCrossComponentPrediction( class TComTU &rTu, ComponentID compID );
109
110  Void parseDeltaQP         ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth );
111  Void parseChromaQpAdjustment( TComDataCU* cu, UInt absPartIdx, UInt depth);
112
113  Void parseCoeffNxN        ( class TComTU &rTu, ComponentID compID );
114
115  Void parseTransformSkipFlags ( class TComTU &rTu, ComponentID component );
116
117  Void parseIPCMInfo        ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth);
118
119  Void xParsePredWeightTable ( TComSlice* pcSlice );
120  Void  parseScalingList     ( TComScalingList* scalingList );
121  Void xDecodeScalingList    ( TComScalingList *scalingList, UInt sizeId, UInt listId);
122
123  Void  parseExplicitRdpcmMode( TComTU &rTu, ComponentID compID );
124
125protected:
126  Bool  xMoreRbspData();
127
128#if SVC_EXTENSION
129public:
130  Void  parseVPSExtension   ( TComVPS* pcVPS );
131  Void  defaultVPSExtension ( TComVPS* pcVPS );
132  Void  parseVPSVUI         ( TComVPS* pcVPS );
133  Void  defaultVPSVUI       ( TComVPS* pcVPS );
134#if REPN_FORMAT_IN_VPS
135  Void  parseRepFormat      ( RepFormat *repFormat, RepFormat *repFormatPrev );
136#endif
137#if VPS_DPB_SIZE_TABLE
138  Void  parseVpsDpbSizeTable( TComVPS *vps );
139#endif
140#if VPS_VUI_BSP_HRD_PARAMS
141  Void  parseVpsVuiBspHrdParams( TComVPS *vps );
142#endif
143#if SPS_DPB_PARAMS
144  Void  parseSPS            ( TComSPS* pcSPS ); // it should be removed after macro clean up
145#else
146  Void  parseSPS            ( TComSPS* pcSPS, ParameterSetManagerDecoder *parameterSetManager );
147#endif
148  Void  parseSPSExtension    ( TComSPS* pcSPS );
149#if Q0048_CGS_3D_ASYMLUT
150  Void  parsePPS            ( TComPPS* pcPPS, TCom3DAsymLUT * pc3DAsymLUT , Int nLayerID );
151#else
152  Void  parsePPS            ( TComPPS* pcPPS );
153#endif
154
155protected:
156#if Q0048_CGS_3D_ASYMLUT
157  Void xParse3DAsymLUT( TCom3DAsymLUT * pc3DAsymLUT );
158  Void xParse3DAsymLUTOctant( TCom3DAsymLUT * pc3DAsymLUT , Int nDepth , Int yIdx , Int uIdx , Int vIdx , Int nLength );
159#if R0151_CGS_3D_ASYMLUT_IMPROVE
160#if R0300_CGS_RES_COEFF_CODING
161  Void xReadParam( Int& param, Int flc_bits );
162#else
163  Void xReadParam( Int& param );
164#endif
165#endif
166#endif
167#endif //SVC_EXTENSION
168
169};
170
171//! \}
172
173#endif // !defined(AFX_TDECCAVLC_H__9732DD64_59B0_4A41_B29E_1A5B18821EAD__INCLUDED_)
Note: See TracBrowser for help on using the repository browser.