source: 3DVCSoftware/branches/HTM-6.2-dev2-MERL/source/Lib/TLibDecoder/TDecEntropy.cpp @ 840

Last change on this file since 840 was 412, checked in by mitsubishi-htm, 12 years ago

-D0166 part 1, set refView selection for NBDV.

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