[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 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 | class SEImessages; |
---|
| 61 | |
---|
| 62 | /// SBAC decoder class |
---|
| 63 | class TDecSbac : public TDecEntropyIf |
---|
| 64 | { |
---|
| 65 | public: |
---|
| 66 | TDecSbac(); |
---|
| 67 | virtual ~TDecSbac(); |
---|
| 68 | |
---|
| 69 | Void init ( TDecBinIf* p ) { m_pcTDecBinIf = p; } |
---|
| 70 | Void uninit ( ) { m_pcTDecBinIf = 0; } |
---|
| 71 | |
---|
[56] | 72 | Void load ( TDecSbac* pScr ); |
---|
| 73 | Void loadContexts ( TDecSbac* pScr ); |
---|
| 74 | Void xCopyFrom ( TDecSbac* pSrc ); |
---|
| 75 | Void xCopyContextsFrom ( TDecSbac* pSrc ); |
---|
| 76 | #if OL_FLUSH |
---|
| 77 | Void decodeFlush(); |
---|
| 78 | #endif |
---|
| 79 | |
---|
| 80 | #if CABAC_INIT_FLAG |
---|
| 81 | Void resetEntropy (TComSlice* pSlice ); |
---|
[42] | 82 | #else |
---|
[56] | 83 | Void resetEntropywithQPandInitIDC ( Int iQp, Int iID); |
---|
| 84 | Void resetEntropy ( Int iQp, Int iID ) { resetEntropywithQPandInitIDC(iQp, iID); } |
---|
| 85 | Void resetEntropy ( TComSlice* pcSlice ) { resetEntropywithQPandInitIDC(pcSlice->getSliceQp(), pcSlice->getCABACinitIDC());} |
---|
[42] | 86 | #endif |
---|
[56] | 87 | Void setBitstream ( TComInputBitstream* p ) { m_pcBitstream = p; m_pcTDecBinIf->init( p ); } |
---|
[2] | 88 | |
---|
[77] | 89 | #if VIDYO_VPS_INTEGRATION |
---|
| 90 | Void parseVPS ( TComVPS* pcVPS ) {} |
---|
| 91 | #endif |
---|
[56] | 92 | #if HHI_MPI |
---|
| 93 | Void parseSPS ( TComSPS* pcSPS, Bool bIsDepth ) {} |
---|
| 94 | #else |
---|
[2] | 95 | Void parseSPS ( TComSPS* pcSPS ) {} |
---|
[56] | 96 | #endif |
---|
| 97 | #if TILES_OR_ENTROPY_SYNC_IDC |
---|
| 98 | Void parsePPS ( TComPPS* pcPPS, ParameterSetManagerDecoder *parameterSet ) {} |
---|
| 99 | #else |
---|
[2] | 100 | Void parsePPS ( TComPPS* pcPPS ) {} |
---|
[56] | 101 | #endif |
---|
| 102 | Void parseAPS ( TComAPS* pAPS ) {} |
---|
[2] | 103 | void parseSEI(SEImessages&) {} |
---|
[56] | 104 | |
---|
| 105 | #if LCU_SYNTAX_ALF |
---|
| 106 | Void parseSliceHeader ( TComSlice*& rpcSlice, ParameterSetManagerDecoder *parameterSetManager, AlfCUCtrlInfo &alfCUCtrl, AlfParamSet& alfParamSet) {} |
---|
| 107 | #else |
---|
| 108 | Void parseSliceHeader ( TComSlice*& rpcSlice, ParameterSetManagerDecoder *parameterSetManager, AlfCUCtrlInfo &alfCUCtrl ) {} |
---|
| 109 | #endif |
---|
| 110 | |
---|
[2] | 111 | Void parseTerminatingBit ( UInt& ruiBit ); |
---|
[56] | 112 | #if HHI_INTER_VIEW_MOTION_PRED |
---|
| 113 | Void parseMVPIdx ( Int& riMVPIdx, Int iNumAMVPCands ); |
---|
| 114 | #else |
---|
| 115 | Void parseMVPIdx ( Int& riMVPIdx ); |
---|
| 116 | #endif |
---|
[2] | 117 | |
---|
[56] | 118 | #if SAO_UNIT_INTERLEAVING |
---|
| 119 | Void parseSaoUvlc ( UInt& ruiVal ); |
---|
| 120 | Void parseSaoSvlc ( Int& riVal ); |
---|
| 121 | Void parseSaoMergeLeft ( UInt& ruiVal, UInt uiCompIdx ); |
---|
| 122 | Void parseSaoMergeUp ( UInt& ruiVal ); |
---|
| 123 | Void parseSaoTypeIdx ( UInt& ruiVal ); |
---|
| 124 | Void parseSaoUflc ( UInt& ruiVal ); |
---|
| 125 | Void parseSaoOneLcuInterleaving(Int rx, Int ry, SAOParam* pSaoParam, TComDataCU* pcCU, Int iCUAddrInSlice, Int iCUAddrUpInSlice, Bool bLFCrossSliceBoundaryFlag); |
---|
| 126 | Void parseSaoOffset (SaoLcuParam* psSaoLcuParam); |
---|
[2] | 127 | #endif |
---|
| 128 | private: |
---|
| 129 | Void xReadUnarySymbol ( UInt& ruiSymbol, ContextModel* pcSCModel, Int iOffset ); |
---|
| 130 | Void xReadUnaryMaxSymbol ( UInt& ruiSymbol, ContextModel* pcSCModel, Int iOffset, UInt uiMaxSymbol ); |
---|
| 131 | Void xReadEpExGolomb ( UInt& ruiSymbol, UInt uiCount ); |
---|
| 132 | Void xReadGoRiceExGolomb ( UInt &ruiSymbol, UInt &ruiGoRiceParam ); |
---|
[5] | 133 | #if HHI_DMM_WEDGE_INTRA || HHI_DMM_PRED_TEX |
---|
[2] | 134 | Void xReadExGolombLevel ( UInt& ruiSymbol, ContextModel& rcSCModel ); |
---|
| 135 | #endif |
---|
[5] | 136 | #if HHI_DMM_WEDGE_INTRA |
---|
[56] | 137 | Void xParseWedgeFullInfo ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
[2] | 138 | Void xParseWedgeFullDeltaInfo ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
[5] | 139 | |
---|
[2] | 140 | Void xParseWedgePredDirInfo ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
| 141 | Void xParseWedgePredDirDeltaInfo ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
[5] | 142 | #endif |
---|
| 143 | #if HHI_DMM_PRED_TEX |
---|
[2] | 144 | Void xParseWedgePredTexDeltaInfo ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
| 145 | Void xParseContourPredTexDeltaInfo( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
| 146 | #endif |
---|
| 147 | |
---|
[100] | 148 | #if LGE_EDGE_INTRA |
---|
| 149 | Void xParseEdgeIntraInfo ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
| 150 | #endif |
---|
| 151 | |
---|
[2] | 152 | private: |
---|
[56] | 153 | TComInputBitstream* m_pcBitstream; |
---|
[2] | 154 | TDecBinIf* m_pcTDecBinIf; |
---|
| 155 | |
---|
[56] | 156 | Int m_iSliceGranularity; //!< slice granularity |
---|
| 157 | |
---|
[2] | 158 | public: |
---|
| 159 | Void parseAlfCtrlFlag ( UInt &ruiAlfCtrlFlag ); |
---|
[56] | 160 | |
---|
| 161 | /// set slice granularity |
---|
| 162 | Void setSliceGranularity(Int iSliceGranularity) {m_iSliceGranularity = iSliceGranularity;} |
---|
| 163 | |
---|
| 164 | /// get slice granularity |
---|
| 165 | Int getSliceGranularity() {return m_iSliceGranularity; } |
---|
| 166 | |
---|
[2] | 167 | Void parseSkipFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
[152] | 168 | #if LGE_ILLUCOMP_B0045 |
---|
| 169 | Void parseICFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
| 170 | #endif |
---|
[2] | 171 | Void parseSplitFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
| 172 | Void parseMergeFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt uiPUIdx ); |
---|
| 173 | Void parseMergeIndex ( TComDataCU* pcCU, UInt& ruiMergeIndex, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
[56] | 174 | #if HHI_INTER_VIEW_RESIDUAL_PRED |
---|
| 175 | Void parseResPredFlag ( TComDataCU* pcCU, Bool& rbResPredFlag, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
[5] | 176 | #endif |
---|
[2] | 177 | Void parsePartSize ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
| 178 | Void parsePredMode ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
| 179 | |
---|
| 180 | Void parseIntraDirLumaAng( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
| 181 | |
---|
| 182 | Void parseIntraDirChroma( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
| 183 | |
---|
| 184 | Void parseInterDir ( TComDataCU* pcCU, UInt& ruiInterDir, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
| 185 | Void parseRefFrmIdx ( TComDataCU* pcCU, Int& riRefFrmIdx, UInt uiAbsPartIdx, UInt uiDepth, RefPicList eRefList ); |
---|
| 186 | Void parseMvd ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiPartIdx, UInt uiDepth, RefPicList eRefList ); |
---|
| 187 | |
---|
| 188 | Void parseTransformSubdivFlag( UInt& ruiSubdivFlag, UInt uiLog2TransformBlockSize ); |
---|
| 189 | Void parseQtCbf ( TComDataCU* pcCU, UInt uiAbsPartIdx, TextType eType, UInt uiTrDepth, UInt uiDepth ); |
---|
| 190 | Void parseQtRootCbf ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt& uiQtRootCbf ); |
---|
| 191 | |
---|
| 192 | Void parseDeltaQP ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
| 193 | |
---|
[56] | 194 | Void parseIPCMInfo ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth); |
---|
[2] | 195 | |
---|
[56] | 196 | Void parseLastSignificantXY( UInt& uiPosLastX, UInt& uiPosLastY, Int width, Int height, TextType eTType, UInt uiScanIdx ); |
---|
[2] | 197 | Void parseCoeffNxN ( TComDataCU* pcCU, TCoeff* pcCoef, UInt uiAbsPartIdx, UInt uiWidth, UInt uiHeight, UInt uiDepth, TextType eTType ); |
---|
| 198 | |
---|
[56] | 199 | Void readTileMarker ( UInt& uiTileIdx, UInt uiBitsUsed ); |
---|
| 200 | Void updateContextTables( SliceType eSliceType, Int iQp ); |
---|
| 201 | |
---|
| 202 | Void parseScalingList ( TComScalingList* scalingList ) {} |
---|
| 203 | |
---|
[2] | 204 | private: |
---|
| 205 | UInt m_uiLastDQpNonZero; |
---|
| 206 | UInt m_uiLastQp; |
---|
| 207 | |
---|
[56] | 208 | ContextModel m_contextModels[MAX_NUM_CTX_MOD]; |
---|
| 209 | Int m_numContextModels; |
---|
| 210 | ContextModel3DBuffer m_cCUSplitFlagSCModel; |
---|
[2] | 211 | ContextModel3DBuffer m_cCUSkipFlagSCModel; |
---|
[152] | 212 | #if LGE_ILLUCOMP_B0045 |
---|
| 213 | ContextModel3DBuffer m_cCUICFlagSCModel; |
---|
| 214 | #endif |
---|
[2] | 215 | ContextModel3DBuffer m_cCUMergeFlagExtSCModel; |
---|
| 216 | ContextModel3DBuffer m_cCUMergeIdxExtSCModel; |
---|
[56] | 217 | #if HHI_INTER_VIEW_RESIDUAL_PRED |
---|
[2] | 218 | ContextModel3DBuffer m_cResPredFlagSCModel; |
---|
[56] | 219 | #endif |
---|
[2] | 220 | ContextModel3DBuffer m_cCUPartSizeSCModel; |
---|
| 221 | ContextModel3DBuffer m_cCUPredModeSCModel; |
---|
[56] | 222 | ContextModel3DBuffer m_cCUAlfCtrlFlagSCModel; |
---|
[2] | 223 | ContextModel3DBuffer m_cCUIntraPredSCModel; |
---|
| 224 | ContextModel3DBuffer m_cCUChromaPredSCModel; |
---|
[56] | 225 | ContextModel3DBuffer m_cCUDeltaQpSCModel; |
---|
[2] | 226 | ContextModel3DBuffer m_cCUInterDirSCModel; |
---|
| 227 | ContextModel3DBuffer m_cCURefPicSCModel; |
---|
| 228 | ContextModel3DBuffer m_cCUMvdSCModel; |
---|
[56] | 229 | ContextModel3DBuffer m_cCUQtCbfSCModel; |
---|
[2] | 230 | ContextModel3DBuffer m_cCUTransSubdivFlagSCModel; |
---|
| 231 | ContextModel3DBuffer m_cCUQtRootCbfSCModel; |
---|
| 232 | |
---|
[56] | 233 | ContextModel3DBuffer m_cCUSigCoeffGroupSCModel; |
---|
[2] | 234 | ContextModel3DBuffer m_cCUSigSCModel; |
---|
| 235 | ContextModel3DBuffer m_cCuCtxLastX; |
---|
| 236 | ContextModel3DBuffer m_cCuCtxLastY; |
---|
| 237 | ContextModel3DBuffer m_cCUOneSCModel; |
---|
| 238 | ContextModel3DBuffer m_cCUAbsSCModel; |
---|
| 239 | |
---|
| 240 | ContextModel3DBuffer m_cMVPIdxSCModel; |
---|
| 241 | |
---|
| 242 | ContextModel3DBuffer m_cALFFlagSCModel; |
---|
| 243 | ContextModel3DBuffer m_cALFUvlcSCModel; |
---|
| 244 | ContextModel3DBuffer m_cALFSvlcSCModel; |
---|
[56] | 245 | #if AMP_CTX |
---|
| 246 | ContextModel3DBuffer m_cCUAMPSCModel; |
---|
| 247 | #else |
---|
| 248 | ContextModel3DBuffer m_cCUXPosiSCModel; |
---|
| 249 | ContextModel3DBuffer m_cCUYPosiSCModel; |
---|
[2] | 250 | #endif |
---|
[56] | 251 | ContextModel3DBuffer m_cSaoFlagSCModel; |
---|
| 252 | ContextModel3DBuffer m_cSaoUvlcSCModel; |
---|
| 253 | ContextModel3DBuffer m_cSaoSvlcSCModel; |
---|
| 254 | #if SAO_UNIT_INTERLEAVING |
---|
| 255 | ContextModel3DBuffer m_cSaoMergeLeftSCModel; |
---|
| 256 | ContextModel3DBuffer m_cSaoMergeUpSCModel; |
---|
| 257 | ContextModel3DBuffer m_cSaoTypeIdxSCModel; |
---|
| 258 | #endif |
---|
| 259 | |
---|
[5] | 260 | #if HHI_DMM_WEDGE_INTRA || HHI_DMM_PRED_TEX |
---|
[56] | 261 | ContextModel3DBuffer m_cDmmFlagSCModel; |
---|
| 262 | ContextModel3DBuffer m_cDmmModeSCModel; |
---|
| 263 | ContextModel3DBuffer m_cDmmDataSCModel; |
---|
[2] | 264 | #endif |
---|
[100] | 265 | #if LGE_EDGE_INTRA |
---|
| 266 | ContextModel3DBuffer m_cEdgeIntraSCModel; |
---|
| 267 | #if LGE_EDGE_INTRA_DELTA_DC |
---|
| 268 | ContextModel3DBuffer m_cEdgeIntraDeltaDCSCModel; |
---|
| 269 | #endif |
---|
| 270 | #endif |
---|
[2] | 271 | }; |
---|
| 272 | |
---|
[56] | 273 | //! \} |
---|
| 274 | |
---|
[2] | 275 | #endif // !defined(AFX_TDECSBAC_H__CFCAAA19_8110_47F4_9A16_810C4B5499D5__INCLUDED_) |
---|