[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 | * |
---|
[56] | 6 | * Copyright (c) 2010-2012, 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 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 | |
---|
[56] | 47 | //! \ingroup TLibDecoder |
---|
| 48 | //! \{ |
---|
| 49 | |
---|
[2] | 50 | // ==================================================================================================================== |
---|
| 51 | // Class definition |
---|
| 52 | // ==================================================================================================================== |
---|
| 53 | |
---|
| 54 | class SEImessages; |
---|
| 55 | |
---|
| 56 | /// CAVLC decoder class |
---|
| 57 | class TDecCavlc : public TDecEntropyIf |
---|
| 58 | { |
---|
| 59 | public: |
---|
| 60 | TDecCavlc(); |
---|
| 61 | virtual ~TDecCavlc(); |
---|
| 62 | |
---|
| 63 | protected: |
---|
[56] | 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 |
---|
[2] | 77 | |
---|
[56] | 78 | Void xReadPCMAlignZero (); |
---|
| 79 | |
---|
[2] | 80 | UInt xGetBit (); |
---|
[56] | 81 | |
---|
| 82 | #if RPS_IN_SPS |
---|
| 83 | void parseShortTermRefPicSet (TComSPS* pcSPS, TComReferencePictureSet* pcRPS, Int idx); |
---|
[2] | 84 | #else |
---|
[56] | 85 | void parseShortTermRefPicSet (TComPPS* pcPPS, TComReferencePictureSet* pcRPS, Int idx); |
---|
[2] | 86 | #endif |
---|
| 87 | private: |
---|
[56] | 88 | TComInputBitstream* m_pcBitstream; |
---|
| 89 | Int m_iSliceGranularity; //!< slice granularity |
---|
[2] | 90 | |
---|
| 91 | Int** m_aaiTempScale; |
---|
| 92 | Int** m_aaiTempOffset; |
---|
| 93 | Int** m_aaiTempPdmScaleNomDelta; |
---|
| 94 | Int** m_aaiTempPdmOffset; |
---|
| 95 | |
---|
| 96 | public: |
---|
[56] | 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);} |
---|
[2] | 101 | Void resetEntropy ( TComSlice* pcSlice ); |
---|
[56] | 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; } |
---|
[2] | 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 ); |
---|
[56] | 114 | |
---|
[77] | 115 | #if VIDYO_VPS_INTEGRATION |
---|
| 116 | Void parseVPS ( TComVPS* pcVPS ); |
---|
| 117 | #endif |
---|
[56] | 118 | #if HHI_MPI |
---|
| 119 | Void parseSPS ( TComSPS* pcSPS, Bool bIsDepth ); |
---|
| 120 | #else |
---|
| 121 | Void parseSPS ( TComSPS* pcSPS ); |
---|
[2] | 122 | #endif |
---|
[56] | 123 | #if TILES_OR_ENTROPY_SYNC_IDC |
---|
| 124 | Void parsePPS ( TComPPS* pcPPS, ParameterSetManagerDecoder *parameterSet); |
---|
[42] | 125 | #else |
---|
[56] | 126 | Void parsePPS ( TComPPS* pcPPS); |
---|
[42] | 127 | #endif |
---|
[56] | 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 |
---|
[2] | 135 | Void parseTerminatingBit ( UInt& ruiBit ); |
---|
| 136 | |
---|
[56] | 137 | #if HHI_INTER_VIEW_MOTION_PRED |
---|
| 138 | Void parseMVPIdx ( Int& riMVPIdx, Int iAMVPCands ); |
---|
| 139 | #else |
---|
| 140 | Void parseMVPIdx ( Int& riMVPIdx ); |
---|
| 141 | #endif |
---|
[2] | 142 | |
---|
| 143 | Void parseSkipFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
[152] | 144 | #if LGE_ILLUCOMP_B0045 |
---|
| 145 | Void parseICFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
| 146 | #endif |
---|
[2] | 147 | Void parseMergeFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt uiPUIdx ); |
---|
| 148 | Void parseMergeIndex ( TComDataCU* pcCU, UInt& ruiMergeIndex, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
[56] | 149 | #if HHI_INTER_VIEW_RESIDUAL_PRED |
---|
| 150 | Void parseResPredFlag ( TComDataCU* pcCU, Bool& rbResPredFlag, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
[5] | 151 | #endif |
---|
[2] | 152 | Void parseSplitFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
| 153 | Void parsePartSize ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
| 154 | Void parsePredMode ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
| 155 | |
---|
| 156 | Void parseIntraDirLumaAng ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
| 157 | |
---|
| 158 | Void parseIntraDirChroma ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
| 159 | |
---|
| 160 | Void parseInterDir ( TComDataCU* pcCU, UInt& ruiInterDir, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
| 161 | Void parseRefFrmIdx ( TComDataCU* pcCU, Int& riRefFrmIdx, UInt uiAbsPartIdx, UInt uiDepth, RefPicList eRefList ); |
---|
| 162 | Void parseMvd ( TComDataCU* pcCU, UInt uiAbsPartAddr,UInt uiPartIdx, UInt uiDepth, RefPicList eRefList ); |
---|
| 163 | |
---|
| 164 | Void parseDeltaQP ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
| 165 | Void parseCoeffNxN ( TComDataCU* pcCU, TCoeff* pcCoef, UInt uiAbsPartIdx, UInt uiWidth, UInt uiHeight, UInt uiDepth, TextType eTType ); |
---|
| 166 | |
---|
[56] | 167 | Void parseIPCMInfo ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth); |
---|
| 168 | |
---|
| 169 | Void readTileMarker ( UInt& uiTileIdx, UInt uiBitsUsed ); |
---|
| 170 | Void updateContextTables ( SliceType eSliceType, Int iQp ) { return; } |
---|
| 171 | #if OL_FLUSH |
---|
| 172 | Void decodeFlush() {}; |
---|
[2] | 173 | #endif |
---|
| 174 | |
---|
[56] | 175 | Void xParsePredWeightTable ( TComSlice* pcSlice ); |
---|
| 176 | Void parseScalingList ( TComScalingList* scalingList ); |
---|
| 177 | Void xDecodeScalingList ( TComScalingList *scalingList, UInt sizeId, UInt listId); |
---|
| 178 | Void parseDFFlag ( UInt& ruiVal, const Char *pSymbolName ); |
---|
| 179 | Void parseDFSvlc ( Int& riVal, const Char *pSymbolName ); |
---|
[177] | 180 | #if RWTH_SDC_DLT_B0036 |
---|
| 181 | Void parseSDCFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
| 182 | Void parseSDCPredMode ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
| 183 | Void parseSDCResidualData ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt uiPart ); |
---|
| 184 | #endif |
---|
[56] | 185 | protected: |
---|
| 186 | #if DBL_CONTROL |
---|
| 187 | Void xParseDblParam ( TComAPS* aps ); |
---|
[2] | 188 | #endif |
---|
[56] | 189 | Void xParseSaoParam ( SAOParam* pSaoParam ); |
---|
| 190 | #if SAO_UNIT_INTERLEAVING |
---|
| 191 | Void xParseSaoOffset (SaoLcuParam* saoLcuParam); |
---|
| 192 | Void xParseSaoUnit (Int rx, Int ry, Int compIdx, SAOParam* saoParam, Bool& repeatedRow ); |
---|
| 193 | #else |
---|
| 194 | Void xParseSaoSplitParam ( SAOParam* pSaoParam, Int iPartIdx, Int iYCbCr ); |
---|
| 195 | Void xParseSaoOffsetParam ( SAOParam* pSaoParam, Int iPartIdx, Int iYCbCr ); |
---|
| 196 | #endif |
---|
| 197 | #if LCU_SYNTAX_ALF |
---|
| 198 | Void xParseAlfParam(AlfParamSet* pAlfParamSet, Bool bSentInAPS = true, Int firstLCUAddr = 0, Bool acrossSlice = true, Int numLCUInWidth= -1, Int numLCUInHeight= -1); |
---|
| 199 | Void parseAlfParamSet(AlfParamSet* pAlfParamSet, Int firstLCUAddr, Bool alfAcrossSlice); |
---|
| 200 | Void parseAlfFixedLengthRun(UInt& idx, UInt rx, UInt numLCUInWidth); |
---|
| 201 | Void parseAlfStoredFilterIdx(UInt& idx, UInt numFilterSetsInBuffer); |
---|
| 202 | #endif |
---|
| 203 | Void xParseAlfParam ( ALFParam* pAlfParam ); |
---|
| 204 | Void xParseAlfCuControlParam(AlfCUCtrlInfo& cAlfParam, Int iNumCUsInPic); |
---|
| 205 | Int xGolombDecode ( Int k ); |
---|
| 206 | Bool xMoreRbspData(); |
---|
| 207 | }; |
---|
[2] | 208 | |
---|
[56] | 209 | //! \} |
---|
| 210 | |
---|
[2] | 211 | #endif // !defined(AFX_TDECCAVLC_H__9732DD64_59B0_4A41_B29E_1A5B18821EAD__INCLUDED_) |
---|
| 212 | |
---|