[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 | Void decodeFlush(); |
---|
| 77 | |
---|
| 78 | #if CABAC_INIT_FLAG |
---|
| 79 | Void resetEntropy (TComSlice* pSlice ); |
---|
[42] | 80 | #else |
---|
[56] | 81 | Void resetEntropywithQPandInitIDC ( Int iQp, Int iID); |
---|
| 82 | Void resetEntropy ( Int iQp, Int iID ) { resetEntropywithQPandInitIDC(iQp, iID); } |
---|
| 83 | Void resetEntropy ( TComSlice* pcSlice ) { resetEntropywithQPandInitIDC(pcSlice->getSliceQp(), pcSlice->getCABACinitIDC());} |
---|
[42] | 84 | #endif |
---|
[56] | 85 | Void setBitstream ( TComInputBitstream* p ) { m_pcBitstream = p; m_pcTDecBinIf->init( p ); } |
---|
[2] | 86 | |
---|
[210] | 87 | #if VIDYO_VPS_INTEGRATION|QC_MVHEVC_B0046 |
---|
[77] | 88 | Void parseVPS ( TComVPS* pcVPS ) {} |
---|
| 89 | #endif |
---|
[332] | 90 | #if HHI_MPI || H3D_QTL |
---|
[56] | 91 | Void parseSPS ( TComSPS* pcSPS, Bool bIsDepth ) {} |
---|
| 92 | #else |
---|
[2] | 93 | Void parseSPS ( TComSPS* pcSPS ) {} |
---|
[56] | 94 | #endif |
---|
| 95 | Void parsePPS ( TComPPS* pcPPS, ParameterSetManagerDecoder *parameterSet ) {} |
---|
| 96 | Void parseAPS ( TComAPS* pAPS ) {} |
---|
[2] | 97 | void parseSEI(SEImessages&) {} |
---|
[56] | 98 | |
---|
[296] | 99 | #if MTK_DEPTH_MERGE_TEXTURE_CANDIDATE_C0137 |
---|
| 100 | Void parseSliceHeader ( TComSlice*& rpcSlice, ParameterSetManagerDecoder *parameterSetManager, AlfCUCtrlInfo &alfCUCtrl, AlfParamSet& alfParamSet, bool isDepth) {} |
---|
| 101 | #else |
---|
[56] | 102 | Void parseSliceHeader ( TComSlice*& rpcSlice, ParameterSetManagerDecoder *parameterSetManager, AlfCUCtrlInfo &alfCUCtrl, AlfParamSet& alfParamSet) {} |
---|
| 103 | #endif |
---|
| 104 | |
---|
[2] | 105 | Void parseTerminatingBit ( UInt& ruiBit ); |
---|
[296] | 106 | #if H3D_IVMP |
---|
[56] | 107 | Void parseMVPIdx ( Int& riMVPIdx, Int iNumAMVPCands ); |
---|
| 108 | #else |
---|
| 109 | Void parseMVPIdx ( Int& riMVPIdx ); |
---|
| 110 | #endif |
---|
[2] | 111 | |
---|
[443] | 112 | #if LGE_SAO_MIGRATION_D0091 |
---|
| 113 | Void parseSaoMaxUvlc ( UInt& val, UInt maxSymbol ); |
---|
| 114 | Void parseSaoMerge ( UInt& ruiVal ); |
---|
| 115 | Void parseSaoTypeIdx ( UInt& ruiVal ); |
---|
| 116 | Void parseSaoUflc ( UInt uiLength, UInt& ruiVal ); |
---|
| 117 | Void parseSaoOneLcuInterleaving(Int rx, Int ry, SAOParam* pSaoParam, TComDataCU* pcCU, Int iCUAddrInSlice, Int iCUAddrUpInSlice, Int allowMergeLeft, Int allowMergeUp); |
---|
| 118 | Void parseSaoOffset (SaoLcuParam* psSaoLcuParam, UInt compIdx); |
---|
| 119 | #else |
---|
[56] | 120 | Void parseSaoUvlc ( UInt& ruiVal ); |
---|
| 121 | Void parseSaoSvlc ( Int& riVal ); |
---|
| 122 | Void parseSaoMergeLeft ( UInt& ruiVal, UInt uiCompIdx ); |
---|
| 123 | Void parseSaoMergeUp ( UInt& ruiVal ); |
---|
| 124 | Void parseSaoTypeIdx ( UInt& ruiVal ); |
---|
| 125 | Void parseSaoUflc ( UInt& ruiVal ); |
---|
| 126 | Void parseSaoOneLcuInterleaving(Int rx, Int ry, SAOParam* pSaoParam, TComDataCU* pcCU, Int iCUAddrInSlice, Int iCUAddrUpInSlice, Bool bLFCrossSliceBoundaryFlag); |
---|
| 127 | Void parseSaoOffset (SaoLcuParam* psSaoLcuParam); |
---|
[443] | 128 | #endif |
---|
[189] | 129 | |
---|
| 130 | #if RWTH_SDC_DLT_B0036 |
---|
[443] | 131 | #if !PKU_QC_DEPTH_INTRA_UNI_D0195 |
---|
[189] | 132 | Void parseSDCFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
| 133 | Void parseSDCPredMode ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
[443] | 134 | #endif |
---|
[189] | 135 | Void parseSDCResidualData ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt uiPart ); |
---|
| 136 | #endif |
---|
[2] | 137 | private: |
---|
| 138 | Void xReadUnarySymbol ( UInt& ruiSymbol, ContextModel* pcSCModel, Int iOffset ); |
---|
| 139 | Void xReadUnaryMaxSymbol ( UInt& ruiSymbol, ContextModel* pcSCModel, Int iOffset, UInt uiMaxSymbol ); |
---|
| 140 | Void xReadEpExGolomb ( UInt& ruiSymbol, UInt uiCount ); |
---|
| 141 | Void xReadGoRiceExGolomb ( UInt &ruiSymbol, UInt &ruiGoRiceParam ); |
---|
[5] | 142 | #if HHI_DMM_WEDGE_INTRA || HHI_DMM_PRED_TEX |
---|
[2] | 143 | Void xReadExGolombLevel ( UInt& ruiSymbol, ContextModel& rcSCModel ); |
---|
| 144 | #endif |
---|
[5] | 145 | #if HHI_DMM_WEDGE_INTRA |
---|
[56] | 146 | Void xParseWedgeFullInfo ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
[2] | 147 | Void xParseWedgeFullDeltaInfo ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
[5] | 148 | |
---|
[2] | 149 | Void xParseWedgePredDirInfo ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
| 150 | Void xParseWedgePredDirDeltaInfo ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
[5] | 151 | #endif |
---|
| 152 | #if HHI_DMM_PRED_TEX |
---|
[296] | 153 | #if LGE_DMM3_SIMP_C0044 |
---|
| 154 | Void xParseWedgePredTexInfo ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
| 155 | #endif |
---|
[2] | 156 | Void xParseWedgePredTexDeltaInfo ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
| 157 | Void xParseContourPredTexDeltaInfo( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
| 158 | #endif |
---|
| 159 | |
---|
[189] | 160 | #if LGE_EDGE_INTRA_A0070 |
---|
[100] | 161 | Void xParseEdgeIntraInfo ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
| 162 | #endif |
---|
| 163 | |
---|
[2] | 164 | private: |
---|
[56] | 165 | TComInputBitstream* m_pcBitstream; |
---|
[2] | 166 | TDecBinIf* m_pcTDecBinIf; |
---|
| 167 | |
---|
[56] | 168 | Int m_iSliceGranularity; //!< slice granularity |
---|
| 169 | |
---|
[2] | 170 | public: |
---|
| 171 | Void parseAlfCtrlFlag ( UInt &ruiAlfCtrlFlag ); |
---|
[56] | 172 | |
---|
| 173 | /// set slice granularity |
---|
| 174 | Void setSliceGranularity(Int iSliceGranularity) {m_iSliceGranularity = iSliceGranularity;} |
---|
| 175 | |
---|
| 176 | /// get slice granularity |
---|
| 177 | Int getSliceGranularity() {return m_iSliceGranularity; } |
---|
| 178 | |
---|
[2] | 179 | Void parseSkipFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
[189] | 180 | #if LGE_ILLUCOMP_B0045 |
---|
| 181 | Void parseICFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
| 182 | #endif |
---|
[2] | 183 | Void parseSplitFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
| 184 | Void parseMergeFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt uiPUIdx ); |
---|
| 185 | Void parseMergeIndex ( TComDataCU* pcCU, UInt& ruiMergeIndex, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
[296] | 186 | #if H3D_IVRP |
---|
[56] | 187 | Void parseResPredFlag ( TComDataCU* pcCU, Bool& rbResPredFlag, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
[5] | 188 | #endif |
---|
[443] | 189 | #if QC_ARP_D0177 |
---|
| 190 | Void parseARPW ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
| 191 | #endif |
---|
[2] | 192 | Void parsePartSize ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
| 193 | Void parsePredMode ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
[443] | 194 | #if PKU_QC_DEPTH_INTRA_UNI_D0195 |
---|
| 195 | Void parseDepthIntraMode ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
| 196 | Void parseDepthModelingTable( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
| 197 | #endif |
---|
[2] | 198 | Void parseIntraDirLumaAng( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
| 199 | |
---|
| 200 | Void parseIntraDirChroma( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
| 201 | |
---|
| 202 | Void parseInterDir ( TComDataCU* pcCU, UInt& ruiInterDir, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
| 203 | Void parseRefFrmIdx ( TComDataCU* pcCU, Int& riRefFrmIdx, UInt uiAbsPartIdx, UInt uiDepth, RefPicList eRefList ); |
---|
| 204 | Void parseMvd ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiPartIdx, UInt uiDepth, RefPicList eRefList ); |
---|
| 205 | |
---|
| 206 | Void parseTransformSubdivFlag( UInt& ruiSubdivFlag, UInt uiLog2TransformBlockSize ); |
---|
| 207 | Void parseQtCbf ( TComDataCU* pcCU, UInt uiAbsPartIdx, TextType eType, UInt uiTrDepth, UInt uiDepth ); |
---|
| 208 | Void parseQtRootCbf ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt& uiQtRootCbf ); |
---|
| 209 | |
---|
| 210 | Void parseDeltaQP ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
| 211 | |
---|
[56] | 212 | Void parseIPCMInfo ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth); |
---|
[2] | 213 | |
---|
[56] | 214 | Void parseLastSignificantXY( UInt& uiPosLastX, UInt& uiPosLastY, Int width, Int height, TextType eTType, UInt uiScanIdx ); |
---|
[2] | 215 | Void parseCoeffNxN ( TComDataCU* pcCU, TCoeff* pcCoef, UInt uiAbsPartIdx, UInt uiWidth, UInt uiHeight, UInt uiDepth, TextType eTType ); |
---|
| 216 | |
---|
[56] | 217 | Void readTileMarker ( UInt& uiTileIdx, UInt uiBitsUsed ); |
---|
| 218 | Void updateContextTables( SliceType eSliceType, Int iQp ); |
---|
| 219 | |
---|
| 220 | Void parseScalingList ( TComScalingList* scalingList ) {} |
---|
| 221 | |
---|
[2] | 222 | private: |
---|
| 223 | UInt m_uiLastDQpNonZero; |
---|
| 224 | UInt m_uiLastQp; |
---|
| 225 | |
---|
[56] | 226 | ContextModel m_contextModels[MAX_NUM_CTX_MOD]; |
---|
| 227 | Int m_numContextModels; |
---|
| 228 | ContextModel3DBuffer m_cCUSplitFlagSCModel; |
---|
[2] | 229 | ContextModel3DBuffer m_cCUSkipFlagSCModel; |
---|
[189] | 230 | #if LGE_ILLUCOMP_B0045 |
---|
| 231 | ContextModel3DBuffer m_cCUICFlagSCModel; |
---|
| 232 | #endif |
---|
[2] | 233 | ContextModel3DBuffer m_cCUMergeFlagExtSCModel; |
---|
| 234 | ContextModel3DBuffer m_cCUMergeIdxExtSCModel; |
---|
[296] | 235 | #if H3D_IVRP |
---|
[2] | 236 | ContextModel3DBuffer m_cResPredFlagSCModel; |
---|
[56] | 237 | #endif |
---|
[443] | 238 | #if QC_ARP_D0177 |
---|
| 239 | ContextModel3DBuffer m_cCUPUARPW; |
---|
| 240 | #endif |
---|
[2] | 241 | ContextModel3DBuffer m_cCUPartSizeSCModel; |
---|
| 242 | ContextModel3DBuffer m_cCUPredModeSCModel; |
---|
[56] | 243 | ContextModel3DBuffer m_cCUAlfCtrlFlagSCModel; |
---|
[2] | 244 | ContextModel3DBuffer m_cCUIntraPredSCModel; |
---|
| 245 | ContextModel3DBuffer m_cCUChromaPredSCModel; |
---|
[56] | 246 | ContextModel3DBuffer m_cCUDeltaQpSCModel; |
---|
[2] | 247 | ContextModel3DBuffer m_cCUInterDirSCModel; |
---|
| 248 | ContextModel3DBuffer m_cCURefPicSCModel; |
---|
| 249 | ContextModel3DBuffer m_cCUMvdSCModel; |
---|
[56] | 250 | ContextModel3DBuffer m_cCUQtCbfSCModel; |
---|
[2] | 251 | ContextModel3DBuffer m_cCUTransSubdivFlagSCModel; |
---|
| 252 | ContextModel3DBuffer m_cCUQtRootCbfSCModel; |
---|
| 253 | |
---|
[56] | 254 | ContextModel3DBuffer m_cCUSigCoeffGroupSCModel; |
---|
[2] | 255 | ContextModel3DBuffer m_cCUSigSCModel; |
---|
| 256 | ContextModel3DBuffer m_cCuCtxLastX; |
---|
| 257 | ContextModel3DBuffer m_cCuCtxLastY; |
---|
| 258 | ContextModel3DBuffer m_cCUOneSCModel; |
---|
| 259 | ContextModel3DBuffer m_cCUAbsSCModel; |
---|
| 260 | |
---|
| 261 | ContextModel3DBuffer m_cMVPIdxSCModel; |
---|
| 262 | |
---|
| 263 | ContextModel3DBuffer m_cALFFlagSCModel; |
---|
| 264 | ContextModel3DBuffer m_cALFUvlcSCModel; |
---|
| 265 | ContextModel3DBuffer m_cALFSvlcSCModel; |
---|
[56] | 266 | ContextModel3DBuffer m_cCUAMPSCModel; |
---|
[443] | 267 | #if LGE_SAO_MIGRATION_D0091 |
---|
| 268 | ContextModel3DBuffer m_cSaoMergeSCModel; |
---|
| 269 | ContextModel3DBuffer m_cSaoTypeIdxSCModel; |
---|
| 270 | #else |
---|
[56] | 271 | ContextModel3DBuffer m_cSaoFlagSCModel; |
---|
| 272 | ContextModel3DBuffer m_cSaoUvlcSCModel; |
---|
| 273 | ContextModel3DBuffer m_cSaoSvlcSCModel; |
---|
| 274 | ContextModel3DBuffer m_cSaoMergeLeftSCModel; |
---|
| 275 | ContextModel3DBuffer m_cSaoMergeUpSCModel; |
---|
| 276 | ContextModel3DBuffer m_cSaoTypeIdxSCModel; |
---|
[443] | 277 | #endif |
---|
[56] | 278 | |
---|
[5] | 279 | #if HHI_DMM_WEDGE_INTRA || HHI_DMM_PRED_TEX |
---|
[443] | 280 | #if !PKU_QC_DEPTH_INTRA_UNI_D0195 |
---|
[56] | 281 | ContextModel3DBuffer m_cDmmFlagSCModel; |
---|
| 282 | ContextModel3DBuffer m_cDmmModeSCModel; |
---|
[443] | 283 | #endif |
---|
[56] | 284 | ContextModel3DBuffer m_cDmmDataSCModel; |
---|
[2] | 285 | #endif |
---|
[189] | 286 | #if LGE_EDGE_INTRA_A0070 |
---|
[100] | 287 | ContextModel3DBuffer m_cEdgeIntraSCModel; |
---|
| 288 | #if LGE_EDGE_INTRA_DELTA_DC |
---|
| 289 | ContextModel3DBuffer m_cEdgeIntraDeltaDCSCModel; |
---|
| 290 | #endif |
---|
| 291 | #endif |
---|
[189] | 292 | |
---|
| 293 | #if RWTH_SDC_DLT_B0036 |
---|
[443] | 294 | #if !PKU_QC_DEPTH_INTRA_UNI_D0195 |
---|
[189] | 295 | ContextModel3DBuffer m_cSDCFlagSCModel; |
---|
[443] | 296 | #else |
---|
| 297 | ContextModel3DBuffer m_cDepthModeModel; |
---|
| 298 | ContextModel3DBuffer m_cDmmDeltaFlagModel; |
---|
| 299 | #endif |
---|
[189] | 300 | |
---|
| 301 | ContextModel3DBuffer m_cSDCResidualFlagSCModel; |
---|
[443] | 302 | #if !RWTH_SDC_CTX_SIMPL_D0032 |
---|
[189] | 303 | ContextModel3DBuffer m_cSDCResidualSignFlagSCModel; |
---|
[443] | 304 | #endif |
---|
[189] | 305 | ContextModel3DBuffer m_cSDCResidualSCModel; |
---|
| 306 | |
---|
| 307 | ContextModel3DBuffer m_cSDCPredModeSCModel; |
---|
| 308 | #endif |
---|
[2] | 309 | }; |
---|
| 310 | |
---|
[56] | 311 | //! \} |
---|
| 312 | |
---|
[2] | 313 | #endif // !defined(AFX_TDECSBAC_H__CFCAAA19_8110_47F4_9A16_810C4B5499D5__INCLUDED_) |
---|