source: 3DVCSoftware/branches/HTM-6.2-dev1-MediaTek/source/Lib/TLibDecoder/TDecEntropy.cpp

Last change on this file was 384, checked in by mediatek-htm, 12 years ago

D0156 source code

  • Property svn:eol-style set to native
File size: 32.9 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     TDecEntropy.cpp
35    \brief    entropy decoder class
36*/
37
38#include "TDecEntropy.h"
39
40//! \ingroup TLibDecoder
41//! \{
42
43Void TDecEntropy::setEntropyDecoder         ( TDecEntropyIf* p )
44{
45  m_pcEntropyDecoderIf = p;
46}
47
48#include "TLibCommon/TComAdaptiveLoopFilter.h"
49#include "TLibCommon/TComSampleAdaptiveOffset.h"
50
51Void TDecEntropy::decodeSkipFlag( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
52{
53  m_pcEntropyDecoderIf->parseSkipFlag( pcCU, uiAbsPartIdx, uiDepth );
54}
55
56/** decode merge flag
57 * \param pcSubCU
58 * \param uiAbsPartIdx
59 * \param uiDepth
60 * \param uiPUIdx
61 * \returns Void
62 */
63Void TDecEntropy::decodeMergeFlag( TComDataCU* pcSubCU, UInt uiAbsPartIdx, UInt uiDepth, UInt uiPUIdx )
64{ 
65  // at least one merge candidate exists
66  m_pcEntropyDecoderIf->parseMergeFlag( pcSubCU, uiAbsPartIdx, uiDepth, uiPUIdx );
67}
68
69#if LGE_ILLUCOMP_B0045
70Void TDecEntropy::decodeICFlag( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
71{
72  pcCU->setICFlagSubParts( false , uiAbsPartIdx, 0, uiDepth );
73
74  if (pcCU->isIntra(uiAbsPartIdx) || (pcCU->getSlice()->getViewId() == 0) 
75#if !LGE_ILLUCOMP_DEPTH_C0046
76      || pcCU->getSlice()->getSPS()->isDepth()
77#endif
78      )
79  {
80    return;
81  }
82
83  if(!pcCU->getSlice()->getApplyIC())
84    return;
85
86#if LGE_ILLUCOMP_DEPTH_C0046
87  if(pcCU->isICFlagRequired(uiAbsPartIdx, uiDepth)) //This modification is not needed after integrating JCT3V-C0137
88#else
89  if(pcCU->isICFlagRequired(uiAbsPartIdx))
90#endif
91    m_pcEntropyDecoderIf->parseICFlag( pcCU, uiAbsPartIdx, uiDepth );
92}
93#endif
94/** decode merge index
95 * \param pcCU
96 * \param uiPartIdx
97 * \param uiAbsPartIdx
98 * \param puhInterDirNeighbours pointer to list of inter direction from the casual neighbours
99 * \param pcMvFieldNeighbours pointer to list of motion vector field from the casual neighbours
100 * \param uiDepth
101 * \returns Void
102 */
103Void TDecEntropy::decodeMergeIndex( TComDataCU* pcCU, UInt uiPartIdx, UInt uiAbsPartIdx, PartSize eCUMode, UChar* puhInterDirNeighbours, TComMvField* pcMvFieldNeighbours, UInt uiDepth )
104{
105  UInt uiMergeIndex = 0;
106  m_pcEntropyDecoderIf->parseMergeIndex( pcCU, uiMergeIndex, uiAbsPartIdx, uiDepth );
107  pcCU->setMergeIndexSubParts( uiMergeIndex, uiAbsPartIdx, uiPartIdx, uiDepth );
108}
109
110Void TDecEntropy::decodeSplitFlag   ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
111{
112  m_pcEntropyDecoderIf->parseSplitFlag( pcCU, uiAbsPartIdx, uiDepth );
113}
114
115Void TDecEntropy::decodePredMode( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
116{
117  m_pcEntropyDecoderIf->parsePredMode( pcCU, uiAbsPartIdx, uiDepth );
118 
119#if RWTH_SDC_DLT_B0036
120  // if B-Slice, code SDC flag later
121  if( !pcCU->getSlice()->isInterB() && pcCU->isIntra(uiAbsPartIdx) && pcCU->getSlice()->getSPS()->isDepth() )
122  {
123    // decode SDC flag
124    decodeSDCFlag(pcCU, uiAbsPartIdx, uiDepth);
125  }
126#endif
127}
128
129Void TDecEntropy::decodePartSize( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
130{
131#if RWTH_SDC_DLT_B0036
132  if( !pcCU->getSlice()->isInterB() && pcCU->isIntra(uiAbsPartIdx) && pcCU->getSDCFlag(uiAbsPartIdx)  )
133  {
134    pcCU->setPartSizeSubParts( SIZE_2Nx2N, uiAbsPartIdx, uiDepth );
135    pcCU->setSizeSubParts( g_uiMaxCUWidth>>uiDepth, g_uiMaxCUHeight>>uiDepth, uiAbsPartIdx, uiDepth );
136    return;
137  }
138#endif
139 
140  m_pcEntropyDecoderIf->parsePartSize( pcCU, uiAbsPartIdx, uiDepth );
141 
142#if RWTH_SDC_DLT_B0036
143  if( pcCU->getSlice()->isInterB() && pcCU->getSlice()->getSPS()->isDepth() && pcCU->isIntra(uiAbsPartIdx) )
144  {
145    // decode SDC flag
146    decodeSDCFlag(pcCU, uiAbsPartIdx, uiDepth);
147   
148    if( pcCU->getSDCFlag(uiAbsPartIdx) )
149    {
150      // part size is also known for SDC intra
151      pcCU->setPartSizeSubParts( SIZE_2Nx2N, uiAbsPartIdx, uiDepth );
152      pcCU->setSizeSubParts( g_uiMaxCUWidth>>uiDepth, g_uiMaxCUHeight>>uiDepth, uiAbsPartIdx, uiDepth );
153    }
154  }
155#endif
156}
157
158Void TDecEntropy::decodePredInfo    ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, TComDataCU* pcSubCU )
159{
160#if RWTH_SDC_DLT_B0036
161  if( pcCU->getSDCFlag(uiAbsPartIdx) )
162  {
163    decodeSDCPredMode(pcCU, uiAbsPartIdx, uiDepth);
164    return;
165  }
166#endif
167 
168  PartSize eMode = pcCU->getPartitionSize( uiAbsPartIdx );
169 
170  if( pcCU->isIntra( uiAbsPartIdx ) )                                 // If it is Intra mode, encode intra prediction mode.
171  {
172    if( eMode == SIZE_NxN )                                         // if it is NxN size, encode 4 intra directions.
173    {
174      UInt uiPartOffset = ( pcCU->getPic()->getNumPartInCU() >> ( pcCU->getDepth(uiAbsPartIdx) << 1 ) ) >> 2;
175      // if it is NxN size, this size might be the smallest partition size.                                                         // if it is NxN size, this size might be the smallest partition size.
176      decodeIntraDirModeLuma( pcCU, uiAbsPartIdx,                  uiDepth+1 );
177      decodeIntraDirModeLuma( pcCU, uiAbsPartIdx + uiPartOffset,   uiDepth+1 );
178      decodeIntraDirModeLuma( pcCU, uiAbsPartIdx + uiPartOffset*2, uiDepth+1 );
179      decodeIntraDirModeLuma( pcCU, uiAbsPartIdx + uiPartOffset*3, uiDepth+1 );
180      decodeIntraDirModeChroma( pcCU, uiAbsPartIdx, uiDepth );
181    }
182    else                                                                // if it is not NxN size, encode 1 intra directions
183    {
184      decodeIntraDirModeLuma  ( pcCU, uiAbsPartIdx, uiDepth );
185      decodeIntraDirModeChroma( pcCU, uiAbsPartIdx, uiDepth );
186    }
187  }
188  else                                                                // if it is Inter mode, encode motion vector and reference index
189  {
190    decodePUWise( pcCU, uiAbsPartIdx, uiDepth, pcSubCU );
191  }
192}
193
194/** Parse I_PCM information.
195 * \param pcCU  pointer to CUpointer to CU
196 * \param uiAbsPartIdx CU index
197 * \param uiDepth CU depth
198 * \returns Void
199 */
200Void TDecEntropy::decodeIPCMInfo( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
201{
202  if(!pcCU->getSlice()->getSPS()->getUsePCM()
203    || pcCU->getWidth(uiAbsPartIdx) > (1<<pcCU->getSlice()->getSPS()->getPCMLog2MaxSize())
204    || pcCU->getWidth(uiAbsPartIdx) < (1<<pcCU->getSlice()->getSPS()->getPCMLog2MinSize()) )
205  {
206    return;
207  }
208 
209#if RWTH_SDC_DLT_B0036
210  if( pcCU->getSDCFlag(uiAbsPartIdx) )
211  {
212    return;
213  }
214#endif
215 
216  m_pcEntropyDecoderIf->parseIPCMInfo( pcCU, uiAbsPartIdx, uiDepth );
217}
218
219Void TDecEntropy::decodeIntraDirModeLuma  ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
220{
221  m_pcEntropyDecoderIf->parseIntraDirLumaAng( pcCU, uiAbsPartIdx, uiDepth );
222}
223
224Void TDecEntropy::decodeIntraDirModeChroma( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
225{
226  m_pcEntropyDecoderIf->parseIntraDirChroma( pcCU, uiAbsPartIdx, uiDepth );
227}
228
229/** decode motion information for every PU block.
230 * \param pcCU
231 * \param uiAbsPartIdx
232 * \param uiDepth
233 * \param pcSubCU
234 * \returns Void
235 */
236Void TDecEntropy::decodePUWise( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, TComDataCU* pcSubCU )
237{
238  PartSize ePartSize = pcCU->getPartitionSize( uiAbsPartIdx );
239  UInt uiNumPU = ( ePartSize == SIZE_2Nx2N ? 1 : ( ePartSize == SIZE_NxN ? 4 : 2 ) );
240  UInt uiPUOffset = ( g_auiPUOffset[UInt( ePartSize )] << ( ( pcCU->getSlice()->getSPS()->getMaxCUDepth() - uiDepth ) << 1 ) ) >> 4;
241
242#if CU_BASED_MRG_CAND_LIST
243#if H3D_IVMP
244  TComMvField cMvFieldNeighbours[MRG_MAX_NUM_CANDS_MEM << 1]; // double length for mv of both lists
245  UChar uhInterDirNeighbours[MRG_MAX_NUM_CANDS_MEM];
246  for ( UInt ui = 0; ui < MRG_MAX_NUM_CANDS_MEM; ui++ )
247#else
248  TComMvField cMvFieldNeighbours[MRG_MAX_NUM_CANDS << 1]; // double length for mv of both lists
249  UChar uhInterDirNeighbours[MRG_MAX_NUM_CANDS];
250  for ( UInt ui = 0; ui < MRG_MAX_NUM_CANDS; ui++ )
251#endif
252  {
253    uhInterDirNeighbours[ui] = 0;
254  }
255  Int numValidMergeCand = 0;
256  bool isMerged = false;
257#endif
258
259  pcSubCU->copyInterPredInfoFrom( pcCU, uiAbsPartIdx, REF_PIC_LIST_0 );
260  pcSubCU->copyInterPredInfoFrom( pcCU, uiAbsPartIdx, REF_PIC_LIST_1 );
261  for ( UInt uiPartIdx = 0, uiSubPartIdx = uiAbsPartIdx; uiPartIdx < uiNumPU; uiPartIdx++, uiSubPartIdx += uiPUOffset )
262  {
263#if !CU_BASED_MRG_CAND_LIST
264#if H3D_IVMP
265    TComMvField cMvFieldNeighbours[MRG_MAX_NUM_CANDS_MEM << 1]; // double length for mv of both lists
266    UChar uhInterDirNeighbours[MRG_MAX_NUM_CANDS_MEM];
267    Int numValidMergeCand = 0;
268    for( UInt ui = 0; ui < MRG_MAX_NUM_CANDS_MEM; ++ui )
269#else
270    TComMvField cMvFieldNeighbours[MRG_MAX_NUM_CANDS << 1]; // double length for mv of both lists
271    UChar uhInterDirNeighbours[MRG_MAX_NUM_CANDS];
272    Int numValidMergeCand = 0;
273    for( UInt ui = 0; ui < MRG_MAX_NUM_CANDS; ++ui )
274#endif
275    {
276      uhInterDirNeighbours[ui] = 0;
277    }
278#endif
279    decodeMergeFlag( pcCU, uiSubPartIdx, uiDepth, uiPartIdx );
280    if ( pcCU->getMergeFlag( uiSubPartIdx ) )
281    {
282      decodeMergeIndex( pcCU, uiPartIdx, uiSubPartIdx, ePartSize, uhInterDirNeighbours, cMvFieldNeighbours, uiDepth );
283#if CU_BASED_MRG_CAND_LIST
284      UInt uiMergeIndex = pcCU->getMergeIndex(uiSubPartIdx);
285      if ( pcCU->getSlice()->getPPS()->getLog2ParallelMergeLevelMinus2() && ePartSize != SIZE_2Nx2N && pcSubCU->getWidth( 0 ) <= 8 ) 
286      {
287        pcSubCU->setPartSizeSubParts( SIZE_2Nx2N, 0, uiDepth );
288        if ( !isMerged )
289        {
290          pcSubCU->getInterMergeCandidates( 0, 0, uiDepth, cMvFieldNeighbours, uhInterDirNeighbours, numValidMergeCand );
291          isMerged = true;
292        }
293        pcSubCU->setPartSizeSubParts( ePartSize, 0, uiDepth );
294      }
295      else
296      {
297        uiMergeIndex = pcCU->getMergeIndex(uiSubPartIdx);
298        pcSubCU->getInterMergeCandidates( uiSubPartIdx-uiAbsPartIdx, uiPartIdx, uiDepth, cMvFieldNeighbours, uhInterDirNeighbours, numValidMergeCand, uiMergeIndex );
299      }
300#else
301      UInt uiMergeIndex = pcCU->getMergeIndex(uiSubPartIdx);
302#if MERL_VSP_C0152
303      Int iVSPIndexTrue[3] = {-1, -1, -1};
304      pcSubCU->getInterMergeCandidates( uiSubPartIdx-uiAbsPartIdx, uiPartIdx, uiDepth, cMvFieldNeighbours, uhInterDirNeighbours, numValidMergeCand, iVSPIndexTrue, uiMergeIndex );
305
306#if HHI_MPI
307      if(pcCU->getTextureModeDepth( uiSubPartIdx ) == uiDepth)//MPI is used
308      {
309        TComDataCU *pcTextureCU = pcCU->getSlice()->getTexturePic()->getCU( pcCU->getAddr() );
310        UInt uiCurrPartNumb = pcCU->getPic()->getNumPartInCU() >> (uiDepth << 1);
311        for( UInt ui = 0; ui < uiCurrPartNumb; ui++ )
312        {
313          Int vspIdx = pcTextureCU->getVSPIndex( uiAbsPartIdx + ui);
314          pcCU->setVSPIndex( uiAbsPartIdx + ui, vspIdx);
315        }
316      }
317      else // MPI not used
318#endif
319#if MTK_D0156
320          if( !pcCU->getSlice()->getSPS()->getUseVSPCompensation() )
321          {
322              pcCU->setVSPIndexSubParts( 0, uiSubPartIdx, uiPartIdx, uiDepth ); 
323          }
324          else
325#endif
326      {
327        Int iVSPIdx = 0;
328        Int numVspIdx;
329        numVspIdx = 3;
330        for (Int i = 0; i < numVspIdx; i++)
331        {
332          if (iVSPIndexTrue[i] == uiMergeIndex)
333            {
334              iVSPIdx = i+1;
335              break;
336            }
337        }
338        pcCU->setVSPIndexSubParts( iVSPIdx, uiSubPartIdx, uiPartIdx, uiDepth );  //Initialize the VSP, may change later in get InterMergeCandidates()
339#if QC_BVSP_CleanUP_D0191
340       if(iVSPIdx != 0)
341       {
342         Int iIVCIdx = pcCU->getSlice()->getRefPic(REF_PIC_LIST_0, 0)->getPOC()==pcCU->getSlice()->getPOC() ? 0: pcCU->getSlice()->getNewRefIdx(REF_PIC_LIST_0);
343         cMvFieldNeighbours[ 2*uiMergeIndex].setRefIdx(iIVCIdx);
344       }
345#endif
346      }
347
348#else
349      pcSubCU->getInterMergeCandidates( uiSubPartIdx-uiAbsPartIdx, uiPartIdx, uiDepth, cMvFieldNeighbours, uhInterDirNeighbours, numValidMergeCand, uiMergeIndex );
350#endif
351#endif
352      pcCU->setInterDirSubParts( uhInterDirNeighbours[uiMergeIndex], uiSubPartIdx, uiPartIdx, uiDepth );
353
354      TComMv cTmpMv( 0, 0 );
355      for ( UInt uiRefListIdx = 0; uiRefListIdx < 2; uiRefListIdx++ )
356      {       
357        if ( pcCU->getSlice()->getNumRefIdx( RefPicList( uiRefListIdx ) ) > 0 )
358        {
359          pcCU->setMVPIdxSubParts( 0, RefPicList( uiRefListIdx ), uiSubPartIdx, uiPartIdx, uiDepth);
360          pcCU->setMVPNumSubParts( 0, RefPicList( uiRefListIdx ), uiSubPartIdx, uiPartIdx, uiDepth);
361          pcCU->getCUMvField( RefPicList( uiRefListIdx ) )->setAllMvd( cTmpMv, ePartSize, uiSubPartIdx, uiDepth, uiPartIdx );
362          pcCU->getCUMvField( RefPicList( uiRefListIdx ) )->setAllMvField( cMvFieldNeighbours[ 2*uiMergeIndex + uiRefListIdx ], ePartSize, uiSubPartIdx, uiDepth, uiPartIdx );
363
364        }
365      }
366    }
367    else
368    {
369      decodeInterDirPU( pcCU, uiSubPartIdx, uiDepth, uiPartIdx );
370      for ( UInt uiRefListIdx = 0; uiRefListIdx < 2; uiRefListIdx++ )
371      {       
372        if ( pcCU->getSlice()->getNumRefIdx( RefPicList( uiRefListIdx ) ) > 0 )
373        {
374          decodeRefFrmIdxPU( pcCU,    uiSubPartIdx,              uiDepth, uiPartIdx, RefPicList( uiRefListIdx ) );
375          decodeMvdPU      ( pcCU,    uiSubPartIdx,              uiDepth, uiPartIdx, RefPicList( uiRefListIdx ) );
376          decodeMVPIdxPU   ( pcSubCU, uiSubPartIdx-uiAbsPartIdx, uiDepth, uiPartIdx, RefPicList( uiRefListIdx ) );
377        }
378      }
379    }
380  }
381  return;
382}
383
384/** decode inter direction for a PU block
385 * \param pcCU
386 * \param uiAbsPartIdx
387 * \param uiDepth
388 * \param uiPartIdx
389 * \returns Void
390 */
391Void TDecEntropy::decodeInterDirPU( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt uiPartIdx )
392{
393  UInt uiInterDir;
394
395  if ( pcCU->getSlice()->isInterP() )
396  {
397    uiInterDir = 1;
398  }
399  else
400  {
401    m_pcEntropyDecoderIf->parseInterDir( pcCU, uiInterDir, uiAbsPartIdx, uiDepth );
402  }
403
404  pcCU->setInterDirSubParts( uiInterDir, uiAbsPartIdx, uiPartIdx, uiDepth );
405}
406
407Void TDecEntropy::decodeRefFrmIdxPU( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt uiPartIdx, RefPicList eRefList )
408{
409  if(pcCU->getSlice()->getNumRefIdx(REF_PIC_LIST_C) > 0 && pcCU->getInterDir( uiAbsPartIdx ) != 3)
410  {
411    if(eRefList == REF_PIC_LIST_1)
412    {
413      return;
414    }
415
416    Int iRefFrmIdx = 0;
417    Int iRefFrmIdxTemp;
418    UInt uiInterDir;
419    RefPicList eRefListTemp;
420
421    PartSize ePartSize = pcCU->getPartitionSize( uiAbsPartIdx );
422
423    if ( pcCU->getSlice()->getNumRefIdx ( REF_PIC_LIST_C ) > 1 )
424    {
425      m_pcEntropyDecoderIf->parseRefFrmIdx( pcCU, iRefFrmIdx, uiAbsPartIdx, uiDepth, REF_PIC_LIST_C );
426    }
427    else
428    {
429      iRefFrmIdx=0;
430    }
431    uiInterDir = pcCU->getSlice()->getListIdFromIdxOfLC(iRefFrmIdx) + 1;
432    iRefFrmIdxTemp = pcCU->getSlice()->getRefIdxFromIdxOfLC(iRefFrmIdx);
433    eRefListTemp = (RefPicList)pcCU->getSlice()->getListIdFromIdxOfLC(iRefFrmIdx);
434
435    pcCU->getCUMvField( eRefListTemp )->setAllRefIdx( iRefFrmIdxTemp, ePartSize, uiAbsPartIdx, uiDepth, uiPartIdx );
436
437    pcCU->setInterDirSubParts( uiInterDir, uiAbsPartIdx, uiPartIdx, uiDepth );
438  }
439  else
440  {
441    Int iRefFrmIdx = 0;
442    Int iParseRefFrmIdx = pcCU->getInterDir( uiAbsPartIdx ) & ( 1 << eRefList );
443
444    if ( pcCU->getSlice()->getNumRefIdx( eRefList ) > 1 && iParseRefFrmIdx )
445    {
446      m_pcEntropyDecoderIf->parseRefFrmIdx( pcCU, iRefFrmIdx, uiAbsPartIdx, uiDepth, eRefList );
447    }
448    else if ( !iParseRefFrmIdx )
449    {
450      iRefFrmIdx = NOT_VALID;
451    }
452    else
453    {
454      iRefFrmIdx = 0;
455    }
456
457    PartSize ePartSize = pcCU->getPartitionSize( uiAbsPartIdx );
458    pcCU->getCUMvField( eRefList )->setAllRefIdx( iRefFrmIdx, ePartSize, uiAbsPartIdx, uiDepth, uiPartIdx );
459  }
460}
461
462/** decode motion vector difference for a PU block
463 * \param pcCU
464 * \param uiAbsPartIdx
465 * \param uiDepth
466 * \param uiPartIdx
467 * \param eRefList
468 * \returns Void
469 */
470Void TDecEntropy::decodeMvdPU( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt uiPartIdx, RefPicList eRefList )
471{
472  if ( pcCU->getInterDir( uiAbsPartIdx ) & ( 1 << eRefList ) )
473  {
474    m_pcEntropyDecoderIf->parseMvd( pcCU, uiAbsPartIdx, uiPartIdx, uiDepth, eRefList );
475  }
476}
477
478Void TDecEntropy::decodeMVPIdxPU( TComDataCU* pcSubCU, UInt uiPartAddr, UInt uiDepth, UInt uiPartIdx, RefPicList eRefList )
479{
480  Int iMVPIdx = -1;
481
482  TComMv cZeroMv( 0, 0 );
483  TComMv cMv     = cZeroMv;
484  Int    iRefIdx = -1;
485
486  TComCUMvField* pcSubCUMvField = pcSubCU->getCUMvField( eRefList );
487  AMVPInfo* pAMVPInfo = pcSubCUMvField->getAMVPInfo();
488
489  iRefIdx = pcSubCUMvField->getRefIdx(uiPartAddr);
490  cMv = cZeroMv;
491
492  if ( (pcSubCU->getInterDir(uiPartAddr) & ( 1 << eRefList )) && (pcSubCU->getAMVPMode(uiPartAddr) == AM_EXPL) )
493  {
494#if H3D_IVMP
495#if SEC_TWO_CANDIDATES_FOR_AMVP_D0122
496    const Int iNumAMVPCands = AMVP_MAX_NUM_CANDS;
497#else
498    const Int iNumAMVPCands = AMVP_MAX_NUM_CANDS + ( pcSubCU->getSlice()->getSPS()->getMultiviewMvPredMode() ? 1 : 0 );
499#endif
500    m_pcEntropyDecoderIf->parseMVPIdx( iMVPIdx, iNumAMVPCands );
501#else
502    m_pcEntropyDecoderIf->parseMVPIdx( iMVPIdx );
503#endif
504  }
505#if H3D_IVMP
506  pcSubCU->fillMvpCand(uiPartIdx, uiPartAddr, eRefList, iRefIdx, pAMVPInfo, iMVPIdx);
507#else
508  pcSubCU->fillMvpCand(uiPartIdx, uiPartAddr, eRefList, iRefIdx, pAMVPInfo);
509#endif
510  pcSubCU->setMVPNumSubParts(pAMVPInfo->iN, eRefList, uiPartAddr, uiPartIdx, uiDepth);
511  pcSubCU->setMVPIdxSubParts( iMVPIdx, eRefList, uiPartAddr, uiPartIdx, uiDepth );
512  if ( iRefIdx >= 0 )
513  {
514    m_pcPrediction->getMvPredAMVP( pcSubCU, uiPartIdx, uiPartAddr, eRefList, iRefIdx, cMv);
515    cMv += pcSubCUMvField->getMvd( uiPartAddr );
516  }
517
518  PartSize ePartSize = pcSubCU->getPartitionSize( uiPartAddr );
519  pcSubCU->getCUMvField( eRefList )->setAllMv(cMv, ePartSize, uiPartAddr, 0, uiPartIdx);
520}
521
522Void TDecEntropy::xDecodeTransform( TComDataCU* pcCU, UInt offsetLuma, UInt offsetChroma, UInt uiAbsPartIdx, UInt absTUPartIdx, UInt uiDepth, UInt width, UInt height, UInt uiTrIdx, UInt uiInnerQuadIdx, UInt& uiYCbfFront3, UInt& uiUCbfFront3, UInt& uiVCbfFront3, Bool& bCodeDQP )
523{
524  UInt uiSubdiv;
525  const UInt uiLog2TrafoSize = g_aucConvertToBit[pcCU->getSlice()->getSPS()->getMaxCUWidth()]+2 - uiDepth;
526
527  if(uiTrIdx==0)
528  {
529    m_bakAbsPartIdxCU = uiAbsPartIdx;
530  }
531  if( uiLog2TrafoSize == 2 )
532  {
533    UInt partNum = pcCU->getPic()->getNumPartInCU() >> ( ( uiDepth - 1 ) << 1 );
534    if( ( uiAbsPartIdx % partNum ) == 0 )
535    {
536      m_uiBakAbsPartIdx   = uiAbsPartIdx;
537      m_uiBakChromaOffset = offsetChroma;
538    }
539  }
540  if( pcCU->getPredictionMode(uiAbsPartIdx) == MODE_INTRA && pcCU->getPartitionSize(uiAbsPartIdx) == SIZE_NxN && uiDepth == pcCU->getDepth(uiAbsPartIdx) )
541  {
542    uiSubdiv = 1;
543  }
544  else if( (pcCU->getSlice()->getSPS()->getQuadtreeTUMaxDepthInter() == 1) && (pcCU->getPredictionMode(uiAbsPartIdx) == MODE_INTER) && ( pcCU->getPartitionSize(uiAbsPartIdx) != SIZE_2Nx2N ) && (uiDepth == pcCU->getDepth(uiAbsPartIdx)) )
545  {
546    uiSubdiv = (uiLog2TrafoSize > pcCU->getQuadtreeTULog2MinSizeInCU(uiAbsPartIdx));
547  }
548  else if( uiLog2TrafoSize > pcCU->getSlice()->getSPS()->getQuadtreeTULog2MaxSize() )
549  {
550    uiSubdiv = 1;
551  }
552  else if( uiLog2TrafoSize == pcCU->getSlice()->getSPS()->getQuadtreeTULog2MinSize() )
553  {
554    uiSubdiv = 0;
555  }
556  else if( uiLog2TrafoSize == pcCU->getQuadtreeTULog2MinSizeInCU(uiAbsPartIdx) )
557  {
558    uiSubdiv = 0;
559  }
560  else
561  {
562    assert( uiLog2TrafoSize > pcCU->getQuadtreeTULog2MinSizeInCU(uiAbsPartIdx) );
563    m_pcEntropyDecoderIf->parseTransformSubdivFlag( uiSubdiv, uiDepth );
564  }
565 
566  const UInt uiTrDepth = uiDepth - pcCU->getDepth( uiAbsPartIdx );
567 
568  if( uiLog2TrafoSize <= pcCU->getSlice()->getSPS()->getQuadtreeTULog2MaxSize() )
569  {
570    const Bool bFirstCbfOfCU = uiLog2TrafoSize == pcCU->getSlice()->getSPS()->getQuadtreeTULog2MaxSize() || uiTrDepth == 0;
571    if( bFirstCbfOfCU )
572    {
573      pcCU->setCbfSubParts( 0, TEXT_CHROMA_U, uiAbsPartIdx, uiDepth );
574      pcCU->setCbfSubParts( 0, TEXT_CHROMA_V, uiAbsPartIdx, uiDepth );
575    }
576    if( bFirstCbfOfCU || uiLog2TrafoSize > 2 )
577    {
578      if( bFirstCbfOfCU || pcCU->getCbf( uiAbsPartIdx, TEXT_CHROMA_U, uiTrDepth - 1 ) )
579      {
580        if ( uiInnerQuadIdx == 3 && uiUCbfFront3 == 0 && uiLog2TrafoSize < pcCU->getSlice()->getSPS()->getQuadtreeTULog2MaxSize() )
581        {
582          uiUCbfFront3++;
583          pcCU->setCbfSubParts( 1 << uiTrDepth, TEXT_CHROMA_U, uiAbsPartIdx, uiDepth );
584          //printf( " \nsave bits, U Cbf");
585        }
586        else
587        {
588          m_pcEntropyDecoderIf->parseQtCbf( pcCU, uiAbsPartIdx, TEXT_CHROMA_U, uiTrDepth, uiDepth );
589          uiUCbfFront3 += pcCU->getCbf( uiAbsPartIdx, TEXT_CHROMA_U, uiTrDepth );
590        }
591      }
592      if( bFirstCbfOfCU || pcCU->getCbf( uiAbsPartIdx, TEXT_CHROMA_V, uiTrDepth - 1 ) )
593      {
594        if ( uiInnerQuadIdx == 3 && uiVCbfFront3 == 0 && uiLog2TrafoSize < pcCU->getSlice()->getSPS()->getQuadtreeTULog2MaxSize() )
595        {
596          uiVCbfFront3++;
597          pcCU->setCbfSubParts( 1 << uiTrDepth, TEXT_CHROMA_V, uiAbsPartIdx, uiDepth );
598          //printf( " \nsave bits, V Cbf");
599        }
600        else
601        {
602          m_pcEntropyDecoderIf->parseQtCbf( pcCU, uiAbsPartIdx, TEXT_CHROMA_V, uiTrDepth, uiDepth );
603          uiVCbfFront3 += pcCU->getCbf( uiAbsPartIdx, TEXT_CHROMA_V, uiTrDepth );
604        }
605      }
606    }
607    else
608    {
609      pcCU->setCbfSubParts( pcCU->getCbf( uiAbsPartIdx, TEXT_CHROMA_U, uiTrDepth - 1 ) << uiTrDepth, TEXT_CHROMA_U, uiAbsPartIdx, uiDepth );
610      pcCU->setCbfSubParts( pcCU->getCbf( uiAbsPartIdx, TEXT_CHROMA_V, uiTrDepth - 1 ) << uiTrDepth, TEXT_CHROMA_V, uiAbsPartIdx, uiDepth );
611      if ( uiLog2TrafoSize == 2 )
612      {
613        uiUCbfFront3 += pcCU->getCbf( uiAbsPartIdx, TEXT_CHROMA_U, uiTrDepth );
614        uiVCbfFront3 += pcCU->getCbf( uiAbsPartIdx, TEXT_CHROMA_V, uiTrDepth );
615      }
616    }
617  }
618 
619  if( uiSubdiv )
620  {
621    UInt size;
622    width  >>= 1;
623    height >>= 1;
624    size = width*height;
625    uiTrIdx++;
626    ++uiDepth;
627    const UInt uiQPartNum = pcCU->getPic()->getNumPartInCU() >> (uiDepth << 1);
628    const UInt uiStartAbsPartIdx = uiAbsPartIdx;
629    UInt uiLumaTrMode, uiChromaTrMode;
630    pcCU->convertTransIdx( uiStartAbsPartIdx, uiTrDepth+1, uiLumaTrMode, uiChromaTrMode );
631    UInt uiYCbf = 0;
632    UInt uiUCbf = 0;
633    UInt uiVCbf = 0;
634   
635    UInt uiCurrentCbfY = 0;
636    UInt uiCurrentCbfU = 0;
637    UInt uiCurrentCbfV = 0;
638   
639    for( Int i = 0; i < 4; i++ )
640    {
641      UInt nsAddr = 0;
642      nsAddr = pcCU->getNSAbsPartIdx( uiLog2TrafoSize-1, uiAbsPartIdx, absTUPartIdx, i, uiTrDepth+1 );
643      xDecodeTransform( pcCU, offsetLuma, offsetChroma, uiAbsPartIdx, nsAddr, uiDepth, width, height, uiTrIdx, i, uiCurrentCbfY, uiCurrentCbfU, uiCurrentCbfV, bCodeDQP );
644      uiYCbf |= pcCU->getCbf( uiAbsPartIdx, TEXT_LUMA, uiLumaTrMode );
645      uiUCbf |= pcCU->getCbf( uiAbsPartIdx, TEXT_CHROMA_U, uiChromaTrMode );
646      uiVCbf |= pcCU->getCbf( uiAbsPartIdx, TEXT_CHROMA_V, uiChromaTrMode );
647      uiAbsPartIdx += uiQPartNum;
648      offsetLuma += size;  offsetChroma += (size>>2);
649    }
650   
651    uiYCbfFront3 += uiCurrentCbfY;
652    uiUCbfFront3 += uiCurrentCbfU;
653    uiVCbfFront3 += uiCurrentCbfV;
654   
655    pcCU->convertTransIdx( uiStartAbsPartIdx, uiTrDepth, uiLumaTrMode, uiChromaTrMode );
656    for( UInt ui = 0; ui < 4 * uiQPartNum; ++ui )
657    {
658      pcCU->getCbf( TEXT_LUMA     )[uiStartAbsPartIdx + ui] |= uiYCbf << uiLumaTrMode;
659      pcCU->getCbf( TEXT_CHROMA_U )[uiStartAbsPartIdx + ui] |= uiUCbf << uiChromaTrMode;
660      pcCU->getCbf( TEXT_CHROMA_V )[uiStartAbsPartIdx + ui] |= uiVCbf << uiChromaTrMode;
661    }
662  }
663  else
664  {
665    assert( uiDepth >= pcCU->getDepth( uiAbsPartIdx ) );
666    pcCU->setTrIdxSubParts( uiTrDepth, uiAbsPartIdx, uiDepth );
667   
668    {
669      DTRACE_CABAC_VL( g_nSymbolCounter++ );
670      DTRACE_CABAC_T( "\tTrIdx: abspart=" );
671      DTRACE_CABAC_V( uiAbsPartIdx );
672      DTRACE_CABAC_T( "\tdepth=" );
673      DTRACE_CABAC_V( uiDepth );
674      DTRACE_CABAC_T( "\ttrdepth=" );
675      DTRACE_CABAC_V( uiTrDepth );
676      DTRACE_CABAC_T( "\n" );
677    }
678   
679    UInt uiLumaTrMode, uiChromaTrMode;
680    pcCU->convertTransIdx( uiAbsPartIdx, uiTrDepth, uiLumaTrMode, uiChromaTrMode );
681    if(pcCU->getPredictionMode( uiAbsPartIdx ) == MODE_INTER && pcCU->useNonSquarePU( uiAbsPartIdx ) )
682    {
683      pcCU->setNSQTIdxSubParts( uiLog2TrafoSize, uiAbsPartIdx, absTUPartIdx, uiLumaTrMode );
684    }
685    pcCU->setCbfSubParts ( 0, TEXT_LUMA, uiAbsPartIdx, uiDepth );
686    if( pcCU->getPredictionMode(uiAbsPartIdx) != MODE_INTRA && uiDepth == pcCU->getDepth( uiAbsPartIdx ) && !pcCU->getCbf( uiAbsPartIdx, TEXT_CHROMA_U, 0 ) && !pcCU->getCbf( uiAbsPartIdx, TEXT_CHROMA_V, 0 ) )
687    {
688      pcCU->setCbfSubParts( 1 << uiLumaTrMode, TEXT_LUMA, uiAbsPartIdx, uiDepth );
689    }
690    else
691    {
692      const UInt uiLog2CUSize = g_aucConvertToBit[pcCU->getSlice()->getSPS()->getMaxCUWidth()] + 2 - pcCU->getDepth( uiAbsPartIdx );
693      if ( pcCU->getPredictionMode( uiAbsPartIdx ) != MODE_INTRA && uiInnerQuadIdx == 3 && uiYCbfFront3 == 0 && uiUCbfFront3 == 0 && uiVCbfFront3 == 0
694          && ( uiLog2CUSize <= pcCU->getSlice()->getSPS()->getQuadtreeTULog2MaxSize() + 1 || uiLog2TrafoSize < pcCU->getSlice()->getSPS()->getQuadtreeTULog2MaxSize() ) )
695      {
696        pcCU->setCbfSubParts( 1 << uiLumaTrMode, TEXT_LUMA, uiAbsPartIdx, uiDepth );
697        //printf( " \nsave bits, Y Cbf");
698        uiYCbfFront3++;   
699      }
700      else
701      {
702        m_pcEntropyDecoderIf->parseQtCbf( pcCU, uiAbsPartIdx, TEXT_LUMA, uiLumaTrMode, uiDepth );
703        uiYCbfFront3 += pcCU->getCbf( uiAbsPartIdx, TEXT_LUMA, uiLumaTrMode );
704      }
705    }
706    // transform_unit begin
707    UInt cbfY = pcCU->getCbf( uiAbsPartIdx, TEXT_LUMA    , uiTrIdx );
708    UInt cbfU = pcCU->getCbf( uiAbsPartIdx, TEXT_CHROMA_U, uiTrIdx );
709    UInt cbfV = pcCU->getCbf( uiAbsPartIdx, TEXT_CHROMA_V, uiTrIdx );
710    if( uiLog2TrafoSize == 2 )
711    {
712      UInt partNum = pcCU->getPic()->getNumPartInCU() >> ( ( uiDepth - 1 ) << 1 );
713      if( ( uiAbsPartIdx % partNum ) == (partNum - 1) )
714      {
715        cbfU = pcCU->getCbf( m_uiBakAbsPartIdx, TEXT_CHROMA_U, uiTrIdx );
716        cbfV = pcCU->getCbf( m_uiBakAbsPartIdx, TEXT_CHROMA_V, uiTrIdx );
717      }
718    }
719    if ( cbfY || cbfU || cbfV )
720    {
721      // dQP: only for LCU
722      if ( pcCU->getSlice()->getPPS()->getUseDQP() )
723      {
724        if ( bCodeDQP )
725        {
726          decodeQP( pcCU, m_bakAbsPartIdxCU);
727          bCodeDQP = false;
728        }
729      }
730    }
731    if( cbfY )
732    {
733      Int trWidth = width;
734      Int trHeight = height;
735      pcCU->getNSQTSize( uiTrIdx, uiAbsPartIdx, trWidth, trHeight );
736      m_pcEntropyDecoderIf->parseCoeffNxN( pcCU, (pcCU->getCoeffY()+offsetLuma), uiAbsPartIdx, trWidth, trHeight, uiDepth, TEXT_LUMA );
737    }
738    if( uiLog2TrafoSize > 2 )
739    {
740      Int trWidth = width >> 1;
741      Int trHeight = height >> 1;
742      pcCU->getNSQTSize( uiTrIdx, uiAbsPartIdx, trWidth, trHeight );
743      if( cbfU )
744      {
745        m_pcEntropyDecoderIf->parseCoeffNxN( pcCU, (pcCU->getCoeffCb()+offsetChroma), uiAbsPartIdx, trWidth, trHeight, uiDepth, TEXT_CHROMA_U );
746      }
747      if( cbfV )
748      {
749        m_pcEntropyDecoderIf->parseCoeffNxN( pcCU, (pcCU->getCoeffCr()+offsetChroma), uiAbsPartIdx, trWidth, trHeight, uiDepth, TEXT_CHROMA_V );
750      }
751    }
752    else
753    {
754      UInt partNum = pcCU->getPic()->getNumPartInCU() >> ( ( uiDepth - 1 ) << 1 );
755      if( ( uiAbsPartIdx % partNum ) == (partNum - 1) )
756      {
757        Int trWidth = width;
758        Int trHeight = height;
759        pcCU->getNSQTSize( uiTrIdx - 1, uiAbsPartIdx, trWidth, trHeight );
760        if( cbfU )
761        {
762          m_pcEntropyDecoderIf->parseCoeffNxN( pcCU, (pcCU->getCoeffCb()+m_uiBakChromaOffset), m_uiBakAbsPartIdx, trWidth, trHeight, uiDepth, TEXT_CHROMA_U );
763        }
764        if( cbfV )
765        {
766          m_pcEntropyDecoderIf->parseCoeffNxN( pcCU, (pcCU->getCoeffCr()+m_uiBakChromaOffset), m_uiBakAbsPartIdx, trWidth, trHeight, uiDepth, TEXT_CHROMA_V );
767        }
768      }
769    }
770    // transform_unit end
771  }
772}
773
774
775Void TDecEntropy::decodeQP          ( TComDataCU* pcCU, UInt uiAbsPartIdx )
776{
777  if ( pcCU->getSlice()->getPPS()->getUseDQP() )
778  {
779    m_pcEntropyDecoderIf->parseDeltaQP( pcCU, uiAbsPartIdx, pcCU->getDepth( uiAbsPartIdx ) );
780  }
781}
782
783
784/** decode coefficients
785 * \param pcCU
786 * \param uiAbsPartIdx
787 * \param uiDepth
788 * \param uiWidth
789 * \param uiHeight
790 * \returns Void
791 */
792Void TDecEntropy::decodeCoeff( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt uiWidth, UInt uiHeight, Bool& bCodeDQP )
793{
794  UInt uiMinCoeffSize = pcCU->getPic()->getMinCUWidth()*pcCU->getPic()->getMinCUHeight();
795  UInt uiLumaOffset   = uiMinCoeffSize*uiAbsPartIdx;
796  UInt uiChromaOffset = uiLumaOffset>>2;
797  UInt temp  = 0;
798  UInt temp1 = 0;
799  UInt temp2 = 0;
800 
801#if RWTH_SDC_DLT_B0036
802  if( pcCU->getSDCAvailable(uiAbsPartIdx) && pcCU->getSDCFlag( uiAbsPartIdx ) )
803  {
804    assert( pcCU->getPartitionSize(uiAbsPartIdx) == SIZE_2Nx2N );
805    assert( pcCU->getTransformIdx(uiAbsPartIdx) == 0 );
806    assert( pcCU->getCbf(uiAbsPartIdx, TEXT_LUMA) == 1 );
807    assert( pcCU->getCbf(uiAbsPartIdx, TEXT_CHROMA_U) == 1 );
808    assert( pcCU->getCbf(uiAbsPartIdx, TEXT_CHROMA_V) == 1 );
809   
810    decodeSDCResidualData(pcCU, uiAbsPartIdx, uiDepth);
811    return;
812  }
813#endif
814 
815  if( pcCU->isIntra(uiAbsPartIdx) )
816  {
817  }
818  else
819  {
820    UInt uiQtRootCbf = 1;
821#if HHI_MPI
822    if( !(pcCU->getMergeFlag( uiAbsPartIdx ) && pcCU->getPartitionSize(uiAbsPartIdx) == SIZE_2Nx2N &&
823          ( pcCU->getTextureModeDepth( uiAbsPartIdx ) == -1 || uiDepth == pcCU->getTextureModeDepth( uiAbsPartIdx ) ) ) )
824#else
825    if( !( pcCU->getPartitionSize( uiAbsPartIdx) == SIZE_2Nx2N && pcCU->getMergeFlag( uiAbsPartIdx ) ) )
826#endif
827    {
828      m_pcEntropyDecoderIf->parseQtRootCbf( pcCU, uiAbsPartIdx, uiDepth, uiQtRootCbf );
829    }
830    if ( !uiQtRootCbf )
831    {
832      pcCU->setCbfSubParts( 0, 0, 0, uiAbsPartIdx, uiDepth );
833      pcCU->setTrIdxSubParts( 0 , uiAbsPartIdx, uiDepth );
834      pcCU->setNSQTIdxSubParts( uiAbsPartIdx, uiDepth );
835      return;
836    }
837   
838  }
839
840#if FIX_MPI_B0065
841  if( pcCU->getPredictionMode(uiAbsPartIdx) == MODE_INTER && pcCU->getMergeFlag( uiAbsPartIdx ) && pcCU->getMergeIndex( uiAbsPartIdx ) == 0 && pcCU->getPartitionSize(uiAbsPartIdx) == SIZE_2Nx2N &&  pcCU->getTextureModeDepth( uiAbsPartIdx ) != -1  )
842  {
843    TComDataCU *pcTextureCU = pcCU->getSlice()->getTexturePic()->getCU( pcCU->getAddr() );
844    if( uiDepth == pcTextureCU->getDepth(uiAbsPartIdx))
845    {
846      PartSize partSize = pcTextureCU->getPartitionSize(uiAbsPartIdx);
847      pcCU->setPartSizeSubParts( partSize, uiAbsPartIdx, uiDepth );
848    }
849    else
850    {
851      pcCU->setPartSizeSubParts( SIZE_NxN, uiAbsPartIdx, uiDepth );
852    }
853  }
854#endif
855
856  xDecodeTransform( pcCU, uiLumaOffset, uiChromaOffset, uiAbsPartIdx, uiAbsPartIdx, uiDepth, uiWidth, uiHeight, 0, 0, temp, temp1, temp2, bCodeDQP );
857
858#if FIX_MPI_B0065
859  if( pcCU->getPredictionMode(uiAbsPartIdx) == MODE_INTER && pcCU->getMergeFlag( uiAbsPartIdx ) && pcCU->getMergeIndex( uiAbsPartIdx ) == 0 && pcCU->getPartitionSize(uiAbsPartIdx) != SIZE_2Nx2N &&  pcCU->getTextureModeDepth( uiAbsPartIdx ) != -1 )
860  {
861    pcCU->setPartSizeSubParts( SIZE_2Nx2N, uiAbsPartIdx, uiDepth ); 
862  }
863#endif
864}
865
866#if RWTH_SDC_DLT_B0036
867Void TDecEntropy::decodeSDCPredMode( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
868{
869  assert( pcCU->getSlice()->getSPS()->isDepth() );
870  assert( pcCU->getPartitionSize(uiAbsPartIdx) == SIZE_2Nx2N );
871 
872  m_pcEntropyDecoderIf->parseSDCPredMode(pcCU, uiAbsPartIdx, uiDepth );
873}
874
875Void TDecEntropy::decodeSDCFlag( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
876{
877  assert( pcCU->getSlice()->getSPS()->isDepth() );
878 
879  m_pcEntropyDecoderIf->parseSDCFlag(pcCU, uiAbsPartIdx, uiDepth );
880}
881
882Void TDecEntropy::decodeSDCResidualData( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
883{
884  assert( pcCU->getSlice()->getSPS()->isDepth() );
885  assert( pcCU->getSDCFlag(uiAbsPartIdx) );
886 
887  // number of segments depends on prediction mode for INTRA
888  UInt uiNumSegments = 2;
889  UInt uiLumaPredMode = pcCU->getLumaIntraDir( uiAbsPartIdx );
890  if( pcCU->getPredictionMode(uiAbsPartIdx) == MODE_INTRA && (uiLumaPredMode == DC_IDX || uiLumaPredMode == PLANAR_IDX) )
891    uiNumSegments = 1;
892 
893  // decode residual data for each segment
894  for( UInt uiSeg = 0; uiSeg < uiNumSegments; uiSeg++ )
895    m_pcEntropyDecoderIf->parseSDCResidualData(pcCU, uiAbsPartIdx, uiDepth, uiSeg);
896}
897#endif
898
899//! \}
Note: See TracBrowser for help on using the repository browser.