source: 3DVCSoftware/branches/HTM-6.2-dev3-RWTH-Fix/source/Lib/TLibDecoder/TDecSbac.cpp

Last change on this file was 415, checked in by rwth, 12 years ago
  • removed unnecessary macros
  • Property svn:eol-style set to native
File size: 86.2 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     TDecSbac.cpp
35    \brief    Context-adaptive entropy decoder class
36*/
37
38#include "TDecSbac.h"
39
40//! \ingroup TLibDecoder
41//! \{
42
43//////////////////////////////////////////////////////////////////////
44// Construction/Destruction
45//////////////////////////////////////////////////////////////////////
46
47TDecSbac::TDecSbac() 
48// new structure here
49: m_pcBitstream               ( 0 )
50, m_pcTDecBinIf               ( NULL )
51, m_numContextModels          ( 0 )
52, m_cCUSplitFlagSCModel       ( 1,             1,               NUM_SPLIT_FLAG_CTX            , m_contextModels + m_numContextModels, m_numContextModels )
53, m_cCUSkipFlagSCModel        ( 1,             1,               NUM_SKIP_FLAG_CTX             , m_contextModels + m_numContextModels, m_numContextModels)
54#if LGE_ILLUCOMP_B0045
55, m_cCUICFlagSCModel          ( 1,             1,               NUM_IC_FLAG_CTX               , m_contextModels + m_numContextModels, m_numContextModels)
56#endif
57, m_cCUMergeFlagExtSCModel    ( 1,             1,               NUM_MERGE_FLAG_EXT_CTX        , m_contextModels + m_numContextModels, m_numContextModels)
58, m_cCUMergeIdxExtSCModel     ( 1,             1,               NUM_MERGE_IDX_EXT_CTX         , m_contextModels + m_numContextModels, m_numContextModels)
59#if H3D_IVRP
60, m_cResPredFlagSCModel       ( 1,             1,               NUM_RES_PRED_FLAG_CTX         , m_contextModels + m_numContextModels, m_numContextModels)
61#endif
62, m_cCUPartSizeSCModel        ( 1,             1,               NUM_PART_SIZE_CTX             , m_contextModels + m_numContextModels, m_numContextModels)
63, m_cCUPredModeSCModel        ( 1,             1,               NUM_PRED_MODE_CTX             , m_contextModels + m_numContextModels, m_numContextModels)
64, m_cCUAlfCtrlFlagSCModel     ( 1,             1,               NUM_ALF_CTRL_FLAG_CTX         , m_contextModels + m_numContextModels, m_numContextModels)
65, m_cCUIntraPredSCModel       ( 1,             1,               NUM_ADI_CTX                   , m_contextModels + m_numContextModels, m_numContextModels)
66, m_cCUChromaPredSCModel      ( 1,             1,               NUM_CHROMA_PRED_CTX           , m_contextModels + m_numContextModels, m_numContextModels)
67, m_cCUDeltaQpSCModel         ( 1,             1,               NUM_DELTA_QP_CTX              , m_contextModels + m_numContextModels, m_numContextModels)
68, m_cCUInterDirSCModel        ( 1,             1,               NUM_INTER_DIR_CTX             , m_contextModels + m_numContextModels, m_numContextModels)
69, m_cCURefPicSCModel          ( 1,             1,               NUM_REF_NO_CTX                , m_contextModels + m_numContextModels, m_numContextModels)
70, m_cCUMvdSCModel             ( 1,             1,               NUM_MV_RES_CTX                , m_contextModels + m_numContextModels, m_numContextModels)
71, m_cCUQtCbfSCModel           ( 1,             2,               NUM_QT_CBF_CTX                , m_contextModels + m_numContextModels, m_numContextModels)
72, m_cCUTransSubdivFlagSCModel ( 1,             1,               NUM_TRANS_SUBDIV_FLAG_CTX     , m_contextModels + m_numContextModels, m_numContextModels)
73, m_cCUQtRootCbfSCModel       ( 1,             1,               NUM_QT_ROOT_CBF_CTX           , m_contextModels + m_numContextModels, m_numContextModels)
74, m_cCUSigCoeffGroupSCModel   ( 1,             2,               NUM_SIG_CG_FLAG_CTX           , m_contextModels + m_numContextModels, m_numContextModels)
75, m_cCUSigSCModel             ( 1,             1,               NUM_SIG_FLAG_CTX              , m_contextModels + m_numContextModels, m_numContextModels)
76, m_cCuCtxLastX               ( 1,             2,               NUM_CTX_LAST_FLAG_XY          , m_contextModels + m_numContextModels, m_numContextModels)
77, m_cCuCtxLastY               ( 1,             2,               NUM_CTX_LAST_FLAG_XY          , m_contextModels + m_numContextModels, m_numContextModels)
78, m_cCUOneSCModel             ( 1,             1,               NUM_ONE_FLAG_CTX              , m_contextModels + m_numContextModels, m_numContextModels)
79, m_cCUAbsSCModel             ( 1,             1,               NUM_ABS_FLAG_CTX              , m_contextModels + m_numContextModels, m_numContextModels)
80, m_cMVPIdxSCModel            ( 1,             1,               NUM_MVP_IDX_CTX               , m_contextModels + m_numContextModels, m_numContextModels)
81, m_cALFFlagSCModel           ( 1,             1,               NUM_ALF_FLAG_CTX              , m_contextModels + m_numContextModels, m_numContextModels)
82, m_cALFUvlcSCModel           ( 1,             1,               NUM_ALF_UVLC_CTX              , m_contextModels + m_numContextModels, m_numContextModels)
83, m_cALFSvlcSCModel           ( 1,             1,               NUM_ALF_SVLC_CTX              , m_contextModels + m_numContextModels, m_numContextModels)
84, m_cCUAMPSCModel             ( 1,             1,               NUM_CU_AMP_CTX                , m_contextModels + m_numContextModels, m_numContextModels)
85, m_cSaoFlagSCModel           ( 1,             1,               NUM_SAO_FLAG_CTX              , m_contextModels + m_numContextModels, m_numContextModels)
86, m_cSaoUvlcSCModel           ( 1,             1,               NUM_SAO_UVLC_CTX              , m_contextModels + m_numContextModels, m_numContextModels)
87, m_cSaoSvlcSCModel           ( 1,             1,               NUM_SAO_SVLC_CTX              , m_contextModels + m_numContextModels, m_numContextModels)
88, m_cSaoMergeLeftSCModel      ( 1,             1,               NUM_SAO_MERGE_LEFT_FLAG_CTX   , m_contextModels + m_numContextModels, m_numContextModels)
89, m_cSaoMergeUpSCModel        ( 1,             1,               NUM_SAO_MERGE_UP_FLAG_CTX     , m_contextModels + m_numContextModels, m_numContextModels)
90, m_cSaoTypeIdxSCModel        ( 1,             1,               NUM_SAO_TYPE_IDX_CTX          , m_contextModels + m_numContextModels, m_numContextModels)
91#if HHI_DMM_WEDGE_INTRA || HHI_DMM_PRED_TEX
92#if !PKU_QC_DEPTH_INTRA_UNI_D0195
93, m_cDmmFlagSCModel           ( 1,             1,               NUM_DMM_FLAG_CTX              , m_contextModels + m_numContextModels, m_numContextModels)
94, m_cDmmModeSCModel           ( 1,             1,               NUM_DMM_MODE_CTX              , m_contextModels + m_numContextModels, m_numContextModels)
95#endif
96, m_cDmmDataSCModel           ( 1,             1,               NUM_DMM_DATA_CTX              , m_contextModels + m_numContextModels, m_numContextModels)
97#endif
98#if LGE_EDGE_INTRA_A0070
99, m_cEdgeIntraSCModel         ( 1,             1,               NUM_EDGE_INTRA_CTX            , m_contextModels + m_numContextModels, m_numContextModels)
100#if LGE_EDGE_INTRA_DELTA_DC
101, m_cEdgeIntraDeltaDCSCModel  ( 1,             1,               NUM_EDGE_INTRA_DELTA_DC_CTX   , m_contextModels + m_numContextModels, m_numContextModels)
102#endif
103#endif
104#if RWTH_SDC_DLT_B0036
105#if !PKU_QC_DEPTH_INTRA_UNI_D0195
106, m_cSDCFlagSCModel             ( 1,             1,                 SDC_NUM_FLAG_CTX           , m_contextModels + m_numContextModels, m_numContextModels)
107#else
108, m_cDepthModeModel             ( 1,             1,                 DEPTH_MODE_NUM_FLAG_CTX           , m_contextModels + m_numContextModels, m_numContextModels)
109, m_cDmmDeltaFlagModel             ( 1,             1,                 DMM_DELTA_NUM_FLAG_CTX           , m_contextModels + m_numContextModels, m_numContextModels)
110#endif
111#if RWTH_SDC_CTX_SIMPL_D0032
112, m_cSDCResidualFlagSCModel     ( 1,             1,  SDC_NUM_RESIDUAL_FLAG_CTX  , m_contextModels + m_numContextModels, m_numContextModels)
113, m_cSDCResidualSCModel         ( 1,             1,  SDC_NUM_RESIDUAL_CTX       , m_contextModels + m_numContextModels, m_numContextModels)
114, m_cSDCPredModeSCModel             ( 1,             3,                 SDC_NUM_PRED_MODE_CTX     , m_contextModels + m_numContextModels, m_numContextModels)
115#else
116, m_cSDCResidualFlagSCModel     ( 1,             2,  SDC_NUM_RESIDUAL_FLAG_CTX  , m_contextModels + m_numContextModels, m_numContextModels)
117, m_cSDCResidualSignFlagSCModel ( 1,             2,  SDC_NUM_SIGN_FLAG_CTX      , m_contextModels + m_numContextModels, m_numContextModels)
118, m_cSDCResidualSCModel         ( 1,             2,  SDC_NUM_RESIDUAL_CTX       , m_contextModels + m_numContextModels, m_numContextModels)
119, m_cSDCPredModeSCModel             ( 1,             3,                 SDC_NUM_PRED_MODE_CTX     , m_contextModels + m_numContextModels, m_numContextModels)
120#endif
121#endif
122{
123  assert( m_numContextModels <= MAX_NUM_CTX_MOD );
124  m_iSliceGranularity = 0;
125}
126
127TDecSbac::~TDecSbac()
128{
129}
130
131// ====================================================================================================================
132// Public member functions
133// ====================================================================================================================
134
135#if CABAC_INIT_FLAG
136Void TDecSbac::resetEntropy(TComSlice* pSlice)
137{
138  SliceType sliceType  = pSlice->getSliceType();
139  Int       qp         = pSlice->getSliceQp();
140
141  if (pSlice->getPPS()->getCabacInitPresentFlag() && pSlice->getCabacInitFlag())
142  {
143    switch (sliceType)
144    {
145    case P_SLICE:           // change initialization table to B_SLICE initialization
146      sliceType = B_SLICE; 
147      break;
148    case B_SLICE:           // change initialization table to P_SLICE initialization
149      sliceType = P_SLICE; 
150      break;
151    default     :           // should not occur
152      assert(0);
153    }
154  }
155
156#else
157Void TDecSbac::resetEntropywithQPandInitIDC (Int  qp, Int iID)
158{
159  SliceType sliceType = (SliceType)iID;
160#endif 
161
162  m_cCUSplitFlagSCModel.initBuffer       ( sliceType, qp, (UChar*)INIT_SPLIT_FLAG );
163  m_cCUSkipFlagSCModel.initBuffer        ( sliceType, qp, (UChar*)INIT_SKIP_FLAG );
164#if LGE_ILLUCOMP_B0045
165  m_cCUICFlagSCModel.initBuffer          ( sliceType, qp, (UChar*)INIT_IC_FLAG );
166#endif
167  m_cCUMergeFlagExtSCModel.initBuffer    ( sliceType, qp, (UChar*)INIT_MERGE_FLAG_EXT );
168  m_cCUMergeIdxExtSCModel.initBuffer     ( sliceType, qp, (UChar*)INIT_MERGE_IDX_EXT );
169#if H3D_IVRP
170  m_cResPredFlagSCModel.initBuffer       ( sliceType, qp, (UChar*)INIT_RES_PRED_FLAG );
171#endif
172  m_cCUAlfCtrlFlagSCModel.initBuffer     ( sliceType, qp, (UChar*)INIT_ALF_CTRL_FLAG );
173  m_cCUPartSizeSCModel.initBuffer        ( sliceType, qp, (UChar*)INIT_PART_SIZE );
174  m_cCUAMPSCModel.initBuffer             ( sliceType, qp, (UChar*)INIT_CU_AMP_POS );
175  m_cCUPredModeSCModel.initBuffer        ( sliceType, qp, (UChar*)INIT_PRED_MODE );
176  m_cCUIntraPredSCModel.initBuffer       ( sliceType, qp, (UChar*)INIT_INTRA_PRED_MODE );
177  m_cCUChromaPredSCModel.initBuffer      ( sliceType, qp, (UChar*)INIT_CHROMA_PRED_MODE );
178  m_cCUInterDirSCModel.initBuffer        ( sliceType, qp, (UChar*)INIT_INTER_DIR );
179  m_cCUMvdSCModel.initBuffer             ( sliceType, qp, (UChar*)INIT_MVD );
180  m_cCURefPicSCModel.initBuffer          ( sliceType, qp, (UChar*)INIT_REF_PIC );
181  m_cCUDeltaQpSCModel.initBuffer         ( sliceType, qp, (UChar*)INIT_DQP );
182  m_cCUQtCbfSCModel.initBuffer           ( sliceType, qp, (UChar*)INIT_QT_CBF );
183  m_cCUQtRootCbfSCModel.initBuffer       ( sliceType, qp, (UChar*)INIT_QT_ROOT_CBF );
184  m_cCUSigCoeffGroupSCModel.initBuffer   ( sliceType, qp, (UChar*)INIT_SIG_CG_FLAG );
185  m_cCUSigSCModel.initBuffer             ( sliceType, qp, (UChar*)INIT_SIG_FLAG );
186  m_cCuCtxLastX.initBuffer               ( sliceType, qp, (UChar*)INIT_LAST );
187  m_cCuCtxLastY.initBuffer               ( sliceType, qp, (UChar*)INIT_LAST );
188  m_cCUOneSCModel.initBuffer             ( sliceType, qp, (UChar*)INIT_ONE_FLAG );
189  m_cCUAbsSCModel.initBuffer             ( sliceType, qp, (UChar*)INIT_ABS_FLAG );
190  m_cMVPIdxSCModel.initBuffer            ( sliceType, qp, (UChar*)INIT_MVP_IDX );
191  m_cALFFlagSCModel.initBuffer           ( sliceType, qp, (UChar*)INIT_ALF_FLAG );
192  m_cALFUvlcSCModel.initBuffer           ( sliceType, qp, (UChar*)INIT_ALF_UVLC );
193  m_cALFSvlcSCModel.initBuffer           ( sliceType, qp, (UChar*)INIT_ALF_SVLC );
194  m_cSaoFlagSCModel.initBuffer           ( sliceType, qp, (UChar*)INIT_SAO_FLAG );
195  m_cSaoUvlcSCModel.initBuffer           ( sliceType, qp, (UChar*)INIT_SAO_UVLC );
196  m_cSaoSvlcSCModel.initBuffer           ( sliceType, qp, (UChar*)INIT_SAO_SVLC );
197  m_cSaoMergeLeftSCModel.initBuffer      ( sliceType, qp, (UChar*)INIT_SAO_MERGE_LEFT_FLAG );
198  m_cSaoMergeUpSCModel.initBuffer        ( sliceType, qp, (UChar*)INIT_SAO_MERGE_UP_FLAG );
199  m_cSaoTypeIdxSCModel.initBuffer        ( sliceType, qp, (UChar*)INIT_SAO_TYPE_IDX );
200
201  m_cCUTransSubdivFlagSCModel.initBuffer ( sliceType, qp, (UChar*)INIT_TRANS_SUBDIV_FLAG );
202#if LGE_EDGE_INTRA_A0070
203  m_cEdgeIntraSCModel.initBuffer         ( sliceType, qp, (UChar*)INIT_EDGE_INTRA );
204#if LGE_EDGE_INTRA_DELTA_DC
205  m_cEdgeIntraDeltaDCSCModel.initBuffer  ( sliceType, qp, (UChar*)INIT_EDGE_INTRA_DELTA_DC );
206#endif
207#endif
208  m_uiLastDQpNonZero  = 0;
209#if HHI_DMM_WEDGE_INTRA || HHI_DMM_PRED_TEX
210#if !PKU_QC_DEPTH_INTRA_UNI_D0195
211  m_cDmmFlagSCModel.initBuffer           ( sliceType, qp, (UChar*)INIT_DMM_FLAG );
212  m_cDmmModeSCModel.initBuffer           ( sliceType, qp, (UChar*)INIT_DMM_MODE );
213#endif
214  m_cDmmDataSCModel.initBuffer           ( sliceType, qp, (UChar*)INIT_DMM_DATA );
215#endif
216#if RWTH_SDC_DLT_B0036
217#if !PKU_QC_DEPTH_INTRA_UNI_D0195
218  m_cSDCFlagSCModel.initBuffer              ( sliceType, qp, (UChar*)INIT_SDC_FLAG );
219#else
220  m_cDepthModeModel.initBuffer              ( sliceType, qp, (UChar*)INIT_DEPTHMODE_FLAG );
221  m_cDmmDeltaFlagModel.initBuffer           ( sliceType, qp, (UChar*)INIT_DMMDELTA_FLAG );
222#endif
223  m_cSDCResidualFlagSCModel.initBuffer      ( sliceType, qp, (UChar*)INIT_SDC_RESIDUAL_FLAG );
224  m_cSDCResidualSCModel.initBuffer          ( sliceType, qp, (UChar*)INIT_SDC_RESIDUAL );
225#if !RWTH_SDC_CTX_SIMPL_D0032
226  m_cSDCResidualSignFlagSCModel.initBuffer  ( sliceType, qp, (UChar*)INIT_SDC_SIGN_FLAG );
227#endif
228  m_cSDCPredModeSCModel.initBuffer              ( sliceType, qp, (UChar*)INIT_SDC_PRED_MODE );
229#endif
230 
231  // new structure
232  m_uiLastQp          = qp;
233 
234  m_pcTDecBinIf->start();
235}
236
237/** The function does the following: Read out terminate bit. Flush CABAC. Byte-align for next tile.
238 *  Intialize CABAC states. Start CABAC.
239 */
240Void TDecSbac::updateContextTables( SliceType eSliceType, Int iQp )
241{
242  UInt uiBit;
243  m_pcTDecBinIf->decodeBinTrm(uiBit);
244  m_pcTDecBinIf->finish(); 
245#if !OL_FLUSH_ALIGN
246  // Account for misaligned CABAC.
247  Int iCABACReadAhead = m_pcTDecBinIf->getBitsReadAhead();
248  iCABACReadAhead--;
249  Int iStreamBits = 8-m_pcBitstream->getNumBitsUntilByteAligned();
250  if (iCABACReadAhead >= iStreamBits)
251  {
252    // Misaligned CABAC has read into the 1st byte of the next tile.
253    // Back up a byte prior to alignment.
254    m_pcBitstream->backupByte();
255  }
256#endif
257  m_pcBitstream->readOutTrailingBits();
258  m_cCUSplitFlagSCModel.initBuffer       ( eSliceType, iQp, (UChar*)INIT_SPLIT_FLAG );
259  m_cCUSkipFlagSCModel.initBuffer        ( eSliceType, iQp, (UChar*)INIT_SKIP_FLAG );
260#if LGE_ILLUCOMP_B0045
261  m_cCUICFlagSCModel.initBuffer          ( eSliceType, iQp, (UChar*)INIT_IC_FLAG );
262#endif
263  m_cCUMergeFlagExtSCModel.initBuffer    ( eSliceType, iQp, (UChar*)INIT_MERGE_FLAG_EXT );
264  m_cCUMergeIdxExtSCModel.initBuffer     ( eSliceType, iQp, (UChar*)INIT_MERGE_IDX_EXT );
265#if H3D_IVRP
266  m_cResPredFlagSCModel.initBuffer       ( eSliceType, iQp, (UChar*)INIT_RES_PRED_FLAG );
267#endif
268  m_cCUAlfCtrlFlagSCModel.initBuffer     ( eSliceType, iQp, (UChar*)INIT_ALF_CTRL_FLAG );
269  m_cCUPartSizeSCModel.initBuffer        ( eSliceType, iQp, (UChar*)INIT_PART_SIZE );
270  m_cCUAMPSCModel.initBuffer             ( eSliceType, iQp, (UChar*)INIT_CU_AMP_POS );
271  m_cCUPredModeSCModel.initBuffer        ( eSliceType, iQp, (UChar*)INIT_PRED_MODE );
272  m_cCUIntraPredSCModel.initBuffer       ( eSliceType, iQp, (UChar*)INIT_INTRA_PRED_MODE );
273  m_cCUChromaPredSCModel.initBuffer      ( eSliceType, iQp, (UChar*)INIT_CHROMA_PRED_MODE );
274  m_cCUInterDirSCModel.initBuffer        ( eSliceType, iQp, (UChar*)INIT_INTER_DIR );
275  m_cCUMvdSCModel.initBuffer             ( eSliceType, iQp, (UChar*)INIT_MVD );
276  m_cCURefPicSCModel.initBuffer          ( eSliceType, iQp, (UChar*)INIT_REF_PIC );
277  m_cCUDeltaQpSCModel.initBuffer         ( eSliceType, iQp, (UChar*)INIT_DQP );
278  m_cCUQtCbfSCModel.initBuffer           ( eSliceType, iQp, (UChar*)INIT_QT_CBF );
279  m_cCUQtRootCbfSCModel.initBuffer       ( eSliceType, iQp, (UChar*)INIT_QT_ROOT_CBF );
280  m_cCUSigCoeffGroupSCModel.initBuffer   ( eSliceType, iQp, (UChar*)INIT_SIG_CG_FLAG );
281  m_cCUSigSCModel.initBuffer             ( eSliceType, iQp, (UChar*)INIT_SIG_FLAG );
282  m_cCuCtxLastX.initBuffer               ( eSliceType, iQp, (UChar*)INIT_LAST );
283  m_cCuCtxLastY.initBuffer               ( eSliceType, iQp, (UChar*)INIT_LAST );
284  m_cCUOneSCModel.initBuffer             ( eSliceType, iQp, (UChar*)INIT_ONE_FLAG );
285  m_cCUAbsSCModel.initBuffer             ( eSliceType, iQp, (UChar*)INIT_ABS_FLAG );
286  m_cMVPIdxSCModel.initBuffer            ( eSliceType, iQp, (UChar*)INIT_MVP_IDX );
287  m_cALFFlagSCModel.initBuffer           ( eSliceType, iQp, (UChar*)INIT_ALF_FLAG );
288  m_cALFUvlcSCModel.initBuffer           ( eSliceType, iQp, (UChar*)INIT_ALF_UVLC );
289  m_cALFSvlcSCModel.initBuffer           ( eSliceType, iQp, (UChar*)INIT_ALF_SVLC );
290  m_cSaoFlagSCModel.initBuffer           ( eSliceType, iQp, (UChar*)INIT_SAO_FLAG );
291  m_cSaoUvlcSCModel.initBuffer           ( eSliceType, iQp, (UChar*)INIT_SAO_UVLC );
292  m_cSaoSvlcSCModel.initBuffer           ( eSliceType, iQp, (UChar*)INIT_SAO_SVLC );
293  m_cSaoMergeLeftSCModel.initBuffer      ( eSliceType, iQp, (UChar*)INIT_SAO_MERGE_LEFT_FLAG );
294  m_cSaoMergeUpSCModel.initBuffer        ( eSliceType, iQp, (UChar*)INIT_SAO_MERGE_UP_FLAG );
295  m_cSaoTypeIdxSCModel.initBuffer        ( eSliceType, iQp, (UChar*)INIT_SAO_TYPE_IDX );
296  m_cCUTransSubdivFlagSCModel.initBuffer ( eSliceType, iQp, (UChar*)INIT_TRANS_SUBDIV_FLAG );
297#if HHI_DMM_WEDGE_INTRA || HHI_DMM_PRED_TEX
298#if !PKU_QC_DEPTH_INTRA_UNI_D0195
299  m_cDmmFlagSCModel.initBuffer           ( eSliceType, iQp, (UChar*)INIT_DMM_FLAG );
300  m_cDmmModeSCModel.initBuffer           ( eSliceType, iQp, (UChar*)INIT_DMM_MODE );
301#endif
302  m_cDmmDataSCModel.initBuffer           ( eSliceType, iQp, (UChar*)INIT_DMM_DATA );
303#endif
304#if RWTH_SDC_DLT_B0036
305#if !PKU_QC_DEPTH_INTRA_UNI_D0195
306  m_cSDCFlagSCModel.initBuffer              ( eSliceType, iQp, (UChar*)INIT_SDC_FLAG );
307#else
308  m_cDepthModeModel.initBuffer              ( eSliceType, iQp, (UChar*)INIT_DEPTHMODE_FLAG );
309  m_cDmmDeltaFlagModel.initBuffer           ( eSliceType, iQp, (UChar*)INIT_DMMDELTA_FLAG );
310#endif
311  m_cSDCResidualFlagSCModel.initBuffer      ( eSliceType, iQp, (UChar*)INIT_SDC_RESIDUAL_FLAG );
312  m_cSDCResidualSCModel.initBuffer          ( eSliceType, iQp, (UChar*)INIT_SDC_RESIDUAL );
313#if !RWTH_SDC_CTX_SIMPL_D0032
314  m_cSDCResidualSignFlagSCModel.initBuffer  ( eSliceType, iQp, (UChar*)INIT_SDC_SIGN_FLAG );
315#endif
316  m_cSDCPredModeSCModel.initBuffer              ( eSliceType, iQp, (UChar*)INIT_SDC_PRED_MODE );
317#endif
318
319  m_pcTDecBinIf->start();
320}
321
322Void TDecSbac::readTileMarker( UInt& uiTileIdx, UInt uiBitsUsed )
323{
324  UInt uiSymbol;
325  uiTileIdx = 0;
326  for (Int iShift=uiBitsUsed-1; iShift>=0; iShift--)
327  {
328    m_pcTDecBinIf->decodeBinEP ( uiSymbol );
329    if (uiSymbol)
330    {
331      uiTileIdx |= (1<<iShift);
332    }
333  }
334}
335
336Void TDecSbac::parseTerminatingBit( UInt& ruiBit )
337{
338  m_pcTDecBinIf->decodeBinTrm( ruiBit );
339}
340
341
342Void TDecSbac::xReadUnaryMaxSymbol( UInt& ruiSymbol, ContextModel* pcSCModel, Int iOffset, UInt uiMaxSymbol )
343{
344  if (uiMaxSymbol == 0)
345  {
346    ruiSymbol = 0;
347    return;
348  }
349 
350  m_pcTDecBinIf->decodeBin( ruiSymbol, pcSCModel[0] );
351 
352  if( ruiSymbol == 0 || uiMaxSymbol == 1 )
353  {
354    return;
355  }
356 
357  UInt uiSymbol = 0;
358  UInt uiCont;
359 
360  do
361  {
362    m_pcTDecBinIf->decodeBin( uiCont, pcSCModel[ iOffset ] );
363    uiSymbol++;
364  }
365  while( uiCont && ( uiSymbol < uiMaxSymbol - 1 ) );
366 
367  if( uiCont && ( uiSymbol == uiMaxSymbol - 1 ) )
368  {
369    uiSymbol++;
370  }
371 
372  ruiSymbol = uiSymbol;
373}
374
375Void TDecSbac::xReadEpExGolomb( UInt& ruiSymbol, UInt uiCount )
376{
377  UInt uiSymbol = 0;
378  UInt uiBit = 1;
379 
380  while( uiBit )
381  {
382    m_pcTDecBinIf->decodeBinEP( uiBit );
383    uiSymbol += uiBit << uiCount++;
384  }
385 
386  if ( --uiCount )
387  {
388    UInt bins;
389    m_pcTDecBinIf->decodeBinsEP( bins, uiCount );
390    uiSymbol += bins;
391  }
392 
393  ruiSymbol = uiSymbol;
394}
395
396Void TDecSbac::xReadUnarySymbol( UInt& ruiSymbol, ContextModel* pcSCModel, Int iOffset )
397{
398  m_pcTDecBinIf->decodeBin( ruiSymbol, pcSCModel[0] );
399 
400  if( !ruiSymbol )
401  {
402    return;
403  }
404 
405  UInt uiSymbol = 0;
406  UInt uiCont;
407 
408  do
409  {
410    m_pcTDecBinIf->decodeBin( uiCont, pcSCModel[ iOffset ] );
411    uiSymbol++;
412  }
413  while( uiCont );
414 
415  ruiSymbol = uiSymbol;
416}
417
418/** Parsing of coeff_abs_level_minus3
419 * \param ruiSymbol reference to coeff_abs_level_minus3
420 * \param ruiGoRiceParam reference to Rice parameter
421 * \returns Void
422 */
423Void TDecSbac::xReadGoRiceExGolomb( UInt &ruiSymbol, UInt &ruiGoRiceParam )
424{
425  Bool bExGolomb    = false;
426  UInt uiCodeWord   = 0;
427  UInt uiQuotient   = 0;
428  UInt uiRemainder  = 0;
429  UInt uiMaxVlc     = g_auiGoRiceRange[ ruiGoRiceParam ];
430  UInt uiMaxPreLen  = g_auiGoRicePrefixLen[ ruiGoRiceParam ];
431
432  do
433  {
434    uiQuotient++;
435    m_pcTDecBinIf->decodeBinEP( uiCodeWord );
436  }
437  while( uiCodeWord && uiQuotient < uiMaxPreLen );
438
439  uiCodeWord  = 1 - uiCodeWord;
440  uiQuotient -= uiCodeWord;
441
442  if ( ruiGoRiceParam > 0 )
443  {
444    m_pcTDecBinIf->decodeBinsEP( uiRemainder, ruiGoRiceParam );   
445  }
446
447  ruiSymbol      = uiRemainder + ( uiQuotient << ruiGoRiceParam );
448  bExGolomb      = ruiSymbol == ( uiMaxVlc + 1 );
449
450  if( bExGolomb )
451  {
452    xReadEpExGolomb( uiCodeWord, 0 );
453    ruiSymbol += uiCodeWord;
454  }
455
456  ruiGoRiceParam = g_aauiGoRiceUpdate[ ruiGoRiceParam ][ min<UInt>( ruiSymbol, 23 ) ];
457
458  return;
459}
460
461
462/** Parse I_PCM information.
463 * \param pcCU
464 * \param uiAbsPartIdx
465 * \param uiDepth
466 * \returns Void
467 *
468 * If I_PCM flag indicates that the CU is I_PCM, parse its PCM alignment bits and codes.
469 */
470Void TDecSbac::parseIPCMInfo ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
471{
472  UInt uiSymbol;
473  Int numSubseqIPCM = 0;
474  Bool readPCMSampleFlag = false;
475
476  if(pcCU->getNumSucIPCM() > 0) 
477  {
478    readPCMSampleFlag = true;
479  }
480  else
481  {
482    m_pcTDecBinIf->decodeBinTrm(uiSymbol);
483
484    if (uiSymbol)
485    {
486      readPCMSampleFlag = true;
487      m_pcTDecBinIf->decodeNumSubseqIPCM(numSubseqIPCM);
488      pcCU->setNumSucIPCM(numSubseqIPCM + 1);
489      m_pcTDecBinIf->decodePCMAlignBits();
490    }
491  }
492
493  if (readPCMSampleFlag == true)
494  {
495    Bool bIpcmFlag = true;
496
497
498    pcCU->setPartSizeSubParts  ( SIZE_2Nx2N, uiAbsPartIdx, uiDepth );
499    pcCU->setSizeSubParts      ( g_uiMaxCUWidth>>uiDepth, g_uiMaxCUHeight>>uiDepth, uiAbsPartIdx, uiDepth );
500    pcCU->setIPCMFlagSubParts  ( bIpcmFlag, uiAbsPartIdx, uiDepth );
501
502    UInt uiMinCoeffSize = pcCU->getPic()->getMinCUWidth()*pcCU->getPic()->getMinCUHeight();
503    UInt uiLumaOffset   = uiMinCoeffSize*uiAbsPartIdx;
504    UInt uiChromaOffset = uiLumaOffset>>2;
505
506    Pel* piPCMSample;
507    UInt uiWidth;
508    UInt uiHeight;
509    UInt uiSampleBits;
510    UInt uiX, uiY;
511
512    piPCMSample = pcCU->getPCMSampleY() + uiLumaOffset;
513    uiWidth = pcCU->getWidth(uiAbsPartIdx);
514    uiHeight = pcCU->getHeight(uiAbsPartIdx);
515    uiSampleBits = pcCU->getSlice()->getSPS()->getPCMBitDepthLuma();
516
517    for(uiY = 0; uiY < uiHeight; uiY++)
518    {
519      for(uiX = 0; uiX < uiWidth; uiX++)
520      {
521        UInt uiSample;
522        m_pcTDecBinIf->xReadPCMCode(uiSampleBits, uiSample);
523        piPCMSample[uiX] = uiSample;
524      }
525      piPCMSample += uiWidth;
526    }
527
528    piPCMSample = pcCU->getPCMSampleCb() + uiChromaOffset;
529    uiWidth = pcCU->getWidth(uiAbsPartIdx)/2;
530    uiHeight = pcCU->getHeight(uiAbsPartIdx)/2;
531    uiSampleBits = pcCU->getSlice()->getSPS()->getPCMBitDepthChroma();
532
533    for(uiY = 0; uiY < uiHeight; uiY++)
534    {
535      for(uiX = 0; uiX < uiWidth; uiX++)
536      {
537        UInt uiSample;
538        m_pcTDecBinIf->xReadPCMCode(uiSampleBits, uiSample);
539        piPCMSample[uiX] = uiSample;
540      }
541      piPCMSample += uiWidth;
542    }
543
544    piPCMSample = pcCU->getPCMSampleCr() + uiChromaOffset;
545    uiWidth = pcCU->getWidth(uiAbsPartIdx)/2;
546    uiHeight = pcCU->getHeight(uiAbsPartIdx)/2;
547    uiSampleBits = pcCU->getSlice()->getSPS()->getPCMBitDepthChroma();
548
549    for(uiY = 0; uiY < uiHeight; uiY++)
550    {
551      for(uiX = 0; uiX < uiWidth; uiX++)
552      {
553        UInt uiSample;
554        m_pcTDecBinIf->xReadPCMCode(uiSampleBits, uiSample);
555        piPCMSample[uiX] = uiSample;
556      }
557      piPCMSample += uiWidth;
558    }
559
560    pcCU->setNumSucIPCM( pcCU->getNumSucIPCM() - 1);
561    if(pcCU->getNumSucIPCM() == 0)
562    {
563      m_pcTDecBinIf->resetBac();
564    }
565  }
566}
567
568/** parse skip flag
569 * \param pcCU
570 * \param uiAbsPartIdx
571 * \param uiDepth
572 * \returns Void
573 */
574Void TDecSbac::parseSkipFlag( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
575{
576  if( pcCU->getSlice()->isIntra() )
577  {
578    return;
579  }
580 
581  UInt uiSymbol = 0;
582  UInt uiCtxSkip = pcCU->getCtxSkipFlag( uiAbsPartIdx );
583  m_pcTDecBinIf->decodeBin( uiSymbol, m_cCUSkipFlagSCModel.get( 0, 0, uiCtxSkip ) );
584  DTRACE_CABAC_VL( g_nSymbolCounter++ );
585  DTRACE_CABAC_T( "\tSkipFlag" );
586  DTRACE_CABAC_T( "\tuiCtxSkip: ");
587  DTRACE_CABAC_V( uiCtxSkip );
588  DTRACE_CABAC_T( "\tuiSymbol: ");
589  DTRACE_CABAC_V( uiSymbol );
590  DTRACE_CABAC_T( "\n");
591 
592  if( uiSymbol )
593  {
594    pcCU->setPredModeSubParts( MODE_SKIP,  uiAbsPartIdx, uiDepth );
595    pcCU->setPartSizeSubParts( SIZE_2Nx2N, uiAbsPartIdx, uiDepth );
596    pcCU->setSizeSubParts( g_uiMaxCUWidth>>uiDepth, g_uiMaxCUHeight>>uiDepth, uiAbsPartIdx, uiDepth );
597    pcCU->setMergeFlagSubParts( true , uiAbsPartIdx, 0, uiDepth );
598  }
599}
600
601#if LGE_ILLUCOMP_B0045
602/** parse illumination compensation flag
603 * \param pcCU
604 * \param uiAbsPartIdx
605 * \param uiDepth
606 * \returns Void
607 */
608Void TDecSbac::parseICFlag( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
609{ 
610  UInt uiSymbol = 0;
611  UInt uiCtxIC = pcCU->getCtxICFlag( uiAbsPartIdx );
612  m_pcTDecBinIf->decodeBin( uiSymbol, m_cCUICFlagSCModel.get( 0, 0, uiCtxIC ) );
613  DTRACE_CABAC_VL( g_nSymbolCounter++ );
614  DTRACE_CABAC_T( "\tICFlag" );
615  DTRACE_CABAC_T( "\tuiCtxIC: ");
616  DTRACE_CABAC_V( uiCtxIC );
617  DTRACE_CABAC_T( "\tuiSymbol: ");
618  DTRACE_CABAC_V( uiSymbol );
619  DTRACE_CABAC_T( "\n");
620 
621  pcCU->setICFlagSubParts( uiSymbol ? true : false , uiAbsPartIdx, 0, uiDepth );
622}
623#endif
624
625
626/** parse merge flag
627 * \param pcCU
628 * \param uiAbsPartIdx
629 * \param uiDepth
630 * \param uiPUIdx
631 * \returns Void
632 */
633Void TDecSbac::parseMergeFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt uiPUIdx )
634{
635  UInt uiSymbol;
636  m_pcTDecBinIf->decodeBin( uiSymbol, *m_cCUMergeFlagExtSCModel.get( 0 ) );
637  pcCU->setMergeFlagSubParts( uiSymbol ? true : false, uiAbsPartIdx, uiPUIdx, uiDepth );
638
639  DTRACE_CABAC_VL( g_nSymbolCounter++ );
640  DTRACE_CABAC_T( "\tMergeFlag: " );
641  DTRACE_CABAC_V( uiSymbol );
642  DTRACE_CABAC_T( "\tAddress: " );
643  DTRACE_CABAC_V( pcCU->getAddr() );
644  DTRACE_CABAC_T( "\tuiAbsPartIdx: " );
645  DTRACE_CABAC_V( uiAbsPartIdx );
646  DTRACE_CABAC_T( "\n" );
647}
648
649Void TDecSbac::parseMergeIndex ( TComDataCU* pcCU, UInt& ruiMergeIndex, UInt uiAbsPartIdx, UInt uiDepth )
650{
651  UInt uiNumCand = MRG_MAX_NUM_CANDS;
652  UInt uiUnaryIdx = 0;
653  uiNumCand = pcCU->getSlice()->getMaxNumMergeCand();
654#if HHI_MPI
655  const Bool bMVIAvailable = pcCU->getSlice()->getSPS()->getUseMVI() && pcCU->getSlice()->getSliceType() != I_SLICE;
656  const UInt uiMviMergePos = bMVIAvailable ? HHI_MPI_MERGE_POS : uiNumCand;
657#endif
658  if ( uiNumCand > 1 )
659  {
660    for( ; uiUnaryIdx < uiNumCand - 1; ++uiUnaryIdx )
661    {
662      UInt uiSymbol = 0;
663      if ( uiUnaryIdx==0 )
664      {
665        m_pcTDecBinIf->decodeBin( uiSymbol, m_cCUMergeIdxExtSCModel.get( 0, 0, 0 ) );
666      }
667      else
668      {
669        m_pcTDecBinIf->decodeBinEP( uiSymbol );
670      }
671      if( uiSymbol == 0 )
672      {
673        break;
674      }
675    }
676  }
677  ruiMergeIndex = uiUnaryIdx;
678
679  DTRACE_CABAC_VL( g_nSymbolCounter++ )
680  DTRACE_CABAC_T( "\tparseMergeIndex()" )
681  DTRACE_CABAC_T( "\tuiMRGIdx= " )
682  DTRACE_CABAC_V( ruiMergeIndex )
683  DTRACE_CABAC_T( "\n" )
684#if HHI_MPI
685  if( ruiMergeIndex > uiMviMergePos )
686  {
687    assert( bMVIAvailable );
688    ruiMergeIndex--;
689  }
690  else if( ruiMergeIndex == uiMviMergePos )
691  {
692    assert( bMVIAvailable );
693    pcCU->setTextureModeDepthSubParts( uiDepth, uiAbsPartIdx, uiDepth );
694  }
695#endif
696}
697
698#if H3D_IVRP
699Void
700TDecSbac::parseResPredFlag( TComDataCU* pcCU, Bool& rbResPredFlag, UInt uiAbsPartIdx, UInt uiDepth )
701{
702  UInt uiCtx    = pcCU->getCtxResPredFlag( uiAbsPartIdx );
703  UInt uiSymbol = 0;
704  m_pcTDecBinIf->decodeBin( uiSymbol, m_cResPredFlagSCModel.get( 0, 0, uiCtx ) );
705  rbResPredFlag = ( uiSymbol != 0 );
706}
707#endif
708
709#if H3D_IVMP
710Void TDecSbac::parseMVPIdx      ( Int& riMVPIdx, Int iNumAMVPCands )
711{
712  UInt uiSymbol;
713  xReadUnaryMaxSymbol(uiSymbol, m_cMVPIdxSCModel.get(0), 1, iNumAMVPCands-1);
714  riMVPIdx = uiSymbol;
715}
716#else
717Void TDecSbac::parseMVPIdx      ( Int& riMVPIdx )
718{
719  UInt uiSymbol;
720  xReadUnaryMaxSymbol(uiSymbol, m_cMVPIdxSCModel.get(0), 1, AMVP_MAX_NUM_CANDS-1);
721  riMVPIdx = uiSymbol;
722}
723#endif
724
725Void TDecSbac::parseSplitFlag     ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
726{
727  if( uiDepth == g_uiMaxCUDepth - g_uiAddCUDepth )
728  {
729    pcCU->setDepthSubParts( uiDepth, uiAbsPartIdx );
730    return;
731  }
732 
733  UInt uiSymbol;
734
735#if H3D_QTL
736  Bool bParseSplitFlag    = true;
737
738  TComSPS *sps            = pcCU->getPic()->getSlice(0)->getSPS();
739  TComPic *pcTexture      = pcCU->getSlice()->getTexturePic();
740  Bool bDepthMapDetect    = (pcTexture != NULL);
741  Bool bIntraSliceDetect  = (pcCU->getSlice()->getSliceType() == I_SLICE);
742
743  Bool rapPic     = (pcCU->getSlice()->getNalUnitType() == NAL_UNIT_CODED_SLICE_IDR || pcCU->getSlice()->getNalUnitType() == NAL_UNIT_CODED_SLICE_CRA);
744  if(bDepthMapDetect && !bIntraSliceDetect && !rapPic && sps->getUseQTLPC())
745  {
746    TComDataCU *pcTextureCU = pcTexture->getCU(pcCU->getAddr());
747    assert(pcTextureCU->getDepth(uiAbsPartIdx) >= uiDepth);
748    bParseSplitFlag         = (pcTextureCU->getDepth(uiAbsPartIdx) > uiDepth);
749  }
750
751  if(bParseSplitFlag)
752  {
753#endif
754    m_pcTDecBinIf->decodeBin( uiSymbol, m_cCUSplitFlagSCModel.get( 0, 0, pcCU->getCtxSplitFlag( uiAbsPartIdx, uiDepth ) ) );
755    DTRACE_CABAC_VL( g_nSymbolCounter++ )
756    DTRACE_CABAC_T( "\tSplitFlag\n" )
757#if H3D_QTL
758  }
759  else
760    uiSymbol = 0;
761#endif
762
763  pcCU->setDepthSubParts( uiDepth + uiSymbol, uiAbsPartIdx );
764 
765  return;
766}
767
768/** parse partition size
769 * \param pcCU
770 * \param uiAbsPartIdx
771 * \param uiDepth
772 * \returns Void
773 */
774Void TDecSbac::parsePartSize( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
775{
776  UInt uiSymbol, uiMode = 0;
777  PartSize eMode;
778
779#if H3D_QTL
780  Bool bParsePartSize    = true;
781  TComSPS *sps           = pcCU->getPic()->getSlice(0)->getSPS();
782  TComPic *pcTexture     = pcCU->getSlice()->getTexturePic();
783  Bool bDepthMapDetect   = (pcTexture != NULL);
784  Bool bIntraSliceDetect = (pcCU->getSlice()->getSliceType() == I_SLICE);
785
786  Bool rapPic     = (pcCU->getSlice()->getNalUnitType() == NAL_UNIT_CODED_SLICE_IDR || pcCU->getSlice()->getNalUnitType() == NAL_UNIT_CODED_SLICE_CRA);
787  if(bDepthMapDetect && !bIntraSliceDetect && !rapPic && sps->getUseQTLPC())
788  {
789    TComDataCU *pcTextureCU = pcTexture->getCU(pcCU->getAddr());
790    assert(pcTextureCU->getDepth(uiAbsPartIdx) >= uiDepth);
791    if (pcTextureCU->getDepth(uiAbsPartIdx) == uiDepth && pcTextureCU->getPartitionSize( uiAbsPartIdx ) != SIZE_NxN)
792    {
793      bParsePartSize = false;
794      eMode          = SIZE_2Nx2N;
795    }
796  }
797#endif
798 
799  if ( pcCU->isIntra( uiAbsPartIdx ) )
800  {
801#if H3D_QTL
802    if(bParsePartSize)
803    {
804#endif
805      uiSymbol = 1;
806      if( uiDepth == g_uiMaxCUDepth - g_uiAddCUDepth )
807      {
808        m_pcTDecBinIf->decodeBin( uiSymbol, m_cCUPartSizeSCModel.get( 0, 0, 0) );
809      }
810      eMode = uiSymbol ? SIZE_2Nx2N : SIZE_NxN;
811#if H3D_QTL
812    }
813#endif
814    UInt uiTrLevel = 0;   
815    UInt uiWidthInBit  = g_aucConvertToBit[pcCU->getWidth(uiAbsPartIdx)]+2;
816    UInt uiTrSizeInBit = g_aucConvertToBit[pcCU->getSlice()->getSPS()->getMaxTrSize()]+2;
817    uiTrLevel          = uiWidthInBit >= uiTrSizeInBit ? uiWidthInBit - uiTrSizeInBit : 0;
818    if( eMode == SIZE_NxN )
819    {
820      pcCU->setTrIdxSubParts( 1+uiTrLevel, uiAbsPartIdx, uiDepth );
821    }
822    else
823    {
824      pcCU->setTrIdxSubParts( uiTrLevel, uiAbsPartIdx, uiDepth );
825    }
826  }
827  else
828  {
829#if H3D_QTL
830    if(bParsePartSize)
831    {
832#endif
833      UInt uiMaxNumBits = 2;
834      if( uiDepth == g_uiMaxCUDepth - g_uiAddCUDepth && !( pcCU->getSlice()->getSPS()->getDisInter4x4() && (g_uiMaxCUWidth>>uiDepth) == 8 && (g_uiMaxCUHeight>>uiDepth) == 8 ) )
835      {
836        uiMaxNumBits ++;
837      }
838      for ( UInt ui = 0; ui < uiMaxNumBits; ui++ )
839      {
840        m_pcTDecBinIf->decodeBin( uiSymbol, m_cCUPartSizeSCModel.get( 0, 0, ui) );
841        if ( uiSymbol )
842        {
843          break;
844        }
845        uiMode++;
846      }
847      eMode = (PartSize) uiMode;
848      if ( pcCU->getSlice()->getSPS()->getAMPAcc( uiDepth ) )
849      {
850        if (eMode == SIZE_2NxN)
851        {
852            m_pcTDecBinIf->decodeBin(uiSymbol, m_cCUAMPSCModel.get( 0, 0, 0 ));
853          if (uiSymbol == 0)
854          {
855            m_pcTDecBinIf->decodeBinEP(uiSymbol);
856            eMode = (uiSymbol == 0? SIZE_2NxnU : SIZE_2NxnD);
857          }
858        }
859        else if (eMode == SIZE_Nx2N)
860        {
861          m_pcTDecBinIf->decodeBin(uiSymbol, m_cCUAMPSCModel.get( 0, 0, 0 ));
862          if (uiSymbol == 0)
863          {
864            m_pcTDecBinIf->decodeBinEP(uiSymbol);
865            eMode = (uiSymbol == 0? SIZE_nLx2N : SIZE_nRx2N);
866          }
867        }
868      }
869#if H3D_QTL
870    }
871#endif
872  }
873  pcCU->setPartSizeSubParts( eMode, uiAbsPartIdx, uiDepth );
874  pcCU->setSizeSubParts( g_uiMaxCUWidth>>uiDepth, g_uiMaxCUHeight>>uiDepth, uiAbsPartIdx, uiDepth );
875}
876
877/** parse prediction mode
878 * \param pcCU
879 * \param uiAbsPartIdx
880 * \param uiDepth
881 * \returns Void
882 */
883Void TDecSbac::parsePredMode( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
884{
885  if( pcCU->getSlice()->isIntra() )
886  {
887    pcCU->setPredModeSubParts( MODE_INTRA, uiAbsPartIdx, uiDepth );
888    return;
889  }
890 
891  UInt uiSymbol;
892  Int  iPredMode = MODE_INTER;
893  m_pcTDecBinIf->decodeBin( uiSymbol, m_cCUPredModeSCModel.get( 0, 0, 0 ) );
894  iPredMode += uiSymbol;
895  pcCU->setPredModeSubParts( (PredMode)iPredMode, uiAbsPartIdx, uiDepth );
896}
897#if PKU_QC_DEPTH_INTRA_UNI_D0195
898Void TDecSbac::parseDepthIntraMode  ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
899{
900  UInt uiPuIdx = ( pcCU->getWidth(uiAbsPartIdx) == 64 )? 2 : ( ( pcCU->getPartitionSize(uiAbsPartIdx) == SIZE_NxN && pcCU->getWidth(uiAbsPartIdx) == 8 )? 0 : 1);
901  UInt uiDir = 0;
902  Bool bSDCFlag = 0;
903  UInt uiSymbol = 1;
904  UInt uiCode = 0 ;
905  UInt uiBinNum = 0;
906  UInt uiCtxDepthMode = 0;
907  if ( uiPuIdx ==2 )
908  {
909    while(uiBinNum<2 && uiSymbol)
910    {
911      uiCtxDepthMode = uiPuIdx*3 + uiBinNum;
912      m_pcTDecBinIf->decodeBin(uiSymbol,m_cDepthModeModel.get(0,0,uiCtxDepthMode));
913      uiCode = (uiCode<<1)+uiSymbol;
914      uiBinNum++;
915    }
916    if (uiCode == 0)      { uiDir = PLANAR_IDX; bSDCFlag = 1;}
917    else if (uiCode == 2) { uiDir = 0;          bSDCFlag = 0;}
918    else if (uiCode == 3) { uiDir = DC_IDX;     bSDCFlag = 1;}
919  }
920  else if ( uiPuIdx ==0 )
921  {
922    while(uiBinNum<3 && uiSymbol)
923    {
924      uiCtxDepthMode = uiPuIdx*3 + ( uiBinNum >= 2? 2 : uiBinNum );
925      m_pcTDecBinIf->decodeBin(uiSymbol,m_cDepthModeModel.get(0,0,uiCtxDepthMode));
926      uiCode = (uiCode<<1)+uiSymbol;
927      uiBinNum++;
928    }
929    if (uiCode == 0)      { uiDir = 0;                     bSDCFlag = 0;}
930    else if (uiCode == 2) { uiDir = DMM_WEDGE_FULL_IDX;    bSDCFlag = 0;}
931    else if (uiCode == 6) { uiDir = DMM_WEDGE_PREDTEX_IDX; bSDCFlag = 0;}
932    else if (uiCode == 7) { uiDir = EDGE_INTRA_IDX;        bSDCFlag = 0;}
933  }
934  else
935  {
936    uiCtxDepthMode = uiPuIdx*3 ;
937    m_pcTDecBinIf->decodeBin(uiSymbol,m_cDepthModeModel.get(0,0,uiCtxDepthMode));
938    uiCode = (uiCode<<1)+uiSymbol;
939    if (!uiSymbol)
940    {
941      uiCtxDepthMode = uiPuIdx*3 + 1;
942      m_pcTDecBinIf->decodeBin(uiSymbol,m_cDepthModeModel.get(0,0,uiCtxDepthMode));
943      uiCode = (uiCode<<1)+uiSymbol;
944      if (uiSymbol) 
945      { 
946        uiCtxDepthMode = uiPuIdx*3 + 2;
947        m_pcTDecBinIf->decodeBin(uiSymbol,m_cDepthModeModel.get(0,0,uiCtxDepthMode));
948        uiCode = (uiCode<<1)+uiSymbol;
949      }
950    }
951    else
952    {
953      uiCtxDepthMode = uiPuIdx*3 + 1;
954      m_pcTDecBinIf->decodeBin(uiSymbol,m_cDepthModeModel.get(0,0,uiCtxDepthMode));
955      uiCode = (uiCode<<1)+uiSymbol;
956      if (!uiSymbol) 
957      { 
958        uiCtxDepthMode = uiPuIdx*3 + 2;
959        m_pcTDecBinIf->decodeBin(uiSymbol,m_cDepthModeModel.get(0,0,uiCtxDepthMode));
960        uiCode = (uiCode<<1)+uiSymbol;
961      }
962      else
963      {
964        uiBinNum = 0;
965        while( uiSymbol && uiBinNum<3 )
966        {
967          uiCtxDepthMode = uiPuIdx*3 + 2;
968          m_pcTDecBinIf->decodeBin(uiSymbol,m_cDepthModeModel.get(0,0,uiCtxDepthMode));
969          uiCode = (uiCode<<1)+uiSymbol;
970          uiBinNum++;
971        }
972      }
973    }
974    if (uiCode == 0)       { uiDir = PLANAR_IDX;              bSDCFlag = 1;}
975    else if (uiCode == 2)  { uiDir = 5;                       bSDCFlag = 0;}
976    else if (uiCode == 3)  { uiDir = DMM_WEDGE_FULL_IDX;      bSDCFlag = 1;}
977    else if (uiCode == 4)  { uiDir = DMM_WEDGE_FULL_IDX;      bSDCFlag = 0;}
978    else if (uiCode == 5)  { uiDir = DMM_CONTOUR_PREDTEX_IDX; bSDCFlag = 0;}
979    else if (uiCode == 6)  { uiDir = DMM_WEDGE_PREDTEX_IDX;   bSDCFlag = 0;}
980    else if (uiCode == 14) { uiDir = DC_IDX;                  bSDCFlag = 1;}
981    else if (uiCode == 31) { uiDir = DMM_WEDGE_PREDDIR_IDX;   bSDCFlag = 0;}
982    else if (uiCode == 30) { uiDir = EDGE_INTRA_IDX;          bSDCFlag = 0;}
983  }
984  pcCU->setLumaIntraDirSubParts( (UChar)uiDir, uiAbsPartIdx, uiDepth );
985  pcCU->setSDCFlagSubParts(bSDCFlag, uiAbsPartIdx, 0, uiDepth); 
986}
987Void TDecSbac::parseDepthModelingTable  ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
988{
989  parseDepthIntraMode(pcCU,uiAbsPartIdx,uiDepth);
990 
991  UInt uiDir = pcCU->getLumaIntraDir(uiAbsPartIdx);
992  Bool bSdcFlag =  pcCU->getSDCAvailable(uiAbsPartIdx) && pcCU->getSDCFlag(uiAbsPartIdx);
993  Bool bDmmFlag = (uiDir >= NUM_INTRA_MODE && uiDir < EDGE_INTRA_IDX &&(!bSdcFlag))? 1:0;
994  if (uiDir >= NUM_INTRA_MODE && uiDir < EDGE_INTRA_IDX)//DMM modes and SDC DMM1
995  {
996    if( uiDir == DMM_WEDGE_FULL_IDX )          { xParseWedgeFullInfo          ( pcCU, uiAbsPartIdx, uiDepth ); }
997    else if( uiDir == DMM_WEDGE_PREDTEX_IDX )  { xParseWedgePredTexInfo       ( pcCU, uiAbsPartIdx, uiDepth ); }
998    else if( uiDir == DMM_WEDGE_PREDDIR_IDX )  { xParseWedgePredDirInfo       ( pcCU, uiAbsPartIdx, uiDepth ); }
999  } 
1000  else if(uiDir >= EDGE_INTRA_IDX)//CCM mode
1001  {
1002    xParseEdgeIntraInfo( pcCU, uiAbsPartIdx, uiDepth );
1003  }
1004
1005  UInt uiSymbol;
1006  if (bDmmFlag)
1007  {
1008    if (bDmmFlag)
1009    {
1010      m_pcTDecBinIf->decodeBin( uiSymbol , m_cDmmDeltaFlagModel.get(0, 0, 0) );
1011      uiDir += uiSymbol;
1012    }
1013    if (uiSymbol)
1014    {
1015      UInt uiDC;
1016      Int iDC = 0,iDC1 = 0,iDC2 = 0;
1017      for ( Int i = 0; i  <2; i++ )
1018      {
1019        xReadExGolombLevel( uiDC, m_cDmmDataSCModel.get(0, 0, 1) );
1020        iDC = uiDC;
1021        if ( uiDC )
1022        {
1023          UInt uiSign;
1024          m_pcTDecBinIf->decodeBinEP( uiSign );
1025          if ( uiSign )
1026          {
1027            iDC = -iDC;
1028          }
1029        }
1030        if ( i == 0 ) { iDC1 = iDC; }
1031        else          { iDC2 = iDC; }
1032      }
1033
1034      if( uiDir == DMM_WEDGE_FULL_D_IDX )   
1035      { 
1036        pcCU->setWedgeFullDeltaDC1SubParts( iDC1, uiAbsPartIdx, uiDepth );
1037        pcCU->setWedgeFullDeltaDC2SubParts( iDC2, uiAbsPartIdx, uiDepth );
1038      }
1039      else if( uiDir == DMM_WEDGE_PREDDIR_D_IDX ) 
1040      { 
1041        pcCU->setWedgePredDirDeltaDC1SubParts( iDC1, uiAbsPartIdx, uiDepth );
1042        pcCU->setWedgePredDirDeltaDC2SubParts( iDC2, uiAbsPartIdx, uiDepth );
1043      }
1044      else if( uiDir == DMM_WEDGE_PREDTEX_D_IDX) 
1045      { 
1046        pcCU->setWedgePredTexDeltaDC1SubParts( iDC1, uiAbsPartIdx, uiDepth );
1047        pcCU->setWedgePredTexDeltaDC2SubParts( iDC2, uiAbsPartIdx, uiDepth );
1048      }
1049      else if (uiDir== DMM_CONTOUR_PREDTEX_D_IDX )
1050      {
1051        pcCU->setContourPredTexDeltaDC1SubParts( iDC1, uiAbsPartIdx, uiDepth );
1052        pcCU->setContourPredTexDeltaDC2SubParts( iDC2, uiAbsPartIdx, uiDepth );
1053      }
1054    }
1055  }
1056  else if (uiDir >= EDGE_INTRA_IDX)
1057  {
1058    m_pcTDecBinIf->decodeBin( uiSymbol, m_cEdgeIntraDeltaDCSCModel.get(0, 0, 0) );
1059    if( uiSymbol )
1060    {
1061      uiDir = EDGE_INTRA_DELTA_IDX;
1062      Int iDeltaDC = 0,iDeltaDC0 = 0,iDeltaDC1 = 0;
1063      for (Int i = 0; i<2; i++)
1064      {
1065        xReadExGolombLevel( (UInt &) iDeltaDC, m_cEdgeIntraDeltaDCSCModel.get(0, 0, 1) );
1066        if( iDeltaDC != 0 )
1067        {
1068          UInt uiSign;
1069          m_pcTDecBinIf->decodeBinEP( uiSign );
1070          if ( uiSign )
1071          {
1072            iDeltaDC = -iDeltaDC;
1073          }
1074        }
1075        if ( i == 0 ) { iDeltaDC0 = iDeltaDC; }
1076        else          { iDeltaDC1 = iDeltaDC; }
1077      }
1078
1079      pcCU->setEdgeDeltaDC0( uiAbsPartIdx, iDeltaDC0 );
1080      pcCU->setEdgeDeltaDC1( uiAbsPartIdx, iDeltaDC1 );
1081    }
1082  }
1083  else if(bSdcFlag)//SDC mode
1084  {
1085    assert(pcCU->getPartitionSize(uiAbsPartIdx)!=SIZE_NxN);
1086    pcCU->setTrIdxSubParts(0, uiAbsPartIdx, uiDepth);
1087    pcCU->setCbfSubParts(1, 1, 1, uiAbsPartIdx, uiDepth);
1088
1089    UInt uiNumSegments = ( uiDir == DC_IDX || uiDir == PLANAR_IDX )? 1 : 2;
1090    for (int uiSeg=0; uiSeg<uiNumSegments; uiSeg++)
1091    {
1092      parseSDCResidualData(pcCU, uiAbsPartIdx, uiDepth, uiSeg);
1093    }
1094  }
1095
1096  pcCU->setLumaIntraDirSubParts( (UChar)uiDir, uiAbsPartIdx, uiDepth );
1097}
1098#endif
1099Void TDecSbac::parseIntraDirLumaAng  ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
1100{
1101  UInt uiSymbol;
1102  Int  intraPredMode;
1103#if PKU_QC_DEPTH_INTRA_UNI_D0195
1104  if (pcCU->getSlice()->getSPS()->isDepth())
1105  {
1106    parseDepthModelingTable(pcCU, uiAbsPartIdx, uiDepth);
1107  }
1108  if (pcCU->getLumaIntraDir(uiAbsPartIdx)<NUM_INTRA_MODE && !pcCU->getSDCFlag(uiAbsPartIdx))
1109  {
1110#else
1111#if HHI_DMM_WEDGE_INTRA || HHI_DMM_PRED_TEX
1112  UInt uiFlag = 0;
1113  if( pcCU->getSlice()->getSPS()->getUseDMM() && (g_uiMaxCUWidth>>uiDepth) <= DMM_WEDGEMODEL_MAX_SIZE )
1114  {
1115    m_pcTDecBinIf->decodeBin( uiFlag, m_cDmmFlagSCModel.get(0, 0, 0) );
1116  }
1117  if( uiFlag )
1118  {
1119    UInt uiDMMode;
1120
1121#if HHI_DMM_WEDGE_INTRA && HHI_DMM_PRED_TEX
1122    m_pcTDecBinIf->decodeBin( uiSymbol, m_cDmmModeSCModel.get(0, 0, 0) ); uiDMMode  = uiSymbol;
1123    m_pcTDecBinIf->decodeBin( uiSymbol, m_cDmmModeSCModel.get(0, 0, 0) ); uiDMMode |= uiSymbol << 1;
1124    if ( pcCU->getPartitionSize( uiAbsPartIdx ) != SIZE_NxN && g_uiMaxCUWidth>>uiDepth > 4 )
1125    {
1126      m_pcTDecBinIf->decodeBin( uiSymbol, m_cDmmModeSCModel.get(0, 0, 0) ); uiDMMode |= uiSymbol << 2;
1127    }
1128#else
1129    m_pcTDecBinIf->decodeBin( uiSymbol, m_cDmmModeSCModel.get(0, 0, 0) ); uiDMMode  = uiSymbol;
1130    if ( pcCU->getPartitionSize( uiAbsPartIdx ) != SIZE_NxN && g_uiMaxCUWidth>>uiDepth > 4 )
1131    {
1132      m_pcTDecBinIf->decodeBin( uiSymbol, m_cDmmModeSCModel.get(0, 0, 0) ); uiDMMode |= uiSymbol << 1;
1133    }
1134#endif
1135    intraPredMode = uiDMMode + NUM_INTRA_MODE;
1136
1137#if HHI_DMM_WEDGE_INTRA
1138    if( intraPredMode == DMM_WEDGE_FULL_IDX )          { xParseWedgeFullInfo          ( pcCU, uiAbsPartIdx, uiDepth ); }
1139    if( intraPredMode == DMM_WEDGE_FULL_D_IDX )        { xParseWedgeFullDeltaInfo     ( pcCU, uiAbsPartIdx, uiDepth ); }
1140    if( intraPredMode == DMM_WEDGE_PREDDIR_IDX )       { xParseWedgePredDirInfo       ( pcCU, uiAbsPartIdx, uiDepth ); }
1141    if( intraPredMode == DMM_WEDGE_PREDDIR_D_IDX )     { xParseWedgePredDirDeltaInfo  ( pcCU, uiAbsPartIdx, uiDepth ); }
1142#endif
1143#if HHI_DMM_PRED_TEX
1144    if( intraPredMode == DMM_WEDGE_PREDTEX_D_IDX )     { xParseWedgePredTexDeltaInfo  ( pcCU, uiAbsPartIdx, uiDepth ); }
1145#if LGE_DMM3_SIMP_C0044
1146    if( intraPredMode == DMM_WEDGE_PREDTEX_IDX )       { xParseWedgePredTexInfo       ( pcCU, uiAbsPartIdx, uiDepth ); }
1147#endif
1148    if( intraPredMode == DMM_CONTOUR_PREDTEX_D_IDX )   { xParseContourPredTexDeltaInfo( pcCU, uiAbsPartIdx, uiDepth ); }
1149#endif
1150  }
1151  else
1152  {
1153#endif
1154
1155#if LGE_EDGE_INTRA_A0070
1156    Bool bCodeEdgeIntra = false;
1157    if( pcCU->getSlice()->getSPS()->isDepth() )
1158    {
1159      UInt uiPUWidth = pcCU->getWidth( uiAbsPartIdx ) >> (pcCU->getPartitionSize( uiAbsPartIdx ) == SIZE_NxN ? 1 : 0);
1160      if( uiPUWidth <= LGE_EDGE_INTRA_MAX_SIZE && uiPUWidth >= LGE_EDGE_INTRA_MIN_SIZE )
1161        bCodeEdgeIntra = true;
1162    }
1163#endif
1164#endif
1165    Int uiPreds[3] = {-1, -1, -1};
1166    Int uiPredNum = pcCU->getIntraDirLumaPredictor(uiAbsPartIdx, uiPreds); 
1167#if !PKU_QC_DEPTH_INTRA_UNI_D0195
1168#if LGE_EDGE_INTRA_A0070
1169    UInt uiCheckBit = 0;
1170#endif
1171#endif
1172
1173    m_pcTDecBinIf->decodeBin( uiSymbol, m_cCUIntraPredSCModel.get( 0, 0, 0) );
1174
1175    if ( uiSymbol )
1176    {
1177      m_pcTDecBinIf->decodeBinEP( uiSymbol );
1178      if (uiSymbol)
1179      {
1180        m_pcTDecBinIf->decodeBinEP( uiSymbol );
1181        uiSymbol++;
1182      }
1183      intraPredMode = uiPreds[uiSymbol];
1184    }
1185    else
1186    {
1187      intraPredMode = 0;
1188
1189
1190      m_pcTDecBinIf->decodeBinsEP( uiSymbol, 5 );
1191#if !PKU_QC_DEPTH_INTRA_UNI_D0195
1192#if LGE_EDGE_INTRA_A0070
1193      if (bCodeEdgeIntra)
1194      {
1195        if (uiSymbol==31)
1196        {
1197          m_pcTDecBinIf->decodeBinsEP(uiCheckBit,1);
1198          if (uiCheckBit)
1199            uiSymbol = EDGE_INTRA_IDX;
1200        }
1201      }
1202#endif
1203#endif
1204      intraPredMode = uiSymbol;
1205
1206      //postponed sorting of MPMs (only in remaining branch)
1207      if (uiPreds[0] > uiPreds[1])
1208      { 
1209        std::swap(uiPreds[0], uiPreds[1]); 
1210      }
1211      if (uiPreds[0] > uiPreds[2])
1212      {
1213        std::swap(uiPreds[0], uiPreds[2]);
1214      }
1215      if (uiPreds[1] > uiPreds[2])
1216      {
1217        std::swap(uiPreds[1], uiPreds[2]);
1218      }
1219#if !PKU_QC_DEPTH_INTRA_UNI_D0195
1220#if LGE_EDGE_INTRA_A0070
1221      if ( intraPredMode != EDGE_INTRA_IDX)
1222      {
1223#endif
1224#endif
1225        for ( Int i = 0; i < uiPredNum; i++ )
1226        {
1227          intraPredMode += ( intraPredMode >= uiPreds[i] );
1228        }
1229#if !PKU_QC_DEPTH_INTRA_UNI_D0195
1230#if LGE_EDGE_INTRA_A0070
1231      }
1232#endif
1233#endif
1234    }
1235
1236#if !PKU_QC_DEPTH_INTRA_UNI_D0195
1237#if LGE_EDGE_INTRA_A0070
1238    if( intraPredMode == EDGE_INTRA_IDX )
1239    {
1240      xParseEdgeIntraInfo( pcCU, uiAbsPartIdx, uiDepth );
1241#if LGE_EDGE_INTRA_DELTA_DC
1242      m_pcTDecBinIf->decodeBin( uiSymbol, m_cEdgeIntraDeltaDCSCModel.get(0, 0, 0) );
1243      if( uiSymbol )
1244      {
1245        intraPredMode = EDGE_INTRA_DELTA_IDX;
1246        Int iDeltaDC0;
1247        Int iDeltaDC1;
1248
1249        xReadExGolombLevel( (UInt &) iDeltaDC0, m_cEdgeIntraDeltaDCSCModel.get(0, 0, 1) );
1250        if( iDeltaDC0 != 0 )
1251        {
1252          UInt uiSign;
1253          m_pcTDecBinIf->decodeBinEP( uiSign );
1254          if ( uiSign )
1255          {
1256            iDeltaDC0 = -iDeltaDC0;
1257          }
1258        }
1259        xReadExGolombLevel( (UInt &) iDeltaDC1, m_cEdgeIntraDeltaDCSCModel.get(0, 0, 1) );
1260        if( iDeltaDC1 != 0 )
1261        {
1262          UInt uiSign;
1263          m_pcTDecBinIf->decodeBinEP( uiSign );
1264          if ( uiSign )
1265          {
1266            iDeltaDC1 = -iDeltaDC1;
1267          }
1268        }
1269
1270        pcCU->setEdgeDeltaDC0( uiAbsPartIdx, iDeltaDC0 );
1271        pcCU->setEdgeDeltaDC1( uiAbsPartIdx, iDeltaDC1 );
1272      }
1273#endif
1274    }
1275#endif
1276
1277#if HHI_DMM_WEDGE_INTRA || HHI_DMM_PRED_TEX
1278  }
1279#endif
1280  pcCU->setLumaIntraDirSubParts( (UChar)intraPredMode, uiAbsPartIdx, uiDepth );
1281#else
1282    pcCU->setLumaIntraDirSubParts( (UChar)intraPredMode, uiAbsPartIdx, uiDepth );
1283  }
1284#endif
1285}
1286
1287Void TDecSbac::parseIntraDirChroma( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
1288{
1289  UInt uiSymbol;
1290
1291  m_pcTDecBinIf->decodeBin( uiSymbol, m_cCUChromaPredSCModel.get( 0, 0, 0 ) );
1292
1293  if( uiSymbol == 0 )
1294  {
1295    uiSymbol = DM_CHROMA_IDX;
1296  } 
1297  else 
1298  {
1299    if( pcCU->getSlice()->getSPS()->getUseLMChroma() )
1300    {
1301      m_pcTDecBinIf->decodeBin( uiSymbol, m_cCUChromaPredSCModel.get( 0, 0, 1 ) );
1302    }
1303    else
1304    {
1305      uiSymbol = 1;
1306    }
1307
1308    if( uiSymbol == 0 )
1309    {
1310      uiSymbol = LM_CHROMA_IDX;
1311    } 
1312    else
1313    {
1314      UInt uiIPredMode;
1315      m_pcTDecBinIf->decodeBinsEP( uiIPredMode, 2 );
1316      UInt uiAllowedChromaDir[ NUM_CHROMA_MODE ];
1317      pcCU->getAllowedChromaDir( uiAbsPartIdx, uiAllowedChromaDir );
1318      uiSymbol = uiAllowedChromaDir[ uiIPredMode ];
1319    }
1320  }
1321  pcCU->setChromIntraDirSubParts( uiSymbol, uiAbsPartIdx, uiDepth );
1322  return;
1323}
1324
1325Void TDecSbac::parseInterDir( TComDataCU* pcCU, UInt& ruiInterDir, UInt uiAbsPartIdx, UInt uiDepth )
1326{
1327  UInt uiSymbol;
1328  const UInt uiCtx = pcCU->getCtxInterDir( uiAbsPartIdx );
1329  ContextModel *pCtx = m_cCUInterDirSCModel.get( 0 );
1330  m_pcTDecBinIf->decodeBin( uiSymbol, *( pCtx + uiCtx ) );
1331
1332  if( uiSymbol )
1333  {
1334    uiSymbol = 2;
1335  }
1336
1337  uiSymbol++;
1338  ruiInterDir = uiSymbol;
1339  return;
1340}
1341
1342Void TDecSbac::parseRefFrmIdx( TComDataCU* pcCU, Int& riRefFrmIdx, UInt uiAbsPartIdx, UInt uiDepth, RefPicList eRefList )
1343{
1344  UInt uiSymbol;
1345
1346  if(pcCU->getSlice()->getNumRefIdx(REF_PIC_LIST_C ) > 0 && eRefList==REF_PIC_LIST_C)
1347  {
1348    ContextModel *pCtx = m_cCURefPicSCModel.get( 0 );
1349    m_pcTDecBinIf->decodeBin( uiSymbol, *pCtx );
1350
1351    if( uiSymbol )
1352    {
1353      xReadUnaryMaxSymbol( uiSymbol, pCtx + 1, 1, pcCU->getSlice()->getNumRefIdx( REF_PIC_LIST_C )-2 );
1354      uiSymbol++;
1355    }
1356    riRefFrmIdx = uiSymbol;
1357  }
1358  else
1359  {
1360    ContextModel *pCtx = m_cCURefPicSCModel.get( 0 );
1361    m_pcTDecBinIf->decodeBin( uiSymbol, *pCtx );
1362
1363    if( uiSymbol )
1364    {
1365      xReadUnaryMaxSymbol( uiSymbol, pCtx + 1, 1, pcCU->getSlice()->getNumRefIdx( eRefList )-2 );
1366      uiSymbol++;
1367    }
1368    riRefFrmIdx = uiSymbol;
1369  }
1370
1371  return;
1372}
1373
1374Void TDecSbac::parseMvd( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiPartIdx, UInt uiDepth, RefPicList eRefList )
1375{
1376  UInt uiSymbol;
1377  UInt uiHorAbs;
1378  UInt uiVerAbs;
1379  UInt uiHorSign = 0;
1380  UInt uiVerSign = 0;
1381  ContextModel *pCtx = m_cCUMvdSCModel.get( 0 );
1382
1383  if(pcCU->getSlice()->getMvdL1ZeroFlag() && eRefList == REF_PIC_LIST_1 && pcCU->getInterDir(uiAbsPartIdx)==3)
1384  {
1385    uiHorAbs=0;
1386    uiVerAbs=0;
1387  }
1388  else
1389  {
1390
1391    m_pcTDecBinIf->decodeBin( uiHorAbs, *pCtx );
1392    m_pcTDecBinIf->decodeBin( uiVerAbs, *pCtx );
1393
1394    const Bool bHorAbsGr0 = uiHorAbs != 0;
1395    const Bool bVerAbsGr0 = uiVerAbs != 0;
1396    pCtx++;
1397
1398    if( bHorAbsGr0 )
1399    {
1400      m_pcTDecBinIf->decodeBin( uiSymbol, *pCtx );
1401      uiHorAbs += uiSymbol;
1402    }
1403
1404    if( bVerAbsGr0 )
1405    {
1406      m_pcTDecBinIf->decodeBin( uiSymbol, *pCtx );
1407      uiVerAbs += uiSymbol;
1408    }
1409
1410    if( bHorAbsGr0 )
1411    {
1412      if( 2 == uiHorAbs )
1413      {
1414        xReadEpExGolomb( uiSymbol, 1 );
1415        uiHorAbs += uiSymbol;
1416      }
1417
1418      m_pcTDecBinIf->decodeBinEP( uiHorSign );
1419    }
1420
1421    if( bVerAbsGr0 )
1422    {
1423      if( 2 == uiVerAbs )
1424      {
1425        xReadEpExGolomb( uiSymbol, 1 );
1426        uiVerAbs += uiSymbol;
1427      }
1428
1429      m_pcTDecBinIf->decodeBinEP( uiVerSign );
1430    }
1431
1432  }
1433
1434  const TComMv cMv( uiHorSign ? -Int( uiHorAbs ): uiHorAbs, uiVerSign ? -Int( uiVerAbs ) : uiVerAbs );
1435  pcCU->getCUMvField( eRefList )->setAllMvd( cMv, pcCU->getPartitionSize( uiAbsPartIdx ), uiAbsPartIdx, uiDepth, uiPartIdx );
1436  return;
1437}
1438
1439
1440Void TDecSbac::parseTransformSubdivFlag( UInt& ruiSubdivFlag, UInt uiLog2TransformBlockSize )
1441{
1442  m_pcTDecBinIf->decodeBin( ruiSubdivFlag, m_cCUTransSubdivFlagSCModel.get( 0, 0, uiLog2TransformBlockSize ) );
1443  DTRACE_CABAC_VL( g_nSymbolCounter++ )
1444  DTRACE_CABAC_T( "\tparseTransformSubdivFlag()" )
1445  DTRACE_CABAC_T( "\tsymbol=" )
1446  DTRACE_CABAC_V( ruiSubdivFlag )
1447  DTRACE_CABAC_T( "\tctx=" )
1448  DTRACE_CABAC_V( uiLog2TransformBlockSize )
1449  DTRACE_CABAC_T( "\n" )
1450}
1451
1452Void TDecSbac::parseQtRootCbf( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt& uiQtRootCbf )
1453{
1454  UInt uiSymbol;
1455  const UInt uiCtx = 0;
1456  m_pcTDecBinIf->decodeBin( uiSymbol , m_cCUQtRootCbfSCModel.get( 0, 0, uiCtx ) );
1457  DTRACE_CABAC_VL( g_nSymbolCounter++ )
1458  DTRACE_CABAC_T( "\tparseQtRootCbf()" )
1459  DTRACE_CABAC_T( "\tsymbol=" )
1460  DTRACE_CABAC_V( uiSymbol )
1461  DTRACE_CABAC_T( "\tctx=" )
1462  DTRACE_CABAC_V( uiCtx )
1463  DTRACE_CABAC_T( "\tuiAbsPartIdx=" )
1464  DTRACE_CABAC_V( uiAbsPartIdx )
1465  DTRACE_CABAC_T( "\n" )
1466 
1467  uiQtRootCbf = uiSymbol;
1468}
1469
1470Void TDecSbac::parseDeltaQP( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
1471{
1472  Int qp;
1473  UInt uiDQp;
1474  Int  iDQp;
1475 
1476  m_pcTDecBinIf->decodeBin( uiDQp, m_cCUDeltaQpSCModel.get( 0, 0, 0 ) );
1477 
1478  if ( uiDQp == 0 )
1479  {
1480    qp = pcCU->getRefQP(uiAbsPartIdx);
1481  }
1482  else
1483  {
1484    UInt uiSign;
1485    Int qpBdOffsetY = pcCU->getSlice()->getSPS()->getQpBDOffsetY();
1486    m_pcTDecBinIf->decodeBinEP(uiSign);
1487
1488    UInt uiMaxAbsDQpMinus1 = 24 + (qpBdOffsetY/2) + (uiSign);
1489    UInt uiAbsDQpMinus1;
1490    xReadUnaryMaxSymbol (uiAbsDQpMinus1,  &m_cCUDeltaQpSCModel.get( 0, 0, 1 ), 1, uiMaxAbsDQpMinus1);
1491
1492    iDQp = uiAbsDQpMinus1 + 1;
1493
1494    if(uiSign)
1495    {
1496      iDQp = -iDQp;
1497    }
1498
1499    qp = (((Int) pcCU->getRefQP( uiAbsPartIdx ) + iDQp + 52 + 2*qpBdOffsetY )%(52+qpBdOffsetY)) - qpBdOffsetY;
1500  }
1501 
1502  UInt uiAbsQpCUPartIdx = (uiAbsPartIdx>>(8-(pcCU->getSlice()->getPPS()->getMaxCuDQPDepth()<<1)))<<(8-(pcCU->getSlice()->getPPS()->getMaxCuDQPDepth()<<1)) ;
1503  UInt uiQpCUDepth =   min(uiDepth,pcCU->getSlice()->getPPS()->getMaxCuDQPDepth()) ;
1504  pcCU->setQPSubParts( qp, uiAbsQpCUPartIdx, uiQpCUDepth );
1505}
1506
1507Void TDecSbac::parseQtCbf( TComDataCU* pcCU, UInt uiAbsPartIdx, TextType eType, UInt uiTrDepth, UInt uiDepth )
1508{
1509  UInt uiSymbol;
1510  const UInt uiCtx = pcCU->getCtxQtCbf( uiAbsPartIdx, eType, uiTrDepth );
1511  m_pcTDecBinIf->decodeBin( uiSymbol , m_cCUQtCbfSCModel.get( 0, eType ? TEXT_CHROMA: eType, uiCtx ) );
1512 
1513  DTRACE_CABAC_VL( g_nSymbolCounter++ )
1514  DTRACE_CABAC_T( "\tparseQtCbf()" )
1515  DTRACE_CABAC_T( "\tsymbol=" )
1516  DTRACE_CABAC_V( uiSymbol )
1517  DTRACE_CABAC_T( "\tctx=" )
1518  DTRACE_CABAC_V( uiCtx )
1519  DTRACE_CABAC_T( "\tetype=" )
1520  DTRACE_CABAC_V( eType )
1521  DTRACE_CABAC_T( "\tuiAbsPartIdx=" )
1522  DTRACE_CABAC_V( uiAbsPartIdx )
1523  DTRACE_CABAC_T( "\n" )
1524 
1525  pcCU->setCbfSubParts( uiSymbol << uiTrDepth, eType, uiAbsPartIdx, uiDepth );
1526}
1527
1528/** Parse (X,Y) position of the last significant coefficient
1529 * \param uiPosLastX reference to X component of last coefficient
1530 * \param uiPosLastY reference to Y component of last coefficient
1531 * \param width  Block width
1532 * \param height Block height
1533 * \param eTType plane type / luminance or chrominance
1534 * \param uiScanIdx scan type (zig-zag, hor, ver)
1535 *
1536 * This method decodes the X and Y component within a block of the last significant coefficient.
1537 */
1538Void TDecSbac::parseLastSignificantXY( UInt& uiPosLastX, UInt& uiPosLastY, Int width, Int height, TextType eTType, UInt uiScanIdx )
1539{
1540  UInt uiLast;
1541  ContextModel *pCtxX = m_cCuCtxLastX.get( 0, eTType );
1542  ContextModel *pCtxY = m_cCuCtxLastY.get( 0, eTType );
1543
1544  // posX
1545  Int widthCtx = eTType ? 4 : width;
1546  const UInt *puiCtxIdxX = g_uiLastCtx + ( g_aucConvertToBit[ widthCtx ] * ( g_aucConvertToBit[ widthCtx ] + 3 ) );
1547  for( uiPosLastX = 0; uiPosLastX < g_uiGroupIdx[ width - 1 ]; uiPosLastX++ )
1548  {
1549    if ( eTType  )
1550    {
1551      m_pcTDecBinIf->decodeBin( uiLast, *( pCtxX + (uiPosLastX>>g_aucConvertToBit[ width ])  ) );
1552    }
1553    else
1554    {
1555      m_pcTDecBinIf->decodeBin( uiLast, *( pCtxX + puiCtxIdxX[ uiPosLastX ] ) );
1556    }
1557    if( !uiLast )
1558    {
1559      break;
1560    }
1561  }
1562
1563  // posY
1564  Int heightCtx = eTType? 4 : height;
1565  const UInt *puiCtxIdxY = g_uiLastCtx + ( g_aucConvertToBit[ heightCtx ] * ( g_aucConvertToBit[ heightCtx ] + 3 ) );
1566  for( uiPosLastY = 0; uiPosLastY < g_uiGroupIdx[ height - 1 ]; uiPosLastY++ )
1567  {
1568    if (eTType)
1569    {
1570      m_pcTDecBinIf->decodeBin( uiLast, *( pCtxY + (uiPosLastY>>g_aucConvertToBit[ height ]) ) );
1571    }
1572    else
1573    {
1574      m_pcTDecBinIf->decodeBin( uiLast, *( pCtxY + puiCtxIdxY[ uiPosLastY ] ) );
1575    }
1576    if( !uiLast )
1577    {
1578      break;
1579    }
1580  }
1581  if ( uiPosLastX > 3 )
1582  {
1583    UInt uiTemp  = 0;
1584    UInt uiCount = ( uiPosLastX - 2 ) >> 1;
1585    for ( Int i = uiCount - 1; i >= 0; i-- )
1586    {
1587      m_pcTDecBinIf->decodeBinEP( uiLast );
1588      uiTemp += uiLast << i;
1589    }
1590    uiPosLastX = g_uiMinInGroup[ uiPosLastX ] + uiTemp;
1591  }
1592  if ( uiPosLastY > 3 )
1593  {
1594    UInt uiTemp  = 0;
1595    UInt uiCount = ( uiPosLastY - 2 ) >> 1;
1596    for ( Int i = uiCount - 1; i >= 0; i-- )
1597    {
1598      m_pcTDecBinIf->decodeBinEP( uiLast );
1599      uiTemp += uiLast << i;
1600    }
1601    uiPosLastY = g_uiMinInGroup[ uiPosLastY ] + uiTemp;
1602  }
1603 
1604  if( uiScanIdx == SCAN_VER )
1605  {
1606    swap( uiPosLastX, uiPosLastY );
1607  }
1608}
1609
1610Void TDecSbac::parseCoeffNxN( TComDataCU* pcCU, TCoeff* pcCoef, UInt uiAbsPartIdx, UInt uiWidth, UInt uiHeight, UInt uiDepth, TextType eTType )
1611{
1612  DTRACE_CABAC_VL( g_nSymbolCounter++ )
1613  DTRACE_CABAC_T( "\tparseCoeffNxN()\teType=" )
1614  DTRACE_CABAC_V( eTType )
1615  DTRACE_CABAC_T( "\twidth=" )
1616  DTRACE_CABAC_V( uiWidth )
1617  DTRACE_CABAC_T( "\theight=" )
1618  DTRACE_CABAC_V( uiHeight )
1619  DTRACE_CABAC_T( "\tdepth=" )
1620  DTRACE_CABAC_V( uiDepth )
1621  DTRACE_CABAC_T( "\tabspartidx=" )
1622  DTRACE_CABAC_V( uiAbsPartIdx )
1623  DTRACE_CABAC_T( "\ttoCU-X=" )
1624  DTRACE_CABAC_V( pcCU->getCUPelX() )
1625  DTRACE_CABAC_T( "\ttoCU-Y=" )
1626  DTRACE_CABAC_V( pcCU->getCUPelY() )
1627  DTRACE_CABAC_T( "\tCU-addr=" )
1628  DTRACE_CABAC_V(  pcCU->getAddr() )
1629  DTRACE_CABAC_T( "\tinCU-X=" )
1630  DTRACE_CABAC_V( g_auiRasterToPelX[ g_auiZscanToRaster[uiAbsPartIdx] ] )
1631  DTRACE_CABAC_T( "\tinCU-Y=" )
1632  DTRACE_CABAC_V( g_auiRasterToPelY[ g_auiZscanToRaster[uiAbsPartIdx] ] )
1633  DTRACE_CABAC_T( "\tpredmode=" )
1634  DTRACE_CABAC_V(  pcCU->getPredictionMode( uiAbsPartIdx ) )
1635  DTRACE_CABAC_T( "\n" )
1636 
1637  if( uiWidth > pcCU->getSlice()->getSPS()->getMaxTrSize() )
1638  {
1639    uiWidth  = pcCU->getSlice()->getSPS()->getMaxTrSize();
1640    uiHeight = pcCU->getSlice()->getSPS()->getMaxTrSize();
1641  }
1642 
1643  eTType = eTType == TEXT_LUMA ? TEXT_LUMA : ( eTType == TEXT_NONE ? TEXT_NONE : TEXT_CHROMA );
1644 
1645  //----- parse significance map -----
1646  const UInt  uiLog2BlockSize   = g_aucConvertToBit[ uiWidth ] + 2;
1647  const UInt  uiMaxNumCoeff     = uiWidth * uiHeight;
1648  const UInt  uiMaxNumCoeffM1   = uiMaxNumCoeff - 1;
1649  UInt uiScanIdx = pcCU->getCoefScanIdx(uiAbsPartIdx, uiWidth, eTType==TEXT_LUMA, pcCU->isIntra(uiAbsPartIdx));
1650  int blockType = uiLog2BlockSize;
1651  if (uiWidth != uiHeight)
1652  {
1653    uiScanIdx = SCAN_DIAG;
1654    blockType = 4;
1655  }
1656 
1657  //===== decode last significant =====
1658  UInt uiPosLastX, uiPosLastY;
1659  parseLastSignificantXY( uiPosLastX, uiPosLastY, uiWidth, uiHeight, eTType, uiScanIdx );
1660  UInt uiBlkPosLast      = uiPosLastX + (uiPosLastY<<uiLog2BlockSize);
1661  pcCoef[ uiBlkPosLast ] = 1;
1662
1663  //===== decode significance flags =====
1664  UInt uiScanPosLast   = uiBlkPosLast;
1665  if (uiScanIdx == SCAN_ZIGZAG)
1666  {
1667    // Map zigzag to diagonal scan
1668    uiScanIdx = SCAN_DIAG;
1669  }
1670  const UInt * scan;
1671  if (uiWidth == uiHeight)
1672  {
1673    scan = g_auiSigLastScan[ uiScanIdx ][ uiLog2BlockSize-1 ];
1674  }
1675  else
1676  {
1677    scan = g_sigScanNSQT[ uiLog2BlockSize - 2 ];
1678  }
1679  for( uiScanPosLast = 0; uiScanPosLast < uiMaxNumCoeffM1; uiScanPosLast++ )
1680  {
1681    UInt uiBlkPos = scan[ uiScanPosLast ];
1682    if( uiBlkPosLast == uiBlkPos )
1683    {
1684      break;
1685    }
1686  }
1687
1688  ContextModel * const baseCoeffGroupCtx = m_cCUSigCoeffGroupSCModel.get( 0, eTType );
1689  ContextModel * const baseCtx = (eTType==TEXT_LUMA) ? m_cCUSigSCModel.get( 0, 0 ) : m_cCUSigSCModel.get( 0, 0 ) + NUM_SIG_FLAG_CTX_LUMA;
1690
1691  const Int  iLastScanSet      = uiScanPosLast >> LOG2_SCAN_SET_SIZE;
1692  UInt uiNumOne                = 0;
1693  UInt uiGoRiceParam           = 0;
1694
1695  UInt const tsig = pcCU->getSlice()->getPPS()->getTSIG();
1696#if LOSSLESS_CODING
1697  Bool beValid; 
1698  if (pcCU->isLosslessCoded(uiAbsPartIdx))
1699  {
1700    beValid = false;
1701  }
1702  else 
1703  {
1704    beValid = pcCU->getSlice()->getPPS()->getSignHideFlag() > 0;
1705  }
1706#else
1707  Bool beValid = pcCU->getSlice()->getPPS()->getSignHideFlag() > 0;
1708#endif
1709  UInt absSum = 0;
1710
1711  UInt uiSigCoeffGroupFlag[ MLS_GRP_NUM ];
1712  ::memset( uiSigCoeffGroupFlag, 0, sizeof(UInt) * MLS_GRP_NUM );
1713  const UInt uiNumBlkSide = uiWidth >> (MLS_CG_SIZE >> 1);
1714  const UInt * scanCG;
1715  if (uiWidth == uiHeight)
1716  {
1717    scanCG = g_auiSigLastScan[ uiScanIdx ][ uiLog2BlockSize > 3 ? uiLog2BlockSize-2-1 : 0  ];   
1718    if( uiLog2BlockSize == 3 )
1719    {
1720      scanCG = g_sigLastScan8x8[ uiScanIdx ];
1721    }
1722    else if( uiLog2BlockSize == 5 )
1723    {
1724      scanCG = g_sigLastScanCG32x32;
1725    }
1726  }
1727  else
1728  {
1729    scanCG = g_sigCGScanNSQT[ uiLog2BlockSize - 2 ];
1730  }
1731  Int  iScanPosSig             = (Int) uiScanPosLast;
1732  for( Int iSubSet = iLastScanSet; iSubSet >= 0; iSubSet-- )
1733  {
1734    Int  iSubPos     = iSubSet << LOG2_SCAN_SET_SIZE;
1735    uiGoRiceParam    = 0;
1736    Int numNonZero = 0;
1737   
1738    Int lastNZPosInCG = -1, firstNZPosInCG = SCAN_SET_SIZE;
1739
1740    Int pos[SCAN_SET_SIZE];
1741    if( iScanPosSig == (Int) uiScanPosLast )
1742    {
1743      lastNZPosInCG  = iScanPosSig;
1744      firstNZPosInCG = iScanPosSig;
1745      iScanPosSig--;
1746      pos[ numNonZero ] = uiBlkPosLast;
1747      numNonZero = 1;
1748    }
1749
1750      // decode significant_coeffgroup_flag
1751      Int iCGBlkPos = scanCG[ iSubSet ];
1752      Int iCGPosY   = iCGBlkPos / uiNumBlkSide;
1753      Int iCGPosX   = iCGBlkPos - (iCGPosY * uiNumBlkSide);
1754      if( uiWidth == 8 && uiHeight == 8 && (uiScanIdx == SCAN_HOR || uiScanIdx == SCAN_VER) )
1755      {
1756        iCGPosY = (uiScanIdx == SCAN_HOR ? iCGBlkPos : 0);
1757        iCGPosX = (uiScanIdx == SCAN_VER ? iCGBlkPos : 0);
1758      }
1759      if( iSubSet == iLastScanSet || iSubSet == 0)
1760      {
1761        uiSigCoeffGroupFlag[ iCGBlkPos ] = 1;
1762      }
1763      else
1764      {
1765          UInt uiSigCoeffGroup;
1766          UInt uiCtxSig  = TComTrQuant::getSigCoeffGroupCtxInc( uiSigCoeffGroupFlag, iCGPosX, iCGPosY, uiScanIdx, uiWidth, uiHeight );
1767          m_pcTDecBinIf->decodeBin( uiSigCoeffGroup, baseCoeffGroupCtx[ uiCtxSig ] );
1768          uiSigCoeffGroupFlag[ iCGBlkPos ] = uiSigCoeffGroup;
1769      }
1770
1771      // decode significant_coeff_flag
1772      UInt uiBlkPos, uiPosY, uiPosX, uiSig, uiCtxSig;
1773      for( ; iScanPosSig >= iSubPos; iScanPosSig-- )
1774      {
1775        uiBlkPos  = scan[ iScanPosSig ];
1776        uiPosY    = uiBlkPos >> uiLog2BlockSize;
1777        uiPosX    = uiBlkPos - ( uiPosY << uiLog2BlockSize );
1778        uiSig     = 0;
1779       
1780        if( uiSigCoeffGroupFlag[ iCGBlkPos ] )
1781        {
1782          if( iScanPosSig > iSubPos || iSubSet == 0  || numNonZero )
1783          {
1784            uiCtxSig  = TComTrQuant::getSigCtxInc( pcCoef, uiPosX, uiPosY, blockType, uiWidth, uiHeight, eTType );
1785            m_pcTDecBinIf->decodeBin( uiSig, baseCtx[ uiCtxSig ] );
1786          }
1787          else
1788          {
1789            uiSig = 1;
1790          }
1791        }
1792        pcCoef[ uiBlkPos ] = uiSig;
1793        if( uiSig )
1794        {
1795          pos[ numNonZero ] = uiBlkPos;
1796          numNonZero ++;
1797          if( lastNZPosInCG == -1 )
1798          {
1799            lastNZPosInCG = iScanPosSig;
1800          }
1801          firstNZPosInCG = iScanPosSig;
1802        }
1803      }
1804
1805   
1806    if( numNonZero )
1807    {
1808      Bool signHidden = ( lastNZPosInCG - firstNZPosInCG >= (Int)tsig );
1809      absSum = 0;
1810
1811      UInt c1 = 1;
1812      UInt uiCtxSet    = (iSubSet > 0 && eTType==TEXT_LUMA) ? 2 : 0;
1813      UInt uiBin;
1814     
1815      if( uiNumOne > 0 )
1816      {
1817        uiCtxSet++;
1818      }
1819     
1820      uiNumOne       >>= 1;
1821      ContextModel *baseCtxMod = ( eTType==TEXT_LUMA ) ? m_cCUOneSCModel.get( 0, 0 ) + 4 * uiCtxSet : m_cCUOneSCModel.get( 0, 0 ) + NUM_ONE_FLAG_CTX_LUMA + 4 * uiCtxSet;
1822      Int absCoeff[SCAN_SET_SIZE];
1823
1824      for ( Int i = 0; i < numNonZero; i++) absCoeff[i] = 1;   
1825      Int numC1Flag = min(numNonZero, C1FLAG_NUMBER);
1826      Int firstC2FlagIdx = -1;
1827
1828      for( Int idx = 0; idx < numC1Flag; idx++ )
1829      {
1830        m_pcTDecBinIf->decodeBin( uiBin, baseCtxMod[c1] );
1831        if( uiBin == 1 )
1832        {
1833          c1 = 0;
1834          if (firstC2FlagIdx == -1)
1835          {
1836            firstC2FlagIdx = idx;
1837          }
1838        }
1839        else if( (c1 < 3) && (c1 > 0) )
1840        {
1841          c1++;
1842        }
1843        absCoeff[ idx ] = uiBin + 1;
1844      }
1845     
1846      if (c1 == 0)
1847      {
1848        baseCtxMod = ( eTType==TEXT_LUMA ) ? m_cCUAbsSCModel.get( 0, 0 ) + uiCtxSet : m_cCUAbsSCModel.get( 0, 0 ) + NUM_ABS_FLAG_CTX_LUMA + uiCtxSet;
1849        if ( firstC2FlagIdx != -1)
1850        {
1851          m_pcTDecBinIf->decodeBin( uiBin, baseCtxMod[0] ); 
1852          absCoeff[ firstC2FlagIdx ] = uiBin + 2;
1853        }
1854      }
1855
1856      UInt coeffSigns;
1857      if ( signHidden && beValid )
1858      {
1859        m_pcTDecBinIf->decodeBinsEP( coeffSigns, numNonZero-1 );
1860        coeffSigns <<= 32 - (numNonZero-1);
1861      }
1862      else
1863      {
1864        m_pcTDecBinIf->decodeBinsEP( coeffSigns, numNonZero );
1865        coeffSigns <<= 32 - numNonZero;
1866      }
1867     
1868      Int iFirstCoeff2 = 1;   
1869      if (c1 == 0 || numNonZero > C1FLAG_NUMBER)
1870      {
1871        for( Int idx = 0; idx < numNonZero; idx++ )
1872        {
1873          UInt baseLevel  = (idx < C1FLAG_NUMBER)? (2 + iFirstCoeff2) : 1;
1874
1875          if( absCoeff[ idx ] == baseLevel)
1876          {
1877            UInt uiLevel;
1878            xReadGoRiceExGolomb( uiLevel, uiGoRiceParam );
1879            absCoeff[ idx ] = uiLevel + baseLevel;
1880          }
1881
1882          if(absCoeff[ idx ] >= 2) 
1883          {
1884            iFirstCoeff2 = 0;
1885            uiNumOne++;
1886          }
1887        }
1888      }
1889
1890      for( Int idx = 0; idx < numNonZero; idx++ )
1891      {
1892        Int blkPos = pos[ idx ];
1893        // Signs applied later.
1894        pcCoef[ blkPos ] = absCoeff[ idx ];
1895        absSum += absCoeff[ idx ];
1896
1897        if ( idx == numNonZero-1 && signHidden && beValid )
1898        {
1899          // Infer sign of 1st element.
1900          if (absSum&0x1)
1901            pcCoef[ blkPos ] = -pcCoef[ blkPos ];
1902        }
1903        else
1904        {
1905          Int sign = static_cast<Int>( coeffSigns ) >> 31;
1906          pcCoef[ blkPos ] = ( pcCoef[ blkPos ] ^ sign ) - sign;
1907          coeffSigns <<= 1;
1908        }
1909      }
1910    }
1911    else
1912    {
1913      uiNumOne >>= 1;
1914    }
1915  }
1916 
1917  return;
1918}
1919
1920
1921Void TDecSbac::parseSaoUvlc (UInt& ruiVal)
1922{
1923  UInt uiCode;
1924  Int  i;
1925
1926  m_pcTDecBinIf->decodeBin( uiCode, m_cSaoUvlcSCModel.get( 0, 0, 0 ) );
1927  if ( uiCode == 0 )
1928  {
1929    ruiVal = 0;
1930    return;
1931  }
1932
1933  i=1;
1934  while (1)
1935  {
1936    m_pcTDecBinIf->decodeBin( uiCode, m_cSaoUvlcSCModel.get( 0, 0, 1 ) );
1937    if ( uiCode == 0 ) break;
1938    i++;
1939  }
1940
1941  ruiVal = i;
1942}
1943
1944Void TDecSbac::parseSaoSvlc (Int&  riVal)
1945{
1946  UInt uiCode;
1947  Int  iSign;
1948  Int  i;
1949
1950  m_pcTDecBinIf->decodeBin( uiCode, m_cSaoSvlcSCModel.get( 0, 0, 0 ) );
1951
1952  if ( uiCode == 0 )
1953  {
1954    riVal = 0;
1955    return;
1956  }
1957
1958  // read sign
1959  m_pcTDecBinIf->decodeBin( uiCode, m_cSaoSvlcSCModel.get( 0, 0, 1 ) );
1960
1961  if ( uiCode == 0 )
1962  {
1963    iSign =  1;
1964  }
1965  else
1966  {
1967    iSign = -1;
1968  }
1969
1970  // read magnitude
1971  i=1;
1972  while (1)
1973  {
1974    m_pcTDecBinIf->decodeBin( uiCode, m_cSaoSvlcSCModel.get( 0, 0, 2 ) );
1975    if ( uiCode == 0 ) break;
1976    i++;
1977  }
1978
1979  riVal = i*iSign;
1980}
1981
1982Void TDecSbac::parseSaoUflc (UInt&  riVal)
1983{
1984  UInt uiSymbol;
1985  riVal = 0;
1986  for (Int i=0;i<5;i++)
1987  {
1988    m_pcTDecBinIf->decodeBinEP ( uiSymbol );
1989    if (uiSymbol)
1990    {
1991      riVal |= (1<<i);
1992    }
1993  }
1994}
1995Void TDecSbac::parseSaoMergeLeft (UInt&  ruiVal, UInt uiCompIdx)
1996{
1997  UInt uiCode;
1998  m_pcTDecBinIf->decodeBin( uiCode, m_cSaoMergeLeftSCModel.get( 0, 0, uiCompIdx ) );
1999  ruiVal = (Int)uiCode;
2000}
2001
2002Void TDecSbac::parseSaoMergeUp (UInt&  ruiVal)
2003{
2004  UInt uiCode;
2005  m_pcTDecBinIf->decodeBin( uiCode, m_cSaoMergeUpSCModel.get( 0, 0, 0 ) );
2006  ruiVal = (Int)uiCode;
2007}
2008Void TDecSbac::parseSaoTypeIdx (UInt&  ruiVal)
2009{
2010  UInt uiCode;
2011  Int  i;
2012  m_pcTDecBinIf->decodeBin( uiCode, m_cSaoTypeIdxSCModel.get( 0, 0, 0 ) );
2013  if ( uiCode == 0 )
2014  {
2015    ruiVal = 0;
2016    return;
2017  }
2018  i=1;
2019  while (1)
2020  {
2021    m_pcTDecBinIf->decodeBin( uiCode, m_cSaoTypeIdxSCModel.get( 0, 0, 1 ) );
2022    if ( uiCode == 0 ) break;
2023    i++;
2024  }
2025  ruiVal = i;
2026}
2027
2028inline Void copySaoOneLcuParam(SaoLcuParam* psDst,  SaoLcuParam* psSrc)
2029{
2030  Int i;
2031  psDst->partIdx = psSrc->partIdx;
2032  psDst->typeIdx    = psSrc->typeIdx;
2033  if (psDst->typeIdx != -1)
2034  {
2035    if (psDst->typeIdx == SAO_BO)
2036    {
2037      psDst->bandPosition = psSrc->bandPosition ;
2038    }
2039    else
2040    {
2041      psDst->bandPosition = 0;
2042    }
2043    psDst->length  = psSrc->length;
2044    for (i=0;i<psDst->length;i++)
2045    {
2046      psDst->offset[i] = psSrc->offset[i];
2047    }
2048  }
2049  else
2050  {
2051    psDst->length  = 0;
2052    for (i=0;i<SAO_BO_LEN;i++)
2053    {
2054      psDst->offset[i] = 0;
2055    }
2056  }
2057}
2058Void TDecSbac::parseSaoOffset(SaoLcuParam* psSaoLcuParam)
2059{
2060  UInt uiSymbol;
2061  Int iSymbol;
2062  static Int iTypeLength[MAX_NUM_SAO_TYPE] = {
2063    SAO_EO_LEN,
2064    SAO_EO_LEN,
2065    SAO_EO_LEN,
2066    SAO_EO_LEN,
2067    SAO_BO_LEN
2068  }; 
2069
2070  parseSaoTypeIdx(uiSymbol);
2071  psSaoLcuParam->typeIdx = (Int)uiSymbol - 1;
2072  if (uiSymbol)
2073  {
2074    psSaoLcuParam->length = iTypeLength[psSaoLcuParam->typeIdx];
2075    if( psSaoLcuParam->typeIdx == SAO_BO )
2076    {
2077      // Parse Left Band Index
2078      parseSaoUflc( uiSymbol );
2079      psSaoLcuParam->bandPosition = uiSymbol;
2080      for(Int i=0; i< psSaoLcuParam->length; i++)
2081      {
2082        parseSaoSvlc(iSymbol);
2083        psSaoLcuParam->offset[i] = iSymbol;
2084      }   
2085    }
2086    else if( psSaoLcuParam->typeIdx < 4 )
2087    {
2088      parseSaoUvlc(uiSymbol); psSaoLcuParam->offset[0] = uiSymbol;
2089      parseSaoUvlc(uiSymbol); psSaoLcuParam->offset[1] = uiSymbol;
2090      parseSaoUvlc(uiSymbol); psSaoLcuParam->offset[2] = -(Int)uiSymbol;
2091      parseSaoUvlc(uiSymbol); psSaoLcuParam->offset[3] = -(Int)uiSymbol;
2092    }
2093  }
2094  else
2095  {
2096    psSaoLcuParam->length = 0;
2097  }
2098}
2099
2100Void TDecSbac::parseSaoOneLcuInterleaving(Int rx, Int ry, SAOParam* pSaoParam, TComDataCU* pcCU, Int iCUAddrInSlice, Int iCUAddrUpInSlice, Bool bLFCrossSliceBoundaryFlag)
2101{
2102  Int iAddr = pcCU->getAddr();
2103  UInt uiSymbol;
2104  for (Int iCompIdx=0; iCompIdx<3; iCompIdx++)
2105  {
2106    pSaoParam->saoLcuParam[iCompIdx][iAddr].mergeUpFlag    = 0;
2107    pSaoParam->saoLcuParam[iCompIdx][iAddr].mergeLeftFlag  = 0;
2108    pSaoParam->saoLcuParam[iCompIdx][iAddr].bandPosition   = 0;
2109    pSaoParam->saoLcuParam[iCompIdx][iAddr].typeIdx        = -1;
2110    pSaoParam->saoLcuParam[iCompIdx][iAddr].offset[0]     = 0;
2111    pSaoParam->saoLcuParam[iCompIdx][iAddr].offset[1]     = 0;
2112    pSaoParam->saoLcuParam[iCompIdx][iAddr].offset[2]     = 0;
2113    pSaoParam->saoLcuParam[iCompIdx][iAddr].offset[3]     = 0;
2114
2115    if (pSaoParam->bSaoFlag[iCompIdx])
2116    {
2117      if (rx>0 && iCUAddrInSlice!=0)
2118      {
2119        parseSaoMergeLeft(uiSymbol,iCompIdx); pSaoParam->saoLcuParam[iCompIdx][iAddr].mergeLeftFlag = (Int)uiSymbol;
2120      }
2121      else
2122      {
2123        pSaoParam->saoLcuParam[iCompIdx][iAddr].mergeLeftFlag = 0;
2124      }
2125
2126      if (pSaoParam->saoLcuParam[iCompIdx][iAddr].mergeLeftFlag==0)
2127      {
2128        if ((ry > 0) && (iCUAddrUpInSlice>0||bLFCrossSliceBoundaryFlag))
2129        {
2130          parseSaoMergeUp(uiSymbol);  pSaoParam->saoLcuParam[iCompIdx][iAddr].mergeUpFlag = uiSymbol;
2131        }
2132        else
2133        {
2134          pSaoParam->saoLcuParam[iCompIdx][iAddr].mergeUpFlag = 0;
2135        }
2136        if (!pSaoParam->saoLcuParam[iCompIdx][iAddr].mergeUpFlag)
2137        {
2138          parseSaoOffset(&(pSaoParam->saoLcuParam[iCompIdx][iAddr]));
2139        }
2140        else
2141        {
2142          copySaoOneLcuParam(&pSaoParam->saoLcuParam[iCompIdx][iAddr], &pSaoParam->saoLcuParam[iCompIdx][iAddr-pSaoParam->numCuInWidth]);
2143        }
2144      }
2145      else
2146      {
2147        copySaoOneLcuParam(&pSaoParam->saoLcuParam[iCompIdx][iAddr],  &pSaoParam->saoLcuParam[iCompIdx][iAddr-1]);
2148      }
2149    }
2150    else
2151    {
2152      pSaoParam->saoLcuParam[iCompIdx][iAddr].typeIdx = -1;
2153      pSaoParam->saoLcuParam[iCompIdx][iAddr].bandPosition = 0;
2154    }
2155  }
2156}
2157
2158/**
2159 - Initialize our contexts from the nominated source.
2160 .
2161 \param pSrc Contexts to be copied.
2162 */
2163Void TDecSbac::xCopyContextsFrom( TDecSbac* pSrc )
2164{
2165  memcpy(m_contextModels, pSrc->m_contextModels, m_numContextModels*sizeof(m_contextModels[0]));
2166}
2167
2168Void TDecSbac::xCopyFrom( TDecSbac* pSrc )
2169{
2170  m_pcTDecBinIf->copyState( pSrc->m_pcTDecBinIf );
2171
2172  m_uiLastQp           = pSrc->m_uiLastQp;
2173  xCopyContextsFrom( pSrc );
2174
2175}
2176
2177Void TDecSbac::load ( TDecSbac* pScr )
2178{
2179  xCopyFrom(pScr);
2180}
2181
2182Void TDecSbac::loadContexts ( TDecSbac* pScr )
2183{
2184  xCopyContextsFrom(pScr);
2185}
2186
2187Void TDecSbac::decodeFlush ( )
2188{
2189  UInt uiBit;
2190  m_pcTDecBinIf->decodeBinTrm(uiBit);
2191  m_pcTDecBinIf->flush();
2192
2193}
2194
2195#if HHI_DMM_WEDGE_INTRA || HHI_DMM_PRED_TEX || (LGE_EDGE_INTRA_A0070 && LGE_EDGE_INTRA_DELTA_DC)
2196Void TDecSbac::xReadExGolombLevel( UInt& ruiSymbol, ContextModel& rcSCModel  )
2197{
2198  UInt uiSymbol;
2199  UInt uiCount = 0;
2200  do
2201  {
2202    m_pcTDecBinIf->decodeBin( uiSymbol, rcSCModel );
2203    uiCount++;
2204  }
2205  while( uiSymbol && ( uiCount != 13 ) );
2206
2207  ruiSymbol = uiCount - 1;
2208
2209  if( uiSymbol )
2210  {
2211    xReadEpExGolomb( uiSymbol, 0 );
2212    ruiSymbol += uiSymbol + 1;
2213  }
2214
2215  return;
2216}
2217#endif
2218#if HHI_DMM_WEDGE_INTRA
2219Void TDecSbac::xParseWedgeFullInfo( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
2220{
2221  Int iIntraIdx = pcCU->getIntraSizeIdx(uiAbsPartIdx);
2222  Int iBits = g_aucWedgeFullBitsListIdx[iIntraIdx];
2223
2224  UInt uiSymbol, uiTabIdx = 0;
2225  for ( Int i = 0; i < iBits; i++ )
2226  {
2227    m_pcTDecBinIf->decodeBin( uiSymbol, m_cDmmDataSCModel.get(0, 0, 0) );
2228    uiTabIdx += ( uiSymbol && i == 0 ) ? 1 : 0;
2229    uiTabIdx += ( uiSymbol && i == 1 ) ? 2 : 0;
2230    uiTabIdx += ( uiSymbol && i == 2 ) ? 4 : 0;
2231    uiTabIdx += ( uiSymbol && i == 3 ) ? 8 : 0;
2232    uiTabIdx += ( uiSymbol && i == 4 ) ? 16 : 0;
2233    uiTabIdx += ( uiSymbol && i == 5 ) ? 32 : 0;
2234    uiTabIdx += ( uiSymbol && i == 6 ) ? 64 : 0;
2235    uiTabIdx += ( uiSymbol && i == 7 ) ? 128 : 0;
2236    uiTabIdx += ( uiSymbol && i == 8 ) ? 256 : 0;
2237    uiTabIdx += ( uiSymbol && i == 9 ) ? 512 : 0;
2238    uiTabIdx += ( uiSymbol && i == 10 ) ? 1024 : 0;
2239    uiTabIdx += ( uiSymbol && i == 11 ) ? 2048 : 0;
2240    uiTabIdx += ( uiSymbol && i == 12 ) ? 4096 : 0;
2241  }
2242
2243  pcCU->setWedgeFullTabIdxSubParts( uiTabIdx, uiAbsPartIdx, uiDepth );
2244}
2245
2246Void TDecSbac::xParseWedgeFullDeltaInfo( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
2247{
2248  Int iIntraIdx = pcCU->getIntraSizeIdx(uiAbsPartIdx);
2249  Int iBits = g_aucWedgeFullBitsListIdx[iIntraIdx];
2250
2251  UInt uiSymbol, uiTabIdx = 0;
2252  for ( Int i = 0; i < iBits; i++ )
2253  {
2254    m_pcTDecBinIf->decodeBin( uiSymbol, m_cDmmDataSCModel.get(0, 0, 0) );
2255    uiTabIdx += ( uiSymbol && i == 0 ) ? 1 : 0;
2256    uiTabIdx += ( uiSymbol && i == 1 ) ? 2 : 0;
2257    uiTabIdx += ( uiSymbol && i == 2 ) ? 4 : 0;
2258    uiTabIdx += ( uiSymbol && i == 3 ) ? 8 : 0;
2259    uiTabIdx += ( uiSymbol && i == 4 ) ? 16 : 0;
2260    uiTabIdx += ( uiSymbol && i == 5 ) ? 32 : 0;
2261    uiTabIdx += ( uiSymbol && i == 6 ) ? 64 : 0;
2262    uiTabIdx += ( uiSymbol && i == 7 ) ? 128 : 0;
2263    uiTabIdx += ( uiSymbol && i == 8 ) ? 256 : 0;
2264    uiTabIdx += ( uiSymbol && i == 9 ) ? 512 : 0;
2265    uiTabIdx += ( uiSymbol && i == 10 ) ? 1024 : 0;
2266    uiTabIdx += ( uiSymbol && i == 11 ) ? 2048 : 0;
2267    uiTabIdx += ( uiSymbol && i == 12 ) ? 4096 : 0;
2268  }
2269
2270  pcCU->setWedgeFullTabIdxSubParts( uiTabIdx, uiAbsPartIdx, uiDepth );
2271
2272  UInt uiDC1, uiDC2;
2273  xReadExGolombLevel( uiDC1, m_cDmmDataSCModel.get(0, 0, 1) );
2274  Int iDC1 = uiDC1;
2275  if ( uiDC1 )
2276  {
2277    UInt uiSign;
2278    m_pcTDecBinIf->decodeBinEP( uiSign );
2279    if ( uiSign )
2280    {
2281      iDC1 = -iDC1;
2282    }
2283  }
2284  xReadExGolombLevel( uiDC2, m_cDmmDataSCModel.get(0, 0, 1) );
2285  Int iDC2 = uiDC2;
2286  if ( uiDC2 )
2287  {
2288    UInt uiSign;
2289    m_pcTDecBinIf->decodeBinEP( uiSign );
2290    if ( uiSign )
2291    {
2292      iDC2 = -iDC2;
2293    }
2294  }
2295
2296  pcCU->setWedgeFullDeltaDC1SubParts( iDC1, uiAbsPartIdx, uiDepth );
2297  pcCU->setWedgeFullDeltaDC2SubParts( iDC2, uiAbsPartIdx, uiDepth );
2298}
2299
2300Void TDecSbac::xParseWedgePredDirInfo( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
2301{
2302  if( DMM_WEDGE_PREDDIR_DELTAEND_MAX > 0 )
2303  {
2304    UInt uiDeltaEnd = 0;
2305    m_pcTDecBinIf->decodeBin( uiDeltaEnd, m_cDmmDataSCModel.get(0, 0, 2) );
2306
2307    Int iDeltaEnd;
2308    if( uiDeltaEnd != 0 )
2309    {
2310      UInt uiAbsValMinus1;
2311      UInt uiSymbol;
2312      m_pcTDecBinIf->decodeBin( uiSymbol, m_cDmmDataSCModel.get(0, 0, 2) ); uiAbsValMinus1  = uiSymbol;
2313      m_pcTDecBinIf->decodeBin( uiSymbol, m_cDmmDataSCModel.get(0, 0, 2) ); uiAbsValMinus1 |= uiSymbol << 1;
2314      uiDeltaEnd = uiAbsValMinus1 + 1;
2315
2316      iDeltaEnd = uiDeltaEnd;
2317      UInt uiSign;
2318      m_pcTDecBinIf->decodeBinEP( uiSign );
2319      if( uiSign )
2320      {
2321        iDeltaEnd = -iDeltaEnd;
2322      }
2323    }
2324    else
2325    {
2326      iDeltaEnd = 0;
2327    }
2328    pcCU->setWedgePredDirDeltaEndSubParts( iDeltaEnd, uiAbsPartIdx, uiDepth );
2329  }
2330}
2331
2332Void TDecSbac::xParseWedgePredDirDeltaInfo( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
2333{
2334  if( DMM_WEDGE_PREDDIR_DELTAEND_MAX > 0 )
2335  {
2336    UInt uiDeltaEnd = 0;
2337    m_pcTDecBinIf->decodeBin( uiDeltaEnd, m_cDmmDataSCModel.get(0, 0, 2) );
2338
2339    Int iDeltaEnd;
2340    if( uiDeltaEnd != 0 )
2341    {
2342      UInt uiAbsValMinus1;
2343      UInt uiSymbol;
2344      m_pcTDecBinIf->decodeBin( uiSymbol, m_cDmmDataSCModel.get(0, 0, 2) ); uiAbsValMinus1  = uiSymbol;
2345      m_pcTDecBinIf->decodeBin( uiSymbol, m_cDmmDataSCModel.get(0, 0, 2) ); uiAbsValMinus1 |= uiSymbol << 1;
2346      uiDeltaEnd = uiAbsValMinus1 + 1;
2347
2348      iDeltaEnd = uiDeltaEnd;
2349      UInt uiSign;
2350      m_pcTDecBinIf->decodeBinEP( uiSign );
2351      if( uiSign )
2352      {
2353        iDeltaEnd = -iDeltaEnd;
2354      }
2355    }
2356    else
2357    {
2358      iDeltaEnd = 0;
2359    }
2360
2361    pcCU->setWedgePredDirDeltaEndSubParts( iDeltaEnd, uiAbsPartIdx, uiDepth );
2362  }
2363
2364  UInt uiDC1, uiDC2;
2365  xReadExGolombLevel( uiDC1, m_cDmmDataSCModel.get(0, 0, 1) );
2366  Int iDC1 = uiDC1;
2367  if ( uiDC1 )
2368  {
2369    UInt uiSign;
2370    m_pcTDecBinIf->decodeBinEP( uiSign );
2371    if ( uiSign )
2372    {
2373      iDC1 = -iDC1;
2374    }
2375  }
2376  xReadExGolombLevel( uiDC2, m_cDmmDataSCModel.get(0, 0, 1) );
2377  Int iDC2 = uiDC2;
2378  if ( uiDC2 )
2379  {
2380    UInt uiSign;
2381    m_pcTDecBinIf->decodeBinEP( uiSign );
2382    if ( uiSign )
2383    {
2384      iDC2 = -iDC2;
2385    }
2386  }
2387
2388  pcCU->setWedgePredDirDeltaDC1SubParts( iDC1, uiAbsPartIdx, uiDepth );
2389  pcCU->setWedgePredDirDeltaDC2SubParts( iDC2, uiAbsPartIdx, uiDepth );
2390}
2391#endif
2392#if HHI_DMM_PRED_TEX
2393#if LGE_DMM3_SIMP_C0044
2394Void TDecSbac::xParseWedgePredTexInfo( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
2395{
2396  Int iIntraIdx = pcCU->getIntraSizeIdx(uiAbsPartIdx);
2397  Int iBits = g_aucWedgeTexPredBitsListIdx[iIntraIdx];
2398
2399  UInt uiSymbol, uiTabIdx = 0;
2400  for ( Int i = 0; i < iBits; i++ )
2401  {
2402    m_pcTDecBinIf->decodeBin( uiSymbol, m_cDmmDataSCModel.get(0, 0, 3) );
2403    uiTabIdx += ( uiSymbol && i == 0 ) ? 1 : 0;
2404    uiTabIdx += ( uiSymbol && i == 1 ) ? 2 : 0;
2405    uiTabIdx += ( uiSymbol && i == 2 ) ? 4 : 0;
2406    uiTabIdx += ( uiSymbol && i == 3 ) ? 8 : 0;
2407    uiTabIdx += ( uiSymbol && i == 4 ) ? 16 : 0;
2408    uiTabIdx += ( uiSymbol && i == 5 ) ? 32 : 0;
2409    uiTabIdx += ( uiSymbol && i == 6 ) ? 64 : 0;
2410    uiTabIdx += ( uiSymbol && i == 7 ) ? 128 : 0;
2411    uiTabIdx += ( uiSymbol && i == 8 ) ? 256 : 0;
2412    uiTabIdx += ( uiSymbol && i == 9 ) ? 512 : 0;
2413    uiTabIdx += ( uiSymbol && i == 10 ) ? 1024 : 0;
2414  }
2415
2416  pcCU->setWedgePredTexIntraTabIdxSubParts( uiTabIdx, uiAbsPartIdx, uiDepth );
2417}
2418#endif
2419
2420Void TDecSbac::xParseWedgePredTexDeltaInfo( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
2421{
2422#if LGE_DMM3_SIMP_C0044
2423  xParseWedgePredTexInfo( pcCU, uiAbsPartIdx, uiDepth );
2424#endif
2425  UInt uiDC1, uiDC2;
2426  xReadExGolombLevel( uiDC1, m_cDmmDataSCModel.get(0, 0, 1) );
2427  Int iDC1 = uiDC1;
2428  if ( uiDC1 )
2429  {
2430    UInt uiSign;
2431    m_pcTDecBinIf->decodeBinEP( uiSign );
2432    if ( uiSign )
2433    {
2434      iDC1 = -iDC1;
2435    }
2436  }
2437  xReadExGolombLevel( uiDC2, m_cDmmDataSCModel.get(0, 0, 1) );
2438  Int iDC2 = uiDC2;
2439  if ( uiDC2 )
2440  {
2441    UInt uiSign;
2442    m_pcTDecBinIf->decodeBinEP( uiSign );
2443    if ( uiSign )
2444    {
2445      iDC2 = -iDC2;
2446    }
2447  }
2448
2449  pcCU->setWedgePredTexDeltaDC1SubParts( iDC1, uiAbsPartIdx, uiDepth );
2450  pcCU->setWedgePredTexDeltaDC2SubParts( iDC2, uiAbsPartIdx, uiDepth );
2451}
2452
2453Void TDecSbac::xParseContourPredTexDeltaInfo( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
2454{
2455  UInt uiDC1, uiDC2;
2456  xReadExGolombLevel( uiDC1, m_cDmmDataSCModel.get(0, 0, 1) );
2457  Int iDC1 = uiDC1;
2458  if ( uiDC1 )
2459  {
2460    UInt uiSign;
2461    m_pcTDecBinIf->decodeBinEP( uiSign );
2462    if ( uiSign )
2463    {
2464      iDC1 = -iDC1;
2465    }
2466  }
2467  xReadExGolombLevel( uiDC2, m_cDmmDataSCModel.get(0, 0, 1) );
2468  Int iDC2 = uiDC2;
2469  if ( uiDC2 )
2470  {
2471    UInt uiSign;
2472    m_pcTDecBinIf->decodeBinEP( uiSign );
2473    if ( uiSign )
2474    {
2475      iDC2 = -iDC2;
2476    }
2477  }
2478
2479  pcCU->setContourPredTexDeltaDC1SubParts( iDC1, uiAbsPartIdx, uiDepth );
2480  pcCU->setContourPredTexDeltaDC2SubParts( iDC2, uiAbsPartIdx, uiDepth );
2481}
2482#endif
2483
2484#if LGE_EDGE_INTRA_A0070
2485Void TDecSbac::xParseEdgeIntraInfo( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
2486{
2487  UInt uiSymbol = 0;
2488
2489  // 1. Top(0) or Left(1)
2490  UChar ucLeft;
2491  m_pcTDecBinIf->decodeBinEP( uiSymbol );
2492  ucLeft = uiSymbol;
2493
2494  // 2. Start position (lowest bit first)
2495  UChar ucStart = 0;
2496  for( UInt ui = 0; ui < 6 - uiDepth; ui++ )
2497  {
2498    m_pcTDecBinIf->decodeBinEP( uiSymbol );
2499    ucStart |= (uiSymbol << ui);
2500  }
2501
2502  // 3. Number of edges
2503  UChar ucMax = 0;
2504  for( UInt ui = 0; ui < 7 - uiDepth; ui++ )
2505  {
2506    m_pcTDecBinIf->decodeBinEP( uiSymbol );
2507    ucMax |= (uiSymbol << ui);
2508  }
2509  ucMax++; // +1
2510
2511  // 4. Edges
2512  UChar* pucSymbolList = (UChar*) xMalloc( UChar, 256 * LGE_EDGE_INTRA_MAX_EDGE_NUM_PER_4x4 );
2513  UInt uiCtxEdgeIntra = pcCU->getCtxEdgeIntra( uiAbsPartIdx );
2514  for( Int iPtr = 0; iPtr < ucMax; iPtr++ )
2515  {
2516    UChar ucEdge = 0;
2517    UInt  uiReorderEdge = 0;
2518    // Left-friendly direction
2519    // 0 (   0deg) => 0
2520    // 1 (  45deg) => 10
2521    // 2 ( -45deg) => 110
2522    // 3 (  90deg) => 1110
2523    // 4 ( -90deg) => 11110
2524    // 5 ( 135deg) => 111110
2525    // 6 (-135deg) => 111111
2526    // Right-friendly direction
2527    // 0 (   0deg) => 0
2528    // 1 ( -45deg) => 10
2529    // 2 (  45deg) => 110
2530    // 3 ( -90deg) => 1110
2531    // 4 (  90deg) => 11110
2532    // 5 (-135deg) => 111110
2533    // 6 ( 135deg) => 111111
2534    // refer to a paper "An efficient chain code with Huffman coding"
2535    for( UInt ui = 0; ui < 6; ui++ )
2536    {
2537      m_pcTDecBinIf->decodeBin( uiSymbol, m_cEdgeIntraSCModel.get( 0, 0, uiCtxEdgeIntra ) );
2538      ucEdge <<= 1;
2539      ucEdge |= uiSymbol;
2540      if( uiSymbol == 0 )
2541        break;
2542    }
2543
2544    switch( ucEdge )
2545    {
2546    case 0 :  // "0"
2547      uiReorderEdge = 0;
2548      break;
2549    case 2 :  // "10"
2550      uiReorderEdge = 1;
2551      break;
2552    case 6 :  // "110"
2553      uiReorderEdge = 2;
2554      break;
2555    case 14 : // "1110"
2556      uiReorderEdge = 3;
2557      break;
2558    case 30 : // "11110"
2559      uiReorderEdge = 4;
2560      break;
2561    case 62 : // "111110"
2562      uiReorderEdge = 5;
2563      break;
2564    case 63 : // "111111"
2565      uiReorderEdge = 6;
2566      break;
2567    default :
2568      printf("parseIntraEdgeChain: error (unknown code %d)\n",ucEdge);
2569      assert(false);
2570      break;
2571    }
2572    pucSymbolList[iPtr] = uiReorderEdge;
2573  }
2574  /////////////////////
2575  // Edge Reconstruction
2576  Bool* pbRegion = pcCU->getEdgePartition( uiAbsPartIdx );
2577  pcCU->reconPartition( uiAbsPartIdx, uiDepth, ucLeft == 1, ucStart, ucMax, pucSymbolList, pbRegion );
2578  xFree( pucSymbolList );
2579}
2580#endif
2581 
2582#if RWTH_SDC_DLT_B0036
2583#if !PKU_QC_DEPTH_INTRA_UNI_D0195
2584Void TDecSbac::parseSDCFlag( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
2585{
2586  assert( pcCU->getSlice()->getSPS()->isDepth() );
2587 
2588  UInt uiSymbol = 0;
2589  UInt uiCtxSDCFlag = pcCU->getCtxSDCFlag( uiAbsPartIdx );
2590  m_pcTDecBinIf->decodeBin( uiSymbol, m_cSDCFlagSCModel.get( 0, 0, uiCtxSDCFlag ) );
2591 
2592  if( uiSymbol == 1 )
2593  {
2594    pcCU->setPartSizeSubParts(SIZE_2Nx2N, uiAbsPartIdx, uiDepth);
2595   
2596    pcCU->setSDCFlagSubParts( true, uiAbsPartIdx, 0, uiDepth);
2597    pcCU->setTrIdxSubParts(0, uiAbsPartIdx, uiDepth);
2598    pcCU->setCbfSubParts(1, 1, 1, uiAbsPartIdx, uiDepth);
2599  }
2600}
2601
2602Void TDecSbac::parseSDCPredMode( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
2603{
2604  assert( pcCU->getSlice()->getSPS()->isDepth() );
2605  assert( pcCU->getPartitionSize(uiAbsPartIdx) == SIZE_2Nx2N );
2606 
2607  assert( pcCU->getSDCFlag(uiAbsPartIdx) );
2608 
2609  UInt uiCtx            = 0;
2610 
2611  UInt uiMPModeIdx      = 0;
2612 
2613  for(Int i=0; i<RWTH_SDC_NUM_PRED_MODES-1; i++)
2614  {
2615    UInt uiIsMostProb = 0;
2616#if INTEL_SDC64_D0193
2617    if( !(pcCU->getWidth(uiAbsPartIdx) == 64 && i == 1))
2618#endif
2619    m_pcTDecBinIf->decodeBin( uiIsMostProb, m_cSDCPredModeSCModel.get( 0, i, uiCtx ) );
2620   
2621    if ( uiIsMostProb == 1 )
2622      break;
2623   
2624    // else: get next most probable pred mode
2625    uiMPModeIdx = (uiMPModeIdx+1)%RWTH_SDC_NUM_PRED_MODES;
2626  }
2627 
2628  Int intraPredMode = g_auiSDCPredModes[uiMPModeIdx];
2629 
2630#if HHI_DMM_WEDGE_INTRA
2631  if( intraPredMode == DMM_WEDGE_FULL_IDX )          { xParseWedgeFullInfo          ( pcCU, uiAbsPartIdx, uiDepth ); }
2632  if( intraPredMode == DMM_WEDGE_PREDDIR_IDX )       { xParseWedgePredDirInfo       ( pcCU, uiAbsPartIdx, uiDepth ); }
2633#endif
2634 
2635  pcCU->setLumaIntraDirSubParts((UChar)intraPredMode, uiAbsPartIdx, uiDepth);
2636}
2637#endif
2638
2639Void TDecSbac::parseSDCResidualData ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt uiSegment )
2640{
2641  assert( pcCU->getSlice()->getSPS()->isDepth() );
2642  assert( pcCU->getSDCFlag(uiAbsPartIdx) );
2643  assert( uiSegment < 2 );
2644 
2645  UInt uiResidual = 0;
2646  UInt uiBit      = 0;
2647  UInt uiAbsIdx   = 0;
2648  UInt uiSign     = 0;
2649  Int  iIdx       = 0;
2650 
2651  UInt uiMaxResidualBits  = pcCU->getSlice()->getSPS()->getBitsPerDepthValue();
2652  assert( uiMaxResidualBits <= g_uiBitDepth );
2653 
2654#if RWTH_SDC_CTX_SIMPL_D0032
2655  m_pcTDecBinIf->decodeBin(uiResidual, m_cSDCResidualFlagSCModel.get( 0, 0, 0 ) );
2656#else
2657  m_pcTDecBinIf->decodeBin(uiResidual, m_cSDCResidualFlagSCModel.get( 0, uiSegment, 0 ) );
2658#endif
2659 
2660  if (uiResidual)
2661  {
2662    // decode residual sign bit
2663#if RWTH_SDC_CTX_SIMPL_D0032
2664    m_pcTDecBinIf->decodeBinEP(uiSign);
2665#else
2666    m_pcTDecBinIf->decodeBin(uiSign, m_cSDCResidualSignFlagSCModel.get( 0, uiSegment, 0 ) );
2667#endif
2668   
2669    // decode residual magnitude
2670#if LGE_CONCATENATE_D0141
2671    //prefix part
2672    UInt uiCount = 0;
2673    UInt uiNumDepthValues = pcCU->getSlice()->getSPS()->getNumDepthValues();
2674    UInt uiPrefixThreshold = ((uiNumDepthValues * 3) >> 2);
2675    for ( UInt ui = 0; ui < uiPrefixThreshold; ui++)
2676    {
2677        m_pcTDecBinIf->decodeBin( uiBit, m_cSDCResidualSCModel.get(0, 0, 0) );
2678        if ( uiBit == 0 )
2679            break;
2680        else
2681            uiCount++;
2682    }
2683    //suffix part
2684    if ( uiCount == uiPrefixThreshold )
2685    {
2686        for ( UInt ui = 0; ui < ( (UInt)ceil( Log2(uiNumDepthValues - uiPrefixThreshold) ) ); ui++ )
2687        {
2688            m_pcTDecBinIf->decodeBinEP( uiBit );
2689            uiAbsIdx |= uiBit << ui;
2690        }
2691        uiAbsIdx += uiCount;
2692    }
2693    else
2694        uiAbsIdx = uiCount;
2695#else
2696    for (Int i=0; i<uiMaxResidualBits; i++)
2697    {
2698#if RWTH_SDC_CTX_SIMPL_D0032
2699      m_pcTDecBinIf->decodeBin(uiBit, m_cSDCResidualSCModel.get( 0, 0, i ) );
2700#else
2701      m_pcTDecBinIf->decodeBin(uiBit, m_cSDCResidualSCModel.get( 0, uiSegment, i ) );
2702#endif
2703      uiAbsIdx |= uiBit << i;
2704    }
2705#endif
2706   
2707    uiAbsIdx += 1;
2708    iIdx =(Int)(uiSign ? -1 : 1)*uiAbsIdx;
2709  }
2710 
2711  pcCU->setSDCSegmentDCOffset(iIdx, uiSegment, uiAbsPartIdx);
2712}
2713#endif
2714
2715//! \}
Note: See TracBrowser for help on using the repository browser.