source: 3DVCSoftware/trunk/source/Lib/TLibDecoder/TDecCu.cpp @ 1101

Last change on this file since 1101 was 1084, checked in by tech, 10 years ago

Merged branches/HTM-12.1-dev0@1083.

  • Property svn:eol-style set to native
File size: 57.4 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-2014, 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     TDecCu.cpp
35    \brief    CU decoder class
36*/
37
38#include "TDecCu.h"
39
40//! \ingroup TLibDecoder
41//! \{
42
43// ====================================================================================================================
44// Constructor / destructor / create / destroy
45// ====================================================================================================================
46
47TDecCu::TDecCu()
48{
49  m_ppcYuvResi = NULL;
50  m_ppcYuvReco = NULL;
51  m_ppcCU      = NULL;
52#if H_3D_DBBP
53  m_ppcYuvRecoDBBP = NULL;
54#endif
55}
56
57TDecCu::~TDecCu()
58{
59}
60
61Void TDecCu::init( TDecEntropy* pcEntropyDecoder, TComTrQuant* pcTrQuant, TComPrediction* pcPrediction)
62{
63  m_pcEntropyDecoder  = pcEntropyDecoder;
64  m_pcTrQuant         = pcTrQuant;
65  m_pcPrediction      = pcPrediction;
66}
67
68/**
69 \param    uiMaxDepth    total number of allowable depth
70 \param    uiMaxWidth    largest CU width
71 \param    uiMaxHeight   largest CU height
72 */
73Void TDecCu::create( UInt uiMaxDepth, UInt uiMaxWidth, UInt uiMaxHeight )
74{
75  m_uiMaxDepth = uiMaxDepth+1;
76 
77  m_ppcYuvResi = new TComYuv*[m_uiMaxDepth-1];
78  m_ppcYuvReco = new TComYuv*[m_uiMaxDepth-1];
79  m_ppcCU      = new TComDataCU*[m_uiMaxDepth-1];
80#if H_3D_DBBP
81  m_ppcYuvRecoDBBP = new TComYuv*[m_uiMaxDepth-1];
82#endif
83 
84  UInt uiNumPartitions;
85  for ( UInt ui = 0; ui < m_uiMaxDepth-1; ui++ )
86  {
87    uiNumPartitions = 1<<( ( m_uiMaxDepth - ui - 1 )<<1 );
88    UInt uiWidth  = uiMaxWidth  >> ui;
89    UInt uiHeight = uiMaxHeight >> ui;
90   
91    m_ppcYuvResi[ui] = new TComYuv;    m_ppcYuvResi[ui]->create( uiWidth, uiHeight );
92    m_ppcYuvReco[ui] = new TComYuv;    m_ppcYuvReco[ui]->create( uiWidth, uiHeight );
93    m_ppcCU     [ui] = new TComDataCU; m_ppcCU     [ui]->create( uiNumPartitions, uiWidth, uiHeight, true, uiMaxWidth >> (m_uiMaxDepth - 1) );
94#if H_3D_DBBP
95    m_ppcYuvRecoDBBP[ui] = new TComYuv;    m_ppcYuvRecoDBBP[ui]->create( uiWidth, uiHeight );
96#endif
97  }
98 
99  m_bDecodeDQP = false;
100
101  // initialize partition order.
102  UInt* piTmp = &g_auiZscanToRaster[0];
103  initZscanToRaster(m_uiMaxDepth, 1, 0, piTmp);
104  initRasterToZscan( uiMaxWidth, uiMaxHeight, m_uiMaxDepth );
105 
106  // initialize conversion matrix from partition index to pel
107  initRasterToPelXY( uiMaxWidth, uiMaxHeight, m_uiMaxDepth );
108}
109
110Void TDecCu::destroy()
111{
112  for ( UInt ui = 0; ui < m_uiMaxDepth-1; ui++ )
113  {
114    m_ppcYuvResi[ui]->destroy(); delete m_ppcYuvResi[ui]; m_ppcYuvResi[ui] = NULL;
115    m_ppcYuvReco[ui]->destroy(); delete m_ppcYuvReco[ui]; m_ppcYuvReco[ui] = NULL;
116    m_ppcCU     [ui]->destroy(); delete m_ppcCU     [ui]; m_ppcCU     [ui] = NULL;
117#if H_3D_DBBP
118    m_ppcYuvRecoDBBP[ui]->destroy(); delete m_ppcYuvRecoDBBP[ui]; m_ppcYuvRecoDBBP[ui] = NULL;
119#endif
120  }
121 
122  delete [] m_ppcYuvResi; m_ppcYuvResi = NULL;
123  delete [] m_ppcYuvReco; m_ppcYuvReco = NULL;
124  delete [] m_ppcCU     ; m_ppcCU      = NULL;
125#if H_3D_DBBP
126  delete [] m_ppcYuvRecoDBBP; m_ppcYuvRecoDBBP = NULL;
127#endif
128}
129
130// ====================================================================================================================
131// Public member functions
132// ====================================================================================================================
133
134/** \param    pcCU        pointer of CU data
135 \param    ruiIsLast   last data?
136 */
137Void TDecCu::decodeCU( TComDataCU* pcCU, UInt& ruiIsLast )
138{
139  if ( pcCU->getSlice()->getPPS()->getUseDQP() )
140  {
141    setdQPFlag(true);
142  }
143
144  // start from the top level CU
145  xDecodeCU( pcCU, 0, 0, ruiIsLast);
146}
147
148/** \param    pcCU        pointer of CU data
149 */
150Void TDecCu::decompressCU( TComDataCU* pcCU )
151{
152#if !H_3D_IV_MERGE
153  xDecompressCU( pcCU, 0,  0 );
154#endif
155}
156
157// ====================================================================================================================
158// Protected member functions
159// ====================================================================================================================
160
161/**decode end-of-slice flag
162 * \param pcCU
163 * \param uiAbsPartIdx
164 * \param uiDepth
165 * \returns Bool
166 */
167Bool TDecCu::xDecodeSliceEnd( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth)
168{
169  UInt uiIsLast;
170  TComPic* pcPic = pcCU->getPic();
171  TComSlice * pcSlice = pcPic->getSlice(pcPic->getCurrSliceIdx());
172  UInt uiCurNumParts    = pcPic->getNumPartInCU() >> (uiDepth<<1);
173  UInt uiWidth = pcSlice->getSPS()->getPicWidthInLumaSamples();
174  UInt uiHeight = pcSlice->getSPS()->getPicHeightInLumaSamples();
175  UInt uiGranularityWidth = g_uiMaxCUWidth;
176  UInt uiPosX = pcCU->getCUPelX() + g_auiRasterToPelX[ g_auiZscanToRaster[uiAbsPartIdx] ];
177  UInt uiPosY = pcCU->getCUPelY() + g_auiRasterToPelY[ g_auiZscanToRaster[uiAbsPartIdx] ];
178
179  if(((uiPosX+pcCU->getWidth(uiAbsPartIdx))%uiGranularityWidth==0||(uiPosX+pcCU->getWidth(uiAbsPartIdx)==uiWidth))
180    &&((uiPosY+pcCU->getHeight(uiAbsPartIdx))%uiGranularityWidth==0||(uiPosY+pcCU->getHeight(uiAbsPartIdx)==uiHeight)))
181  {
182    m_pcEntropyDecoder->decodeTerminatingBit( uiIsLast );
183  }
184  else
185  {
186    uiIsLast=0;
187  }
188 
189  if(uiIsLast) 
190  {
191    if(pcSlice->isNextSliceSegment()&&!pcSlice->isNextSlice()) 
192    {
193      pcSlice->setSliceSegmentCurEndCUAddr(pcCU->getSCUAddr()+uiAbsPartIdx+uiCurNumParts);
194    }
195    else 
196    {
197      pcSlice->setSliceCurEndCUAddr(pcCU->getSCUAddr()+uiAbsPartIdx+uiCurNumParts);
198      pcSlice->setSliceSegmentCurEndCUAddr(pcCU->getSCUAddr()+uiAbsPartIdx+uiCurNumParts);
199    }
200  }
201
202  return uiIsLast>0;
203}
204
205/** decode CU block recursively
206 * \param pcCU
207 * \param uiAbsPartIdx
208 * \param uiDepth
209 * \returns Void
210 */
211
212Void TDecCu::xDecodeCU( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt& ruiIsLast)
213{
214  TComPic* pcPic = pcCU->getPic();
215  UInt uiCurNumParts    = pcPic->getNumPartInCU() >> (uiDepth<<1);
216  UInt uiQNumParts      = uiCurNumParts>>2;
217 
218  Bool bBoundary = false;
219  UInt uiLPelX   = pcCU->getCUPelX() + g_auiRasterToPelX[ g_auiZscanToRaster[uiAbsPartIdx] ];
220  UInt uiRPelX   = uiLPelX + (g_uiMaxCUWidth>>uiDepth)  - 1;
221  UInt uiTPelY   = pcCU->getCUPelY() + g_auiRasterToPelY[ g_auiZscanToRaster[uiAbsPartIdx] ];
222  UInt uiBPelY   = uiTPelY + (g_uiMaxCUHeight>>uiDepth) - 1;
223#if H_MV_ENC_DEC_TRAC
224  DTRACE_CU_S("=========== coding_quadtree ===========\n")
225  DTRACE_CU("x0", uiLPelX)
226  DTRACE_CU("x1", uiTPelY)
227  DTRACE_CU("log2CbSize", g_uiMaxCUWidth>>uiDepth)
228  DTRACE_CU("cqtDepth"  , uiDepth)
229#endif
230
231  TComSlice * pcSlice = pcCU->getPic()->getSlice(pcCU->getPic()->getCurrSliceIdx());
232  Bool bStartInCU = pcCU->getSCUAddr()+uiAbsPartIdx+uiCurNumParts>pcSlice->getSliceSegmentCurStartCUAddr()&&pcCU->getSCUAddr()+uiAbsPartIdx<pcSlice->getSliceSegmentCurStartCUAddr();
233  if((!bStartInCU) && ( uiRPelX < pcSlice->getSPS()->getPicWidthInLumaSamples() ) && ( uiBPelY < pcSlice->getSPS()->getPicHeightInLumaSamples() ) )
234  {
235    m_pcEntropyDecoder->decodeSplitFlag( pcCU, uiAbsPartIdx, uiDepth );
236  }
237  else
238  {
239    bBoundary = true;
240  }
241 
242  if( ( ( uiDepth < pcCU->getDepth( uiAbsPartIdx ) ) && ( uiDepth < g_uiMaxCUDepth - g_uiAddCUDepth ) ) || bBoundary )
243  {
244    UInt uiIdx = uiAbsPartIdx;
245    if( (g_uiMaxCUWidth>>uiDepth) == pcCU->getSlice()->getPPS()->getMinCuDQPSize() && pcCU->getSlice()->getPPS()->getUseDQP())
246    {
247      setdQPFlag(true);
248      pcCU->setQPSubParts( pcCU->getRefQP(uiAbsPartIdx), uiAbsPartIdx, uiDepth ); // set QP to default QP
249    }
250
251    for ( UInt uiPartUnitIdx = 0; uiPartUnitIdx < 4; uiPartUnitIdx++ )
252    {
253      uiLPelX   = pcCU->getCUPelX() + g_auiRasterToPelX[ g_auiZscanToRaster[uiIdx] ];
254      uiTPelY   = pcCU->getCUPelY() + g_auiRasterToPelY[ g_auiZscanToRaster[uiIdx] ];
255     
256      Bool bSubInSlice = pcCU->getSCUAddr()+uiIdx+uiQNumParts>pcSlice->getSliceSegmentCurStartCUAddr();
257      if ( bSubInSlice )
258      {
259        if ( !ruiIsLast && ( uiLPelX < pcCU->getSlice()->getSPS()->getPicWidthInLumaSamples() ) && ( uiTPelY < pcCU->getSlice()->getSPS()->getPicHeightInLumaSamples() ) )
260        {
261          xDecodeCU( pcCU, uiIdx, uiDepth+1, ruiIsLast );
262        }
263        else
264        {
265          pcCU->setOutsideCUPart( uiIdx, uiDepth+1 );
266        }
267      }
268     
269      uiIdx += uiQNumParts;
270    }
271    if( (g_uiMaxCUWidth>>uiDepth) == pcCU->getSlice()->getPPS()->getMinCuDQPSize() && pcCU->getSlice()->getPPS()->getUseDQP())
272    {
273      if ( getdQPFlag() )
274      {
275        UInt uiQPSrcPartIdx;
276        if ( pcPic->getCU( pcCU->getAddr() )->getSliceSegmentStartCU(uiAbsPartIdx) != pcSlice->getSliceSegmentCurStartCUAddr() )
277        {
278          uiQPSrcPartIdx = pcSlice->getSliceSegmentCurStartCUAddr() % pcPic->getNumPartInCU();
279        }
280        else
281        {
282          uiQPSrcPartIdx = uiAbsPartIdx;
283        }
284        pcCU->setQPSubParts( pcCU->getRefQP( uiQPSrcPartIdx ), uiAbsPartIdx, uiDepth ); // set QP to default QP
285      }
286    }
287    return;
288  }
289 
290#if H_MV_ENC_DEC_TRAC
291  DTRACE_CU_S("=========== coding_unit ===========\n")
292#endif
293
294
295#if H_3D_DDD
296      pcCU->setUseDDD( false, uiAbsPartIdx, uiDepth );
297#endif
298
299  if( (g_uiMaxCUWidth>>uiDepth) >= pcCU->getSlice()->getPPS()->getMinCuDQPSize() && pcCU->getSlice()->getPPS()->getUseDQP())
300  {
301    setdQPFlag(true);
302    pcCU->setQPSubParts( pcCU->getRefQP(uiAbsPartIdx), uiAbsPartIdx, uiDepth ); // set QP to default QP
303  }
304#if H_3D_NBDV
305  DisInfo DvInfo; 
306  DvInfo.bDV = false;
307  DvInfo.m_acNBDV.setZero();
308  DvInfo.m_aVIdxCan = 0;
309#if H_3D_NBDV_REF 
310  DvInfo.m_acDoNBDV.setZero();
311#endif
312 
313 
314  if(!pcCU->getSlice()->isIntra())
315  {
316#if H_3D_ARP && H_3D_IV_MERGE
317    if( pcCU->getSlice()->getVPS()->getUseAdvRP( pcCU->getSlice()->getLayerId() ) || pcCU->getSlice()->getVPS()->getIvMvPredFlag( pcCU->getSlice()->getLayerId() ))
318#else
319#if H_3D_ARP
320    if( pcCU->getSlice()->getVPS()->getUseAdvRP(pcCU->getSlice()->getLayerId()) )
321#else
322#if H_3D_IV_MERGE
323    if( pcCU->getSlice()->getVPS()->getIvMvPredFlag(pcCU->getSlice()->getLayerId()) )
324#else
325    if (0)
326#endif
327#endif
328#endif
329    {
330      m_ppcCU[uiDepth]->copyInterPredInfoFrom( pcCU, uiAbsPartIdx, REF_PIC_LIST_0, true );
331      m_ppcCU[uiDepth]->copyDVInfoFrom( pcCU, uiAbsPartIdx);
332      PartSize ePartTemp = m_ppcCU[uiDepth]->getPartitionSize(0);
333      UChar cWidTemp     = m_ppcCU[uiDepth]->getWidth(0);
334      UChar cHeightTemp  = m_ppcCU[uiDepth]->getHeight(0);
335      m_ppcCU[uiDepth]->setWidth  ( 0, pcCU->getSlice()->getSPS()->getMaxCUWidth ()/(1<<uiDepth)  );
336      m_ppcCU[uiDepth]->setHeight ( 0, pcCU->getSlice()->getSPS()->getMaxCUHeight()/(1<<uiDepth)  );
337      m_ppcCU[uiDepth]->setPartSizeSubParts( SIZE_2Nx2N, 0, uiDepth );     
338#if H_3D_IV_MERGE
339      if( pcCU->getSlice()->getIsDepth())
340      {
341        DvInfo.bDV = m_ppcCU[uiDepth]->getDispforDepth(0, 0, &DvInfo);
342      }
343      else
344      {
345#endif
346#if H_3D_NBDV_REF
347      if(pcCU->getSlice()->getVPS()->getDepthRefinementFlag( pcCU->getSlice()->getLayerIdInVps() ))  //Notes from QC: please check the condition for DoNBDV. Remove this comment once it is done.
348      {
349        DvInfo.bDV = m_ppcCU[uiDepth]->getDisMvpCandNBDV(&DvInfo, true);
350      }
351      else
352#endif
353      {
354        DvInfo.bDV = m_ppcCU[uiDepth]->getDisMvpCandNBDV(&DvInfo);
355      }
356#if H_3D_IV_MERGE
357      }
358#endif
359#if ENC_DEC_TRACE && H_MV_ENC_DEC_TRAC   
360      if ( g_decTraceDispDer )
361      {
362        DTRACE_CU( "RefViewIdx",  DvInfo.m_aVIdxCan );       
363        DTRACE_CU( "MvDisp[x]", DvInfo.m_acNBDV.getHor() );
364        DTRACE_CU( "MvDisp[y]", DvInfo.m_acNBDV.getVer() );
365        DTRACE_CU( "MvRefinedDisp[x]", DvInfo.m_acDoNBDV.getHor() );
366        DTRACE_CU( "MvRefinedDisp[y]", DvInfo.m_acDoNBDV.getVer() );
367      }
368#endif
369
370      pcCU->setDvInfoSubParts(DvInfo, uiAbsPartIdx, uiDepth);
371      m_ppcCU[uiDepth]->setPartSizeSubParts( ePartTemp, 0, uiDepth );
372      m_ppcCU[uiDepth]->setWidth  ( 0, cWidTemp );
373      m_ppcCU[uiDepth]->setHeight ( 0, cHeightTemp );
374     }
375  }
376#endif
377  if (pcCU->getSlice()->getPPS()->getTransquantBypassEnableFlag())
378  {
379    m_pcEntropyDecoder->decodeCUTransquantBypassFlag( pcCU, uiAbsPartIdx, uiDepth );
380  }
381 
382  // decode CU mode and the partition size
383  if( !pcCU->getSlice()->isIntra())
384  {
385    m_pcEntropyDecoder->decodeSkipFlag( pcCU, uiAbsPartIdx, uiDepth );
386  }
387 
388  if( pcCU->isSkipped(uiAbsPartIdx) )
389  {
390#if H_MV_ENC_DEC_TRAC
391    DTRACE_PU_S("=========== prediction_unit ===========\n")
392    DTRACE_PU("x0", uiLPelX)
393    DTRACE_PU("x1", uiTPelY)
394#endif
395    m_ppcCU[uiDepth]->copyInterPredInfoFrom( pcCU, uiAbsPartIdx, REF_PIC_LIST_0 );
396    m_ppcCU[uiDepth]->copyInterPredInfoFrom( pcCU, uiAbsPartIdx, REF_PIC_LIST_1 );
397#if H_3D_IV_MERGE
398    m_ppcCU[uiDepth]->copyDVInfoFrom(pcCU, uiAbsPartIdx);
399    TComMvField cMvFieldNeighbours[MRG_MAX_NUM_CANDS_MEM << 1]; // double length for mv of both lists
400    UChar uhInterDirNeighbours[MRG_MAX_NUM_CANDS_MEM];
401#else
402    TComMvField cMvFieldNeighbours[MRG_MAX_NUM_CANDS << 1]; // double length for mv of both lists
403    UChar uhInterDirNeighbours[MRG_MAX_NUM_CANDS];
404#endif
405    Int numValidMergeCand = 0;
406    for( UInt ui = 0; ui < m_ppcCU[uiDepth]->getSlice()->getMaxNumMergeCand(); ++ui )
407    {
408      uhInterDirNeighbours[ui] = 0;
409    }
410    m_pcEntropyDecoder->decodeMergeIndex( pcCU, 0, uiAbsPartIdx, uiDepth );
411    UInt uiMergeIndex = pcCU->getMergeIndex(uiAbsPartIdx);
412#if H_3D_ARP
413    m_pcEntropyDecoder->decodeARPW( pcCU , uiAbsPartIdx , uiDepth );
414#endif
415#if H_3D_IC
416    m_pcEntropyDecoder->decodeICFlag( pcCU, uiAbsPartIdx, uiDepth );
417#endif
418
419#if H_3D_VSP
420    Int vspFlag[MRG_MAX_NUM_CANDS_MEM];
421    memset(vspFlag, 0, sizeof(Int)*MRG_MAX_NUM_CANDS_MEM);
422#if H_3D_SPIVMP
423    Bool bSPIVMPFlag[MRG_MAX_NUM_CANDS_MEM];
424    memset(bSPIVMPFlag, false, sizeof(Bool)*MRG_MAX_NUM_CANDS_MEM);
425    TComMvField*  pcMvFieldSP;
426    UChar* puhInterDirSP;
427    pcMvFieldSP = new TComMvField[pcCU->getPic()->getPicSym()->getNumPartition()*2]; 
428    puhInterDirSP = new UChar[pcCU->getPic()->getPicSym()->getNumPartition()]; 
429#endif
430    m_ppcCU[uiDepth]->initAvailableFlags();
431    m_ppcCU[uiDepth]->getInterMergeCandidates( 0, 0, cMvFieldNeighbours, uhInterDirNeighbours, numValidMergeCand, uiMergeIndex );
432    m_ppcCU[uiDepth]->xGetInterMergeCandidates( 0, 0, cMvFieldNeighbours, uhInterDirNeighbours
433#if H_3D_SPIVMP
434      , pcMvFieldSP, puhInterDirSP
435#endif
436      , numValidMergeCand, uiMergeIndex );
437
438    m_ppcCU[uiDepth]->buildMCL( cMvFieldNeighbours, uhInterDirNeighbours, vspFlag
439#if H_3D_SPIVMP
440      , bSPIVMPFlag
441#endif
442      , numValidMergeCand );
443    pcCU->setVSPFlagSubParts( vspFlag[uiMergeIndex], uiAbsPartIdx, 0, uiDepth );
444#else
445#if H_3D
446    m_ppcCU[uiDepth]->initAvailableFlags();
447    m_ppcCU[uiDepth]->getInterMergeCandidates( 0, 0, cMvFieldNeighbours, uhInterDirNeighbours, numValidMergeCand, uiMergeIndex );
448    m_ppcCU[uiDepth]->xGetInterMergeCandidates( 0, 0, cMvFieldNeighbours, uhInterDirNeighbours, numValidMergeCand, uiMergeIndex );
449#else
450    m_ppcCU[uiDepth]->getInterMergeCandidates( 0, 0, cMvFieldNeighbours, uhInterDirNeighbours, numValidMergeCand, uiMergeIndex );
451#endif
452#endif
453    pcCU->setInterDirSubParts( uhInterDirNeighbours[uiMergeIndex], uiAbsPartIdx, 0, uiDepth );
454
455#if H_3D_DDD
456    if( uiMergeIndex == m_ppcCU[uiDepth]->getUseDDDCandIdx() )
457    {
458        assert( pcCU->getSlice()->getViewIndex() != 0 );
459        pcCU->setUseDDD( true, uiAbsPartIdx, 0, uiDepth );
460        pcCU->setDDDepthSubParts( m_ppcCU[uiDepth]->getDDTmpDepth(),uiAbsPartIdx, 0, uiDepth );
461    }
462#endif
463
464    TComMv cTmpMv( 0, 0 );
465    for ( UInt uiRefListIdx = 0; uiRefListIdx < 2; uiRefListIdx++ )
466    {       
467      if ( pcCU->getSlice()->getNumRefIdx( RefPicList( uiRefListIdx ) ) > 0 )
468      {
469        pcCU->setMVPIdxSubParts( 0, RefPicList( uiRefListIdx ), uiAbsPartIdx, 0, uiDepth);
470        pcCU->setMVPNumSubParts( 0, RefPicList( uiRefListIdx ), uiAbsPartIdx, 0, uiDepth);
471        pcCU->getCUMvField( RefPicList( uiRefListIdx ) )->setAllMvd( cTmpMv, SIZE_2Nx2N, uiAbsPartIdx, uiDepth );
472        pcCU->getCUMvField( RefPicList( uiRefListIdx ) )->setAllMvField( cMvFieldNeighbours[ 2*uiMergeIndex + uiRefListIdx ], SIZE_2Nx2N, uiAbsPartIdx, uiDepth );
473#if H_3D_VSP
474        if( pcCU->getVSPFlag( uiAbsPartIdx ) != 0 )
475        {
476          if ( uhInterDirNeighbours[ uiMergeIndex ] & (1<<uiRefListIdx) )
477          {
478            UInt dummy;
479            Int vspSize;
480            Int width, height;
481            m_ppcCU[uiDepth]->getPartIndexAndSize( uiAbsPartIdx, dummy, width, height );
482            m_ppcCU[uiDepth]->setMvFieldPUForVSP( pcCU, uiAbsPartIdx, width, height, RefPicList( uiRefListIdx ), cMvFieldNeighbours[ 2*uiMergeIndex + uiRefListIdx ].getRefIdx(), vspSize );
483            pcCU->setVSPFlag( uiAbsPartIdx, vspSize );
484          }
485        }
486#endif
487#if ENC_DEC_TRACE && H_MV_ENC_DEC_TRAC   
488        if ( g_decTraceMvFromMerge )
489        {       
490          if ( uiRefListIdx == 0 )
491          {
492            DTRACE_PU( "mvL0[0]", cMvFieldNeighbours[ 2*uiMergeIndex + uiRefListIdx ].getHor());
493            DTRACE_PU( "mvL0[1]", cMvFieldNeighbours[ 2*uiMergeIndex + uiRefListIdx ].getVer());
494            DTRACE_PU( "refIdxL0   ", cMvFieldNeighbours[ 2*uiMergeIndex + uiRefListIdx ].getRefIdx());
495          }
496          else
497          {
498            DTRACE_PU( "mvL1[0]", cMvFieldNeighbours[ 2*uiMergeIndex + uiRefListIdx ].getHor());
499            DTRACE_PU( "mvL1[1]", cMvFieldNeighbours[ 2*uiMergeIndex + uiRefListIdx ].getVer());
500            DTRACE_PU( "refIdxL1", cMvFieldNeighbours[ 2*uiMergeIndex + uiRefListIdx ].getRefIdx());
501          }
502        }
503#endif
504      }
505    }
506#if H_3D_SPIVMP
507    pcCU->setSPIVMPFlagSubParts(bSPIVMPFlag[uiMergeIndex], uiAbsPartIdx, 0, uiDepth ); 
508    if (bSPIVMPFlag[uiMergeIndex])
509    {
510      UInt uiSPAddr;
511      Int iWidth = pcCU->getWidth(uiAbsPartIdx);
512      Int iHeight = pcCU->getHeight(uiAbsPartIdx);
513
514      Int iNumSPInOneLine, iNumSP, iSPWidth, iSPHeight;
515
516      pcCU->getSPPara(iWidth, iHeight, iNumSP, iNumSPInOneLine, iSPWidth, iSPHeight);
517
518      for (Int iPartitionIdx = 0; iPartitionIdx < iNumSP; iPartitionIdx++)
519      {
520        pcCU->getSPAbsPartIdx(uiAbsPartIdx, iSPWidth, iSPHeight, iPartitionIdx, iNumSPInOneLine, uiSPAddr);
521        pcCU->setInterDirSP(puhInterDirSP[iPartitionIdx], uiSPAddr, iSPWidth, iSPHeight);
522        pcCU->getCUMvField( REF_PIC_LIST_0 )->setMvFieldSP(pcCU, uiSPAddr, pcMvFieldSP[2*iPartitionIdx], iSPWidth, iSPHeight);
523        pcCU->getCUMvField( REF_PIC_LIST_1 )->setMvFieldSP(pcCU, uiSPAddr, pcMvFieldSP[2*iPartitionIdx + 1], iSPWidth, iSPHeight);
524      }
525    }
526    delete[] pcMvFieldSP;
527    delete[] puhInterDirSP;
528#endif
529
530    xFinishDecodeCU( pcCU, uiAbsPartIdx, uiDepth, ruiIsLast );
531#if H_3D_IV_MERGE
532    xDecompressCU(pcCU, uiAbsPartIdx, uiDepth );
533#endif
534    return;
535  }
536#if H_3D_SINGLE_DEPTH
537  m_pcEntropyDecoder->decodeSingleDepthMode( pcCU, uiAbsPartIdx, uiDepth );
538  if(!pcCU->getSingleDepthFlag(uiAbsPartIdx))
539  {
540#endif
541  m_pcEntropyDecoder->decodePredMode( pcCU, uiAbsPartIdx, uiDepth );
542  m_pcEntropyDecoder->decodePartSize( pcCU, uiAbsPartIdx, uiDepth );
543
544#if H_3D_DIM_SDC
545  m_pcEntropyDecoder->decodeSDCFlag( pcCU, uiAbsPartIdx, uiDepth );
546#endif
547  if (pcCU->isIntra( uiAbsPartIdx ) && pcCU->getPartitionSize( uiAbsPartIdx ) == SIZE_2Nx2N )
548  {
549    m_pcEntropyDecoder->decodeIPCMInfo( pcCU, uiAbsPartIdx, uiDepth );
550
551    if(pcCU->getIPCMFlag(uiAbsPartIdx))
552    {
553      xFinishDecodeCU( pcCU, uiAbsPartIdx, uiDepth, ruiIsLast );
554#if H_3D_IV_MERGE
555      xDecompressCU(pcCU, uiAbsPartIdx, uiDepth );
556#endif
557      return;
558    }
559  }
560
561  UInt uiCurrWidth      = pcCU->getWidth ( uiAbsPartIdx );
562  UInt uiCurrHeight     = pcCU->getHeight( uiAbsPartIdx );
563 
564  // prediction mode ( Intra : direction mode, Inter : Mv, reference idx )
565  m_pcEntropyDecoder->decodePredInfo( pcCU, uiAbsPartIdx, uiDepth, m_ppcCU[uiDepth]);
566  // Coefficient decoding
567  Bool bCodeDQP = getdQPFlag();
568  m_pcEntropyDecoder->decodeCoeff( pcCU, uiAbsPartIdx, uiDepth, uiCurrWidth, uiCurrHeight, bCodeDQP );
569  setdQPFlag( bCodeDQP );
570#if H_3D_SINGLE_DEPTH
571  }
572#endif
573  xFinishDecodeCU( pcCU, uiAbsPartIdx, uiDepth, ruiIsLast );
574#if H_3D_IV_MERGE
575  xDecompressCU(pcCU, uiAbsPartIdx, uiDepth );
576#endif
577}
578
579Void TDecCu::xFinishDecodeCU( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt& ruiIsLast)
580{
581  if(  pcCU->getSlice()->getPPS()->getUseDQP())
582  {
583    pcCU->setQPSubParts( getdQPFlag()?pcCU->getRefQP(uiAbsPartIdx):pcCU->getCodedQP(), uiAbsPartIdx, uiDepth ); // set QP
584  }
585
586  ruiIsLast = xDecodeSliceEnd( pcCU, uiAbsPartIdx, uiDepth);
587}
588
589Void TDecCu::xDecompressCU( TComDataCU* pcCU, UInt uiAbsPartIdx,  UInt uiDepth )
590{
591  TComPic* pcPic = pcCU->getPic();
592#if !H_3D_IV_MERGE
593  Bool bBoundary = false;
594  UInt uiLPelX   = pcCU->getCUPelX() + g_auiRasterToPelX[ g_auiZscanToRaster[uiAbsPartIdx] ];
595  UInt uiRPelX   = uiLPelX + (g_uiMaxCUWidth>>uiDepth)  - 1;
596  UInt uiTPelY   = pcCU->getCUPelY() + g_auiRasterToPelY[ g_auiZscanToRaster[uiAbsPartIdx] ];
597  UInt uiBPelY   = uiTPelY + (g_uiMaxCUHeight>>uiDepth) - 1;
598 
599  UInt uiCurNumParts    = pcPic->getNumPartInCU() >> (uiDepth<<1);
600  TComSlice * pcSlice = pcCU->getPic()->getSlice(pcCU->getPic()->getCurrSliceIdx());
601  Bool bStartInCU = pcCU->getSCUAddr()+uiAbsPartIdx+uiCurNumParts>pcSlice->getSliceSegmentCurStartCUAddr()&&pcCU->getSCUAddr()+uiAbsPartIdx<pcSlice->getSliceSegmentCurStartCUAddr();
602  if(bStartInCU||( uiRPelX >= pcSlice->getSPS()->getPicWidthInLumaSamples() ) || ( uiBPelY >= pcSlice->getSPS()->getPicHeightInLumaSamples() ) )
603  {
604    bBoundary = true;
605  }
606 
607  if( ( ( uiDepth < pcCU->getDepth( uiAbsPartIdx ) ) && ( uiDepth < g_uiMaxCUDepth - g_uiAddCUDepth ) ) || bBoundary )
608  {
609    UInt uiNextDepth = uiDepth + 1;
610    UInt uiQNumParts = pcCU->getTotalNumPart() >> (uiNextDepth<<1);
611    UInt uiIdx = uiAbsPartIdx;
612    for ( UInt uiPartIdx = 0; uiPartIdx < 4; uiPartIdx++ )
613    {
614      uiLPelX = pcCU->getCUPelX() + g_auiRasterToPelX[ g_auiZscanToRaster[uiIdx] ];
615      uiTPelY = pcCU->getCUPelY() + g_auiRasterToPelY[ g_auiZscanToRaster[uiIdx] ];
616     
617      Bool binSlice = (pcCU->getSCUAddr()+uiIdx+uiQNumParts>pcSlice->getSliceSegmentCurStartCUAddr())&&(pcCU->getSCUAddr()+uiIdx<pcSlice->getSliceSegmentCurEndCUAddr());
618      if(binSlice&&( uiLPelX < pcSlice->getSPS()->getPicWidthInLumaSamples() ) && ( uiTPelY < pcSlice->getSPS()->getPicHeightInLumaSamples() ) )
619      {
620        xDecompressCU(pcCU, uiIdx, uiNextDepth );
621      }
622     
623      uiIdx += uiQNumParts;
624    }
625    return;
626  }
627#endif 
628  // Residual reconstruction
629  m_ppcYuvResi[uiDepth]->clear();
630 
631  m_ppcCU[uiDepth]->copySubCU( pcCU, uiAbsPartIdx, uiDepth );
632 
633#if H_MV_ENC_DEC_TRAC
634#if ENC_DEC_TRACE
635  stopAtPos  ( m_ppcCU[uiDepth]->getSlice()->getPOC(), 
636    m_ppcCU[uiDepth]->getSlice()->getLayerId(), 
637    m_ppcCU[uiDepth]->getCUPelX(),
638    m_ppcCU[uiDepth]->getCUPelY(),
639    m_ppcCU[uiDepth]->getWidth(0), 
640    m_ppcCU[uiDepth]->getHeight(0) );
641#endif
642#endif
643
644  switch( m_ppcCU[uiDepth]->getPredictionMode(0) )
645  {
646    case MODE_INTER:
647#if H_3D_DBBP
648      if( m_ppcCU[uiDepth]->getDBBPFlag(0) )
649      {
650        xReconInterDBBP( m_ppcCU[uiDepth], uiAbsPartIdx, uiDepth );
651      }
652      else
653      {
654#endif
655#if H_3D_INTER_SDC
656      if( m_ppcCU[uiDepth]->getSDCFlag( 0 ) )
657      {
658        xReconInterSDC( m_ppcCU[uiDepth], uiAbsPartIdx, uiDepth );
659      }
660      else
661      {
662#endif
663      xReconInter( m_ppcCU[uiDepth], uiDepth );
664#if H_3D_INTER_SDC
665      }
666#endif
667#if H_3D_DBBP
668      }
669#endif
670      break;
671    case MODE_INTRA:
672#if H_3D_SINGLE_DEPTH
673      if( m_ppcCU[uiDepth]->getSingleDepthFlag(0) )
674        xReconIntraSingleDepth( m_ppcCU[uiDepth], 0, uiDepth );
675#if H_3D_DIM_SDC
676      else if( m_ppcCU[uiDepth]->getSDCFlag(0) )
677        xReconIntraSDC( m_ppcCU[uiDepth], 0, uiDepth );
678#endif
679      else
680#else
681#if H_3D_DIM_SDC
682      if( m_ppcCU[uiDepth]->getSDCFlag(0) )
683        xReconIntraSDC( m_ppcCU[uiDepth], 0, uiDepth );
684      else
685#endif
686#endif
687      xReconIntraQT( m_ppcCU[uiDepth], uiDepth );
688      break;
689    default:
690      assert(0);
691      break;
692  }
693  if ( m_ppcCU[uiDepth]->isLosslessCoded(0) && (m_ppcCU[uiDepth]->getIPCMFlag(0) == false))
694  {
695    xFillPCMBuffer(m_ppcCU[uiDepth], uiDepth);
696  }
697 
698  xCopyToPic( m_ppcCU[uiDepth], pcPic, uiAbsPartIdx, uiDepth );
699}
700
701Void TDecCu::xReconInter( TComDataCU* pcCU, UInt uiDepth )
702{
703 
704  // inter prediction
705  m_pcPrediction->motionCompensation( pcCU, m_ppcYuvReco[uiDepth] );
706 
707  // inter recon
708  xDecodeInterTexture( pcCU, 0, uiDepth );
709 
710  // clip for only non-zero cbp case
711  if  ( ( pcCU->getCbf( 0, TEXT_LUMA ) ) || ( pcCU->getCbf( 0, TEXT_CHROMA_U ) ) || ( pcCU->getCbf(0, TEXT_CHROMA_V ) ) )
712  {
713    m_ppcYuvReco[uiDepth]->addClip( m_ppcYuvReco[uiDepth], m_ppcYuvResi[uiDepth], 0, pcCU->getWidth( 0 ) );
714  }
715  else
716  {
717    m_ppcYuvReco[uiDepth]->copyPartToPartYuv( m_ppcYuvReco[uiDepth],0, pcCU->getWidth( 0 ),pcCU->getHeight( 0 ));
718  }
719}
720#if H_3D_SINGLE_DEPTH
721Void TDecCu::xReconIntraSingleDepth( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
722{
723  UInt uiWidth        = pcCU->getWidth  ( 0 );
724  UInt uiHeight       = pcCU->getHeight ( 0 );
725
726  TComYuv* pcRecoYuv  = m_ppcYuvReco[uiDepth];
727
728  UInt    uiStride    = pcRecoYuv->getStride  ();
729  Pel*    piReco      = pcRecoYuv->getLumaAddr( uiAbsPartIdx );
730
731
732  AOF( uiWidth == uiHeight );
733  AOF( uiAbsPartIdx == 0 );
734
735  //construction of depth candidates
736  Pel testDepth;
737  Pel DepthNeighbours[5];
738  Int index =0;
739  for( Int i = 0; (i < 5) && (index<SINGLE_DEPTH_MODE_CAND_LIST_SIZE) ; i++ )
740  {
741    if(!pcCU->getNeighDepth (0, uiAbsPartIdx, &testDepth, i))
742    {
743      continue;
744    }
745    DepthNeighbours[index]=testDepth;
746    index++;
747    for(Int j=0;j<index-1;j++)
748    {
749     if( (DepthNeighbours[index-1]==DepthNeighbours[j]) )
750     {
751       index--;
752       break;
753     }
754    }
755  }
756
757  if(index==0)
758  {
759    DepthNeighbours[index]=1<<(g_bitDepthY-1);
760    index++;
761  }
762
763  if(index==1)
764  {
765    DepthNeighbours[index]=ClipY(DepthNeighbours[0] + 1 );
766    index++;
767  }
768
769  for( UInt uiY = 0; uiY < uiHeight; uiY++ )
770  {
771    for( UInt uiX = 0; uiX < uiWidth; uiX++ )
772    {
773      piReco[ uiX ] =DepthNeighbours[(Int)pcCU->getSingleDepthValue(uiAbsPartIdx)];
774    }
775    piReco     += uiStride;
776  }
777
778  // clear UV
779  UInt  uiStrideC     = pcRecoYuv->getCStride();
780  Pel   *pRecCb       = pcRecoYuv->getCbAddr();
781  Pel   *pRecCr       = pcRecoYuv->getCrAddr();
782
783  for (Int y=0; y<uiHeight/2; y++)
784  {
785    for (Int x=0; x<uiWidth/2; x++)
786    {
787      pRecCb[x] = 1<<(g_bitDepthC-1);
788      pRecCr[x] = 1<<(g_bitDepthC-1);
789    }
790
791    pRecCb += uiStrideC;
792    pRecCr += uiStrideC;
793  }
794}
795#endif
796#if H_3D_INTER_SDC
797Void TDecCu::xReconInterSDC( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
798{
799  // inter prediction
800  m_pcPrediction->motionCompensation( pcCU, m_ppcYuvReco[uiDepth] );
801
802  UInt  uiWidth      = pcCU->getWidth ( 0 );
803  UInt  uiHeight     = pcCU->getHeight( 0 );
804
805  Pel  *pResi;
806  UInt uiPelX, uiPelY;
807  UInt uiResiStride = m_ppcYuvResi[uiDepth]->getStride();
808
809  pResi = m_ppcYuvResi[uiDepth]->getLumaAddr( 0 );
810  for( uiPelY = 0; uiPelY < uiHeight; uiPelY++ )
811  {
812    for( uiPelX = 0; uiPelX < uiWidth; uiPelX++ )
813    {
814      pResi[ uiPelX ] = pcCU->getSDCSegmentDCOffset( 0, 0 );
815    }
816    pResi += uiResiStride;
817  }
818
819  m_ppcYuvReco[uiDepth]->addClip( m_ppcYuvReco[uiDepth], m_ppcYuvResi[uiDepth], 0, pcCU->getWidth( 0 ) );
820
821  // clear UV
822  UInt  uiStrideC     = m_ppcYuvReco[uiDepth]->getCStride();
823  Pel   *pRecCb       = m_ppcYuvReco[uiDepth]->getCbAddr();
824  Pel   *pRecCr       = m_ppcYuvReco[uiDepth]->getCrAddr();
825
826  for (Int y = 0; y < uiHeight/2; y++)
827  {
828    for (Int x = 0; x < uiWidth/2; x++)
829    {
830      pRecCb[x] = (Pel)( 1 << ( g_bitDepthC - 1 ) );
831      pRecCr[x] = (Pel)( 1 << ( g_bitDepthC - 1 ) );
832    }
833
834    pRecCb += uiStrideC;
835    pRecCr += uiStrideC;
836  }
837}
838#endif
839
840#if H_3D_DBBP
841Void TDecCu::xReconInterDBBP( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
842{
843  AOF(!pcCU->getSlice()->getIsDepth());
844  AOF(!pcCU->getSlice()->isIntra());
845  PartSize ePartSize = pcCU->getPartitionSize( 0 );
846 
847  // get collocated depth block
848  UInt uiDepthStride = 0;
849#if H_3D_FCO
850  Pel* pDepthPels = pcCU->getVirtualDepthBlock(pcCU->getZorderIdxInCU(), pcCU->getWidth(0), pcCU->getHeight(0), uiDepthStride);
851#else
852  Pel* pDepthPels = pcCU->getVirtualDepthBlock(0, pcCU->getWidth(0), pcCU->getHeight(0), uiDepthStride);
853#endif
854  AOF( pDepthPels != NULL );
855  AOF( uiDepthStride != 0 );
856 
857  // compute mask by segmenting depth block
858  Bool pMask[MAX_CU_SIZE*MAX_CU_SIZE];
859  Bool bValidMask = m_pcPrediction->getSegmentMaskFromDepth(pDepthPels, uiDepthStride, pcCU->getWidth(0), pcCU->getHeight(0), pMask);
860  AOF(bValidMask);
861 
862  DBBPTmpData* pDBBPTmpData = pcCU->getDBBPTmpData();
863  TComYuv* apSegPredYuv[2] = { m_ppcYuvReco[uiDepth], m_ppcYuvRecoDBBP[uiDepth] };
864 
865  // first, extract the two sets of motion parameters
866  UInt uiPUOffset = ( g_auiPUOffset[UInt( ePartSize )] << ( ( pcCU->getSlice()->getSPS()->getMaxCUDepth() - uiDepth ) << 1 ) ) >> 4;
867  for( UInt uiSegment = 0; uiSegment < 2; uiSegment++ )
868  {
869    UInt uiPartAddr = uiSegment*uiPUOffset;
870   
871    pDBBPTmpData->auhInterDir[uiSegment] = pcCU->getInterDir(uiPartAddr);
872   
873    for ( UInt uiRefListIdx = 0; uiRefListIdx < 2; uiRefListIdx++ )
874    {
875      RefPicList eRefList = (RefPicList)uiRefListIdx;
876      pcCU->getMvField(pcCU, uiPartAddr, eRefList, pDBBPTmpData->acMvField[uiSegment][eRefList]);
877    }
878   
879    AOF( pcCU->getARPW(uiPartAddr) == 0 );
880    AOF( pcCU->getICFlag(uiPartAddr) == false );
881    AOF( pcCU->getSPIVMPFlag(uiPartAddr) == false );
882    AOF( pcCU->getVSPFlag(uiPartAddr) == 0 );
883  }
884 
885  // do motion compensation for each segment as 2Nx2N
886  pcCU->setPartSizeSubParts( SIZE_2Nx2N, 0, uiDepth );
887  pcCU->setPredModeSubParts( MODE_INTER, 0, uiDepth );
888  for( UInt uiSegment = 0; uiSegment < 2; uiSegment++ )
889  {
890    pcCU->setInterDirSubParts( pDBBPTmpData->auhInterDir[uiSegment], 0, 0, uiDepth );
891 
892    for ( UInt uiRefListIdx = 0; uiRefListIdx < 2; uiRefListIdx++ )
893    {
894      RefPicList eRefList = (RefPicList)uiRefListIdx;
895
896      pcCU->getCUMvField( eRefList )->setAllMvField( pDBBPTmpData->acMvField[uiSegment][eRefList], SIZE_2Nx2N, 0, 0 );
897    }
898   
899    // inter prediction
900    m_pcPrediction->motionCompensation( pcCU, apSegPredYuv[uiSegment] );
901  }
902 
903  // restore motion information in both segments again
904  pcCU->setPartSizeSubParts( ePartSize,  0, uiDepth );
905  pcCU->setPredModeSubParts( MODE_INTER, 0, uiDepth );
906  for( UInt uiSegment = 0; uiSegment < 2; uiSegment++ )
907  {
908    UInt uiPartAddr = uiSegment*uiPUOffset;
909   
910    pcCU->setDBBPFlagSubParts(true, uiPartAddr, uiSegment, uiDepth);
911    pcCU->setInterDirSubParts(pDBBPTmpData->auhInterDir[uiSegment], uiPartAddr, uiSegment, uiDepth); // interprets depth relative to LCU level
912   
913    for ( UInt uiRefListIdx = 0; uiRefListIdx < 2; uiRefListIdx++ )
914    {
915      RefPicList eRefList = (RefPicList)uiRefListIdx;
916
917      pcCU->getCUMvField( eRefList )->setAllMvField( pDBBPTmpData->acMvField[uiSegment][eRefList], ePartSize, uiPartAddr, 0, uiSegment ); // interprets depth relative to rpcTempCU level
918    }
919  }
920 
921  // reconstruct final prediction signal by combining both segments
922  m_pcPrediction->combineSegmentsWithMask(apSegPredYuv, m_ppcYuvReco[uiDepth], pMask, pcCU->getWidth(0), pcCU->getHeight(0), 0, ePartSize);
923
924  // inter recon
925  xDecodeInterTexture( pcCU, 0, uiDepth );
926 
927  // clip for only non-zero cbp case
928  if  ( ( pcCU->getCbf( 0, TEXT_LUMA ) ) || ( pcCU->getCbf( 0, TEXT_CHROMA_U ) ) || ( pcCU->getCbf(0, TEXT_CHROMA_V ) ) )
929  {
930    m_ppcYuvReco[uiDepth]->addClip( m_ppcYuvReco[uiDepth], m_ppcYuvResi[uiDepth], 0, pcCU->getWidth( 0 ) );
931  }
932  else
933  {
934    m_ppcYuvReco[uiDepth]->copyPartToPartYuv( m_ppcYuvReco[uiDepth],0, pcCU->getWidth( 0 ),pcCU->getHeight( 0 ));
935  }
936}
937#endif
938
939Void
940TDecCu::xIntraRecLumaBlk( TComDataCU* pcCU,
941                         UInt        uiTrDepth,
942                         UInt        uiAbsPartIdx,
943                         TComYuv*    pcRecoYuv,
944                         TComYuv*    pcPredYuv, 
945                         TComYuv*    pcResiYuv )
946{
947  UInt    uiWidth           = pcCU     ->getWidth   ( 0 ) >> uiTrDepth;
948  UInt    uiHeight          = pcCU     ->getHeight  ( 0 ) >> uiTrDepth;
949  UInt    uiStride          = pcRecoYuv->getStride  ();
950  Pel*    piReco            = pcRecoYuv->getLumaAddr( uiAbsPartIdx );
951  Pel*    piPred            = pcPredYuv->getLumaAddr( uiAbsPartIdx );
952  Pel*    piResi            = pcResiYuv->getLumaAddr( uiAbsPartIdx );
953 
954  UInt    uiNumCoeffInc     = ( pcCU->getSlice()->getSPS()->getMaxCUWidth() * pcCU->getSlice()->getSPS()->getMaxCUHeight() ) >> ( pcCU->getSlice()->getSPS()->getMaxCUDepth() << 1 );
955  TCoeff* pcCoeff           = pcCU->getCoeffY() + ( uiNumCoeffInc * uiAbsPartIdx );
956 
957  UInt    uiLumaPredMode    = pcCU->getLumaIntraDir     ( uiAbsPartIdx );
958 
959  UInt    uiZOrder          = pcCU->getZorderIdxInCU() + uiAbsPartIdx;
960  Pel*    piRecIPred        = pcCU->getPic()->getPicYuvRec()->getLumaAddr( pcCU->getAddr(), uiZOrder );
961  UInt    uiRecIPredStride  = pcCU->getPic()->getPicYuvRec()->getStride  ();
962  Bool    useTransformSkip  = pcCU->getTransformSkip(uiAbsPartIdx, TEXT_LUMA);
963  //===== init availability pattern =====
964  Bool  bAboveAvail = false;
965  Bool  bLeftAvail  = false;
966  pcCU->getPattern()->initPattern   ( pcCU, uiTrDepth, uiAbsPartIdx );
967  pcCU->getPattern()->initAdiPattern( pcCU, uiAbsPartIdx, uiTrDepth, 
968                                     m_pcPrediction->getPredicBuf       (),
969                                     m_pcPrediction->getPredicBufWidth  (),
970                                     m_pcPrediction->getPredicBufHeight (),
971                                     bAboveAvail, bLeftAvail );
972 
973  //===== get prediction signal =====
974#if H_3D_DIM
975  if( isDimMode( uiLumaPredMode ) )
976  {
977    m_pcPrediction->predIntraLumaDepth( pcCU, uiAbsPartIdx, uiLumaPredMode, piPred, uiStride, uiWidth, uiHeight );
978  }
979  else
980  {
981#endif
982  m_pcPrediction->predIntraLumaAng( pcCU->getPattern(), uiLumaPredMode, piPred, uiStride, uiWidth, uiHeight, bAboveAvail, bLeftAvail );
983#if H_3D_DIM
984  }
985#endif
986 
987#if H_3D
988  Bool useDltFlag = (isDimMode( uiLumaPredMode ) || uiLumaPredMode == HOR_IDX || uiLumaPredMode == VER_IDX || uiLumaPredMode == DC_IDX) && pcCU->getSlice()->getIsDepth() && pcCU->getSlice()->getPPS()->getDLT()->getUseDLTFlag(pcCU->getSlice()->getLayerIdInVps());
989
990  if ( pcCU->getCbf( uiAbsPartIdx, TEXT_LUMA, uiTrDepth ) || useDltFlag )
991#else
992  if ( pcCU->getCbf( uiAbsPartIdx, TEXT_LUMA, uiTrDepth ) )
993#endif
994  {
995  //===== inverse transform =====
996  m_pcTrQuant->setQPforQuant  ( pcCU->getQP(0), TEXT_LUMA, pcCU->getSlice()->getSPS()->getQpBDOffsetY(), 0 );
997
998  Int scalingListType = (pcCU->isIntra(uiAbsPartIdx) ? 0 : 3) + g_eTTable[(Int)TEXT_LUMA];
999    assert(scalingListType < SCALING_LIST_NUM);
1000  m_pcTrQuant->invtransformNxN( pcCU->getCUTransquantBypass(uiAbsPartIdx), TEXT_LUMA, pcCU->getLumaIntraDir( uiAbsPartIdx ), piResi, uiStride, pcCoeff, uiWidth, uiHeight, scalingListType, useTransformSkip );
1001
1002 
1003  //===== reconstruction =====
1004  Pel* pPred      = piPred;
1005  Pel* pResi      = piResi;
1006  Pel* pReco      = piReco;
1007  Pel* pRecIPred  = piRecIPred;
1008  for( UInt uiY = 0; uiY < uiHeight; uiY++ )
1009  {
1010    for( UInt uiX = 0; uiX < uiWidth; uiX++ )
1011    {
1012      pReco    [ uiX ] = ClipY( pPred[ uiX ] + pResi[ uiX ] );
1013      pRecIPred[ uiX ] = pReco[ uiX ];
1014    }
1015    pPred     += uiStride;
1016    pResi     += uiStride;
1017    pReco     += uiStride;
1018    pRecIPred += uiRecIPredStride;
1019  }
1020}
1021  else
1022  {
1023    //===== reconstruction =====
1024    Pel* pPred      = piPred;
1025    Pel* pReco      = piReco;
1026    Pel* pRecIPred  = piRecIPred;
1027    for ( Int y = 0; y < uiHeight; y++ )
1028    {
1029      for ( Int x = 0; x < uiWidth; x++ )
1030      {
1031        pReco    [ x ] = pPred[ x ];
1032        pRecIPred[ x ] = pReco[ x ];
1033      }
1034      pPred     += uiStride;
1035      pReco     += uiStride;
1036      pRecIPred += uiRecIPredStride;
1037    }
1038  }
1039}
1040
1041
1042Void
1043TDecCu::xIntraRecChromaBlk( TComDataCU* pcCU,
1044                           UInt        uiTrDepth,
1045                           UInt        uiAbsPartIdx,
1046                           TComYuv*    pcRecoYuv,
1047                           TComYuv*    pcPredYuv, 
1048                           TComYuv*    pcResiYuv,
1049                           UInt        uiChromaId )
1050{
1051  UInt uiFullDepth  = pcCU->getDepth( 0 ) + uiTrDepth;
1052  UInt uiLog2TrSize = g_aucConvertToBit[ pcCU->getSlice()->getSPS()->getMaxCUWidth() >> uiFullDepth ] + 2;
1053
1054  if( uiLog2TrSize == 2 )
1055  {
1056    assert( uiTrDepth > 0 );
1057    uiTrDepth--;
1058    UInt uiQPDiv = pcCU->getPic()->getNumPartInCU() >> ( ( pcCU->getDepth( 0 ) + uiTrDepth ) << 1 );
1059    Bool bFirstQ = ( ( uiAbsPartIdx % uiQPDiv ) == 0 );
1060    if( !bFirstQ )
1061    {
1062      return;
1063    }
1064  }
1065 
1066  TextType  eText             = ( uiChromaId > 0 ? TEXT_CHROMA_V : TEXT_CHROMA_U );
1067  UInt      uiWidth           = pcCU     ->getWidth   ( 0 ) >> ( uiTrDepth + 1 );
1068  UInt      uiHeight          = pcCU     ->getHeight  ( 0 ) >> ( uiTrDepth + 1 );
1069  UInt      uiStride          = pcRecoYuv->getCStride ();
1070  Pel*      piReco            = ( uiChromaId > 0 ? pcRecoYuv->getCrAddr( uiAbsPartIdx ) : pcRecoYuv->getCbAddr( uiAbsPartIdx ) );
1071  Pel*      piPred            = ( uiChromaId > 0 ? pcPredYuv->getCrAddr( uiAbsPartIdx ) : pcPredYuv->getCbAddr( uiAbsPartIdx ) );
1072  Pel*      piResi            = ( uiChromaId > 0 ? pcResiYuv->getCrAddr( uiAbsPartIdx ) : pcResiYuv->getCbAddr( uiAbsPartIdx ) );
1073 
1074  UInt      uiNumCoeffInc     = ( ( pcCU->getSlice()->getSPS()->getMaxCUWidth() * pcCU->getSlice()->getSPS()->getMaxCUHeight() ) >> ( pcCU->getSlice()->getSPS()->getMaxCUDepth() << 1 ) ) >> 2;
1075  TCoeff*   pcCoeff           = ( uiChromaId > 0 ? pcCU->getCoeffCr() : pcCU->getCoeffCb() ) + ( uiNumCoeffInc * uiAbsPartIdx );
1076 
1077  UInt      uiChromaPredMode  = pcCU->getChromaIntraDir( 0 );
1078 
1079  UInt      uiZOrder          = pcCU->getZorderIdxInCU() + uiAbsPartIdx;
1080  Pel*      piRecIPred        = ( uiChromaId > 0 ? pcCU->getPic()->getPicYuvRec()->getCrAddr( pcCU->getAddr(), uiZOrder ) : pcCU->getPic()->getPicYuvRec()->getCbAddr( pcCU->getAddr(), uiZOrder ) );
1081  UInt      uiRecIPredStride  = pcCU->getPic()->getPicYuvRec()->getCStride();
1082  Bool      useTransformSkipChroma = pcCU->getTransformSkip(uiAbsPartIdx,eText);
1083  //===== init availability pattern =====
1084  Bool  bAboveAvail = false;
1085  Bool  bLeftAvail  = false;
1086  pcCU->getPattern()->initPattern         ( pcCU, uiTrDepth, uiAbsPartIdx );
1087
1088  pcCU->getPattern()->initAdiPatternChroma( pcCU, uiAbsPartIdx, uiTrDepth,
1089                                           m_pcPrediction->getPredicBuf       (),
1090                                           m_pcPrediction->getPredicBufWidth  (),
1091                                           m_pcPrediction->getPredicBufHeight (),
1092                                           bAboveAvail, bLeftAvail );
1093  Int* pPatChroma   = ( uiChromaId > 0 ? pcCU->getPattern()->getAdiCrBuf( uiWidth, uiHeight, m_pcPrediction->getPredicBuf() ) : pcCU->getPattern()->getAdiCbBuf( uiWidth, uiHeight, m_pcPrediction->getPredicBuf() ) );
1094 
1095  //===== get prediction signal =====
1096  {
1097    if( uiChromaPredMode == DM_CHROMA_IDX )
1098    {
1099      uiChromaPredMode = pcCU->getLumaIntraDir( 0 );
1100#if H_3D_DIM
1101      mapDepthModeToIntraDir( uiChromaPredMode );
1102#endif
1103    }
1104    m_pcPrediction->predIntraChromaAng( pPatChroma, uiChromaPredMode, piPred, uiStride, uiWidth, uiHeight, bAboveAvail, bLeftAvail ); 
1105  }
1106
1107  if ( pcCU->getCbf( uiAbsPartIdx, eText, uiTrDepth ) )
1108  {
1109  //===== inverse transform =====
1110  Int curChromaQpOffset;
1111  if(eText == TEXT_CHROMA_U)
1112  {
1113    curChromaQpOffset = pcCU->getSlice()->getPPS()->getChromaCbQpOffset() + pcCU->getSlice()->getSliceQpDeltaCb();
1114  }
1115  else
1116  {
1117    curChromaQpOffset = pcCU->getSlice()->getPPS()->getChromaCrQpOffset() + pcCU->getSlice()->getSliceQpDeltaCr();
1118  }
1119  m_pcTrQuant->setQPforQuant  ( pcCU->getQP(0), eText, pcCU->getSlice()->getSPS()->getQpBDOffsetC(), curChromaQpOffset );
1120
1121  Int scalingListType = (pcCU->isIntra(uiAbsPartIdx) ? 0 : 3) + g_eTTable[(Int)eText];
1122    assert(scalingListType < SCALING_LIST_NUM);
1123  m_pcTrQuant->invtransformNxN( pcCU->getCUTransquantBypass(uiAbsPartIdx), eText, REG_DCT, piResi, uiStride, pcCoeff, uiWidth, uiHeight, scalingListType, useTransformSkipChroma );
1124
1125  //===== reconstruction =====
1126  Pel* pPred      = piPred;
1127  Pel* pResi      = piResi;
1128  Pel* pReco      = piReco;
1129  Pel* pRecIPred  = piRecIPred;
1130  for( UInt uiY = 0; uiY < uiHeight; uiY++ )
1131  {
1132    for( UInt uiX = 0; uiX < uiWidth; uiX++ )
1133    {
1134      pReco    [ uiX ] = ClipC( pPred[ uiX ] + pResi[ uiX ] );
1135      pRecIPred[ uiX ] = pReco[ uiX ];
1136    }
1137    pPred     += uiStride;
1138    pResi     += uiStride;
1139    pReco     += uiStride;
1140    pRecIPred += uiRecIPredStride;
1141  }
1142}
1143  else
1144  {
1145    //===== reconstruction =====
1146    Pel* pPred      = piPred;
1147    Pel* pReco      = piReco;
1148    Pel* pRecIPred  = piRecIPred;
1149    for ( Int y = 0; y < uiHeight; y++ )
1150    {
1151      for ( Int x = 0; x < uiWidth; x++ )
1152      {
1153        pReco    [ x ] = pPred[ x ];
1154        pRecIPred[ x ] = pReco[ x ];
1155      }
1156      pPred     += uiStride;
1157      pReco     += uiStride;
1158      pRecIPred += uiRecIPredStride;
1159    }   
1160  }
1161}
1162
1163
1164Void
1165TDecCu::xReconIntraQT( TComDataCU* pcCU, UInt uiDepth )
1166{
1167  UInt  uiInitTrDepth = ( pcCU->getPartitionSize(0) == SIZE_2Nx2N ? 0 : 1 );
1168  UInt  uiNumPart     = pcCU->getNumPartitions();
1169  UInt  uiNumQParts   = pcCU->getTotalNumPart() >> 2;
1170 
1171  if (pcCU->getIPCMFlag(0))
1172  {
1173    xReconPCM( pcCU, uiDepth );
1174    return;
1175  }
1176
1177  for( UInt uiPU = 0; uiPU < uiNumPart; uiPU++ )
1178  {
1179    xIntraLumaRecQT( pcCU, uiInitTrDepth, uiPU * uiNumQParts, m_ppcYuvReco[uiDepth], m_ppcYuvReco[uiDepth], m_ppcYuvResi[uiDepth] );
1180  } 
1181
1182  for( UInt uiPU = 0; uiPU < uiNumPart; uiPU++ )
1183  {
1184    xIntraChromaRecQT( pcCU, uiInitTrDepth, uiPU * uiNumQParts, m_ppcYuvReco[uiDepth], m_ppcYuvReco[uiDepth], m_ppcYuvResi[uiDepth] );
1185  }
1186
1187}
1188
1189#if H_3D_DIM_SDC
1190Void TDecCu::xReconIntraSDC( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
1191{
1192  UInt uiWidth        = pcCU->getWidth  ( 0 );
1193  UInt uiHeight       = pcCU->getHeight ( 0 );
1194  TComWedgelet* dmm4SegmentationOrg = new TComWedgelet( uiWidth, uiHeight );
1195  UInt numParts = 1;
1196  UInt sdcDepth    = 0;
1197  TComYuv* pcRecoYuv  = m_ppcYuvReco[uiDepth];
1198  TComYuv* pcPredYuv  = m_ppcYuvReco[uiDepth];
1199  TComYuv* pcResiYuv  = m_ppcYuvResi[uiDepth];
1200
1201  UInt    uiStride = 0;
1202  Pel*    piReco;
1203  Pel*    piPred;
1204  Pel*    piResi;
1205
1206  UInt    uiZOrder;       
1207  Pel*    piRecIPred;     
1208  UInt    uiRecIPredStride;
1209
1210  UInt    uiLumaPredMode = 0; 
1211
1212  if ((uiWidth >> pcCU->getSlice()->getSPS()->getQuadtreeTULog2MaxSize()) > 1)
1213  {
1214    numParts = uiWidth * uiWidth >> (2 * pcCU->getSlice()->getSPS()->getQuadtreeTULog2MaxSize());
1215    sdcDepth = g_aucConvertToBit[uiWidth] + 2 - pcCU->getSlice()->getSPS()->getQuadtreeTULog2MaxSize();
1216    uiWidth = uiHeight = (1 << pcCU->getSlice()->getSPS()->getQuadtreeTULog2MaxSize());
1217  }
1218
1219  for ( Int i = 0; i < numParts; i++ )
1220  {
1221    uiStride    = pcRecoYuv->getStride  ();
1222    piReco      = pcRecoYuv->getLumaAddr( uiAbsPartIdx );
1223    piPred      = pcPredYuv->getLumaAddr( uiAbsPartIdx );
1224    piResi      = pcResiYuv->getLumaAddr( uiAbsPartIdx );
1225
1226    uiZOrder          = pcCU->getZorderIdxInCU() + uiAbsPartIdx;
1227    piRecIPred        = pcCU->getPic()->getPicYuvRec()->getLumaAddr( pcCU->getAddr(), uiZOrder );
1228    uiRecIPredStride  = pcCU->getPic()->getPicYuvRec()->getStride  ();
1229
1230    uiLumaPredMode    = pcCU->getLumaIntraDir     ( uiAbsPartIdx );
1231
1232    AOF( uiWidth == uiHeight );
1233
1234    //===== init availability pattern =====
1235    Bool  bAboveAvail = false;
1236    Bool  bLeftAvail  = false;
1237
1238    pcCU->getPattern()->initPattern   ( pcCU, sdcDepth, uiAbsPartIdx );
1239    pcCU->getPattern()->initAdiPattern( pcCU, uiAbsPartIdx, sdcDepth, m_pcPrediction->getPredicBuf(), m_pcPrediction->getPredicBufWidth(), m_pcPrediction->getPredicBufHeight(), bAboveAvail, bLeftAvail );
1240
1241    TComWedgelet* dmm4Segmentation = new TComWedgelet( uiWidth, uiHeight );
1242    //===== get prediction signal =====
1243    if( isDimMode( uiLumaPredMode ) )
1244    {
1245      m_pcPrediction->predIntraLumaDepth( pcCU, uiAbsPartIdx, uiLumaPredMode, piPred, uiStride, uiWidth, uiHeight, false, dmm4Segmentation  );
1246      Bool* dmm4PatternSplit = dmm4Segmentation->getPattern();
1247      Bool* dmm4PatternOrg = dmm4SegmentationOrg->getPattern();
1248      for( UInt k = 0; k < (uiWidth*uiHeight); k++ ) 
1249      { 
1250        dmm4PatternOrg[k+(uiAbsPartIdx<<4)] = dmm4PatternSplit[k];
1251      }
1252    }
1253    else
1254    {
1255      m_pcPrediction->predIntraLumaAng( pcCU->getPattern(), uiLumaPredMode, piPred, uiStride, uiWidth, uiHeight, bAboveAvail, bLeftAvail );
1256    }
1257
1258    if ( numParts > 1 )
1259    {
1260      for( UInt uiY = 0; uiY < uiHeight; uiY++ )
1261      {
1262        for( UInt uiX = 0; uiX < uiWidth; uiX++ )
1263        {
1264          piReco        [ uiX ] = ClipY( piPred[ uiX ] );
1265          piRecIPred    [ uiX ] = piReco[ uiX ];
1266        }
1267        piPred     += uiStride;
1268        piReco     += uiStride;
1269        piRecIPred += uiRecIPredStride;
1270      }
1271    }
1272    uiAbsPartIdx += ( (uiWidth * uiWidth) >> 4 );
1273    dmm4Segmentation->destroy(); delete dmm4Segmentation;
1274  }
1275  uiAbsPartIdx = 0;
1276 
1277  if ( numParts > 1 )
1278  {
1279    uiWidth = pcCU->getWidth( 0 );
1280    uiHeight = pcCU->getHeight( 0 );
1281  }
1282  piReco      = pcRecoYuv->getLumaAddr( uiAbsPartIdx );
1283  piPred      = pcPredYuv->getLumaAddr( uiAbsPartIdx );
1284  piResi      = pcResiYuv->getLumaAddr( uiAbsPartIdx );
1285  uiZOrder          = pcCU->getZorderIdxInCU() + uiAbsPartIdx;
1286  piRecIPred        = pcCU->getPic()->getPicYuvRec()->getLumaAddr( pcCU->getAddr(), uiZOrder );
1287  uiRecIPredStride  = pcCU->getPic()->getPicYuvRec()->getStride  ();
1288  // number of segments depends on prediction mode
1289  UInt uiNumSegments = 1;
1290  Bool* pbMask = NULL;
1291  UInt uiMaskStride = 0;
1292 
1293  if( getDimType( uiLumaPredMode ) == DMM1_IDX )
1294  {
1295    Int uiTabIdx = pcCU->getDmmWedgeTabIdx(DMM1_IDX, uiAbsPartIdx);
1296
1297    WedgeList* pacWedgeList  = pcCU->isDMM1UpscaleMode(uiWidth) ? &g_dmmWedgeLists[(g_aucConvertToBit[pcCU->getDMM1BasePatternWidth(uiWidth)])] :  &g_dmmWedgeLists[(g_aucConvertToBit[uiWidth])];
1298    TComWedgelet* pcWedgelet = &(pacWedgeList->at( uiTabIdx ));
1299
1300    uiNumSegments = 2;
1301
1302    pbMask       = pcCU->isDMM1UpscaleMode( uiWidth ) ? pcWedgelet->getScaledPattern(uiWidth) : pcWedgelet->getPattern();
1303    uiMaskStride = pcCU->isDMM1UpscaleMode( uiWidth ) ? uiWidth : pcWedgelet->getStride();
1304  }
1305  if( getDimType( uiLumaPredMode ) == DMM4_IDX )
1306  {
1307    uiNumSegments = 2;
1308    pbMask  = dmm4SegmentationOrg->getPattern();
1309    uiMaskStride = dmm4SegmentationOrg->getStride();
1310  }
1311  // get DC prediction for each segment
1312  Pel apDCPredValues[2];
1313  if ( getDimType( uiLumaPredMode ) == DMM1_IDX || getDimType( uiLumaPredMode ) == DMM4_IDX )
1314  {
1315    apDCPredValues[0] = pcCU->getDmmPredictor( 0 );
1316    apDCPredValues[1] = pcCU->getDmmPredictor( 1 );
1317  }
1318  else
1319  {
1320    m_pcPrediction->analyzeSegmentsSDC(piPred, uiStride, uiWidth, apDCPredValues, uiNumSegments, pbMask, uiMaskStride, uiLumaPredMode);
1321  }
1322 
1323  // reconstruct residual based on mask + DC residuals
1324  Pel apDCResiValues[2];
1325  for( UInt uiSegment = 0; uiSegment < uiNumSegments; uiSegment++ )
1326  {
1327#if H_3D_DIM_DLT
1328    Pel   pPredIdx    = pcCU->getSlice()->getPPS()->getDLT()->depthValue2idx( pcCU->getSlice()->getLayerIdInVps(), apDCPredValues[uiSegment] );
1329    Pel   pResiIdx    = pcCU->getSDCSegmentDCOffset(uiSegment, uiAbsPartIdx);
1330    Pel   pRecoValue  = pcCU->getSlice()->getPPS()->getDLT()->idx2DepthValue( pcCU->getSlice()->getLayerIdInVps(), pPredIdx + pResiIdx );
1331
1332    apDCResiValues[uiSegment]  = pRecoValue - apDCPredValues[uiSegment];
1333#else
1334    apDCResiValues[uiSegment]  = pcCU->getSDCSegmentDCOffset(uiSegment, uiAbsPartIdx);
1335#endif
1336  }
1337 
1338  //===== reconstruction =====
1339  Bool*pMask      = pbMask;
1340  Pel* pPred      = piPred;
1341  Pel* pResi      = piResi;
1342  Pel* pReco      = piReco;
1343  Pel* pRecIPred  = piRecIPred;
1344 
1345  for( UInt uiY = 0; uiY < uiHeight; uiY++ )
1346  {
1347    for( UInt uiX = 0; uiX < uiWidth; uiX++ )
1348    {
1349      UChar ucSegment = pMask?(UChar)pMask[uiX]:0;
1350      assert( ucSegment < uiNumSegments );
1351     
1352      Pel pResiDC = apDCResiValues[ucSegment];
1353     
1354      pReco    [ uiX ] = ClipY( pPred[ uiX ] + pResiDC );
1355      pRecIPred[ uiX ] = pReco[ uiX ];
1356    }
1357    pPred     += uiStride;
1358    pResi     += uiStride;
1359    pReco     += uiStride;
1360    pRecIPred += uiRecIPredStride;
1361    pMask     += uiMaskStride;
1362  }
1363 
1364  // clear UV
1365  UInt  uiStrideC     = pcPredYuv->getCStride();
1366  Pel   *pRecCb       = pcPredYuv->getCbAddr();
1367  Pel   *pRecCr       = pcPredYuv->getCrAddr();
1368 
1369  for (Int y=0; y<uiHeight/2; y++)
1370  {
1371    for (Int x=0; x<uiWidth/2; x++)
1372    {
1373      pRecCb[x] = 128;
1374      pRecCr[x] = 128;
1375    }
1376   
1377    pRecCb += uiStrideC;
1378    pRecCr += uiStrideC;
1379  }
1380  dmm4SegmentationOrg->destroy(); delete dmm4SegmentationOrg;
1381}
1382#endif
1383
1384/** Function for deriving recontructed PU/CU Luma sample with QTree structure
1385 * \param pcCU pointer of current CU
1386 * \param uiTrDepth current tranform split depth
1387 * \param uiAbsPartIdx  part index
1388 * \param pcRecoYuv pointer to reconstructed sample arrays
1389 * \param pcPredYuv pointer to prediction sample arrays
1390 * \param pcResiYuv pointer to residue sample arrays
1391 *
1392 \ This function dervies recontructed PU/CU Luma sample with recursive QTree structure
1393 */
1394Void
1395TDecCu::xIntraLumaRecQT( TComDataCU* pcCU,
1396                     UInt        uiTrDepth,
1397                     UInt        uiAbsPartIdx,
1398                     TComYuv*    pcRecoYuv,
1399                     TComYuv*    pcPredYuv, 
1400                     TComYuv*    pcResiYuv )
1401{
1402  UInt uiFullDepth  = pcCU->getDepth(0) + uiTrDepth;
1403  UInt uiTrMode     = pcCU->getTransformIdx( uiAbsPartIdx );
1404  if( uiTrMode == uiTrDepth )
1405  {
1406    xIntraRecLumaBlk  ( pcCU, uiTrDepth, uiAbsPartIdx, pcRecoYuv, pcPredYuv, pcResiYuv );
1407  }
1408  else
1409  {
1410    UInt uiNumQPart  = pcCU->getPic()->getNumPartInCU() >> ( ( uiFullDepth + 1 ) << 1 );
1411    for( UInt uiPart = 0; uiPart < 4; uiPart++ )
1412    {
1413      xIntraLumaRecQT( pcCU, uiTrDepth + 1, uiAbsPartIdx + uiPart * uiNumQPart, pcRecoYuv, pcPredYuv, pcResiYuv );
1414    }
1415  }
1416}
1417
1418/** Function for deriving recontructed PU/CU chroma samples with QTree structure
1419 * \param pcCU pointer of current CU
1420 * \param uiTrDepth current tranform split depth
1421 * \param uiAbsPartIdx  part index
1422 * \param pcRecoYuv pointer to reconstructed sample arrays
1423 * \param pcPredYuv pointer to prediction sample arrays
1424 * \param pcResiYuv pointer to residue sample arrays
1425 *
1426 \ This function dervies recontructed PU/CU chroma samples with QTree recursive structure
1427 */
1428Void
1429TDecCu::xIntraChromaRecQT( TComDataCU* pcCU,
1430                     UInt        uiTrDepth,
1431                     UInt        uiAbsPartIdx,
1432                     TComYuv*    pcRecoYuv,
1433                     TComYuv*    pcPredYuv, 
1434                     TComYuv*    pcResiYuv )
1435{
1436  UInt uiFullDepth  = pcCU->getDepth(0) + uiTrDepth;
1437  UInt uiTrMode     = pcCU->getTransformIdx( uiAbsPartIdx );
1438  if( uiTrMode == uiTrDepth )
1439  {
1440    xIntraRecChromaBlk( pcCU, uiTrDepth, uiAbsPartIdx, pcRecoYuv, pcPredYuv, pcResiYuv, 0 );
1441    xIntraRecChromaBlk( pcCU, uiTrDepth, uiAbsPartIdx, pcRecoYuv, pcPredYuv, pcResiYuv, 1 );
1442  }
1443  else
1444  {
1445    UInt uiNumQPart  = pcCU->getPic()->getNumPartInCU() >> ( ( uiFullDepth + 1 ) << 1 );
1446    for( UInt uiPart = 0; uiPart < 4; uiPart++ )
1447    {
1448      xIntraChromaRecQT( pcCU, uiTrDepth + 1, uiAbsPartIdx + uiPart * uiNumQPart, pcRecoYuv, pcPredYuv, pcResiYuv );
1449    }
1450  }
1451}
1452
1453Void TDecCu::xCopyToPic( TComDataCU* pcCU, TComPic* pcPic, UInt uiZorderIdx, UInt uiDepth )
1454{
1455  UInt uiCUAddr = pcCU->getAddr();
1456 
1457  m_ppcYuvReco[uiDepth]->copyToPicYuv  ( pcPic->getPicYuvRec (), uiCUAddr, uiZorderIdx );
1458 
1459  return;
1460}
1461
1462Void TDecCu::xDecodeInterTexture ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
1463{
1464  UInt    uiWidth    = pcCU->getWidth ( uiAbsPartIdx );
1465  UInt    uiHeight   = pcCU->getHeight( uiAbsPartIdx );
1466  TCoeff* piCoeff;
1467 
1468  Pel*    pResi;
1469  UInt    trMode = pcCU->getTransformIdx( uiAbsPartIdx );
1470 
1471  // Y
1472  piCoeff = pcCU->getCoeffY();
1473  pResi = m_ppcYuvResi[uiDepth]->getLumaAddr();
1474
1475  m_pcTrQuant->setQPforQuant( pcCU->getQP( uiAbsPartIdx ), TEXT_LUMA, pcCU->getSlice()->getSPS()->getQpBDOffsetY(), 0 );
1476
1477  m_pcTrQuant->invRecurTransformNxN ( pcCU, 0, TEXT_LUMA, pResi, 0, m_ppcYuvResi[uiDepth]->getStride(), uiWidth, uiHeight, trMode, 0, piCoeff );
1478 
1479  // Cb and Cr
1480  Int curChromaQpOffset = pcCU->getSlice()->getPPS()->getChromaCbQpOffset() + pcCU->getSlice()->getSliceQpDeltaCb();
1481  m_pcTrQuant->setQPforQuant( pcCU->getQP( uiAbsPartIdx ), TEXT_CHROMA, pcCU->getSlice()->getSPS()->getQpBDOffsetC(), curChromaQpOffset );
1482
1483  uiWidth  >>= 1;
1484  uiHeight >>= 1;
1485  piCoeff = pcCU->getCoeffCb(); pResi = m_ppcYuvResi[uiDepth]->getCbAddr();
1486  m_pcTrQuant->invRecurTransformNxN ( pcCU, 0, TEXT_CHROMA_U, pResi, 0, m_ppcYuvResi[uiDepth]->getCStride(), uiWidth, uiHeight, trMode, 0, piCoeff );
1487
1488  curChromaQpOffset = pcCU->getSlice()->getPPS()->getChromaCrQpOffset() + pcCU->getSlice()->getSliceQpDeltaCr();
1489  m_pcTrQuant->setQPforQuant( pcCU->getQP( uiAbsPartIdx ), TEXT_CHROMA, pcCU->getSlice()->getSPS()->getQpBDOffsetC(), curChromaQpOffset );
1490
1491  piCoeff = pcCU->getCoeffCr(); pResi = m_ppcYuvResi[uiDepth]->getCrAddr();
1492  m_pcTrQuant->invRecurTransformNxN ( pcCU, 0, TEXT_CHROMA_V, pResi, 0, m_ppcYuvResi[uiDepth]->getCStride(), uiWidth, uiHeight, trMode, 0, piCoeff );
1493}
1494
1495/** Function for deriving reconstructed luma/chroma samples of a PCM mode CU.
1496 * \param pcCU pointer to current CU
1497 * \param uiPartIdx part index
1498 * \param piPCM pointer to PCM code arrays
1499 * \param piReco pointer to reconstructed sample arrays
1500 * \param uiStride stride of reconstructed sample arrays
1501 * \param uiWidth CU width
1502 * \param uiHeight CU height
1503 * \param ttText texture component type
1504 * \returns Void
1505 */
1506Void TDecCu::xDecodePCMTexture( TComDataCU* pcCU, UInt uiPartIdx, Pel *piPCM, Pel* piReco, UInt uiStride, UInt uiWidth, UInt uiHeight, TextType ttText)
1507{
1508  UInt uiX, uiY;
1509  Pel* piPicReco;
1510  UInt uiPicStride;
1511  UInt uiPcmLeftShiftBit; 
1512
1513  if( ttText == TEXT_LUMA )
1514  {
1515    uiPicStride   = pcCU->getPic()->getPicYuvRec()->getStride();
1516    piPicReco = pcCU->getPic()->getPicYuvRec()->getLumaAddr(pcCU->getAddr(), pcCU->getZorderIdxInCU()+uiPartIdx);
1517    uiPcmLeftShiftBit = g_bitDepthY - pcCU->getSlice()->getSPS()->getPCMBitDepthLuma();
1518  }
1519  else
1520  {
1521    uiPicStride = pcCU->getPic()->getPicYuvRec()->getCStride();
1522
1523    if( ttText == TEXT_CHROMA_U )
1524    {
1525      piPicReco = pcCU->getPic()->getPicYuvRec()->getCbAddr(pcCU->getAddr(), pcCU->getZorderIdxInCU()+uiPartIdx);
1526    }
1527    else
1528    {
1529      piPicReco = pcCU->getPic()->getPicYuvRec()->getCrAddr(pcCU->getAddr(), pcCU->getZorderIdxInCU()+uiPartIdx);
1530    }
1531    uiPcmLeftShiftBit = g_bitDepthC - pcCU->getSlice()->getSPS()->getPCMBitDepthChroma();
1532  }
1533
1534  for( uiY = 0; uiY < uiHeight; uiY++ )
1535  {
1536    for( uiX = 0; uiX < uiWidth; uiX++ )
1537    {
1538      piReco[uiX] = (piPCM[uiX] << uiPcmLeftShiftBit);
1539      piPicReco[uiX] = piReco[uiX];
1540    }
1541    piPCM += uiWidth;
1542    piReco += uiStride;
1543    piPicReco += uiPicStride;
1544  }
1545}
1546
1547/** Function for reconstructing a PCM mode CU.
1548 * \param pcCU pointer to current CU
1549 * \param uiDepth CU Depth
1550 * \returns Void
1551 */
1552Void TDecCu::xReconPCM( TComDataCU* pcCU, UInt uiDepth )
1553{
1554  // Luma
1555  UInt uiWidth  = (g_uiMaxCUWidth >> uiDepth);
1556  UInt uiHeight = (g_uiMaxCUHeight >> uiDepth);
1557
1558  Pel* piPcmY = pcCU->getPCMSampleY();
1559  Pel* piRecoY = m_ppcYuvReco[uiDepth]->getLumaAddr(0, uiWidth);
1560
1561  UInt uiStride = m_ppcYuvResi[uiDepth]->getStride();
1562
1563  xDecodePCMTexture( pcCU, 0, piPcmY, piRecoY, uiStride, uiWidth, uiHeight, TEXT_LUMA);
1564
1565  // Cb and Cr
1566  UInt uiCWidth  = (uiWidth>>1);
1567  UInt uiCHeight = (uiHeight>>1);
1568
1569  Pel* piPcmCb = pcCU->getPCMSampleCb();
1570  Pel* piPcmCr = pcCU->getPCMSampleCr();
1571  Pel* pRecoCb = m_ppcYuvReco[uiDepth]->getCbAddr();
1572  Pel* pRecoCr = m_ppcYuvReco[uiDepth]->getCrAddr();
1573
1574  UInt uiCStride = m_ppcYuvReco[uiDepth]->getCStride();
1575
1576  xDecodePCMTexture( pcCU, 0, piPcmCb, pRecoCb, uiCStride, uiCWidth, uiCHeight, TEXT_CHROMA_U);
1577  xDecodePCMTexture( pcCU, 0, piPcmCr, pRecoCr, uiCStride, uiCWidth, uiCHeight, TEXT_CHROMA_V);
1578}
1579
1580/** Function for filling the PCM buffer of a CU using its reconstructed sample array
1581 * \param pcCU pointer to current CU
1582 * \param uiDepth CU Depth
1583 * \returns Void
1584 */
1585Void TDecCu::xFillPCMBuffer(TComDataCU* pCU, UInt depth)
1586{
1587  // Luma
1588  UInt width  = (g_uiMaxCUWidth >> depth);
1589  UInt height = (g_uiMaxCUHeight >> depth);
1590
1591  Pel* pPcmY = pCU->getPCMSampleY();
1592  Pel* pRecoY = m_ppcYuvReco[depth]->getLumaAddr(0, width);
1593
1594  UInt stride = m_ppcYuvReco[depth]->getStride();
1595
1596  for(Int y = 0; y < height; y++ )
1597  {
1598    for(Int x = 0; x < width; x++ )
1599    {
1600      pPcmY[x] = pRecoY[x];
1601    }
1602    pPcmY += width;
1603    pRecoY += stride;
1604  }
1605
1606  // Cb and Cr
1607  UInt widthC  = (width>>1);
1608  UInt heightC = (height>>1);
1609
1610  Pel* pPcmCb = pCU->getPCMSampleCb();
1611  Pel* pPcmCr = pCU->getPCMSampleCr();
1612  Pel* pRecoCb = m_ppcYuvReco[depth]->getCbAddr();
1613  Pel* pRecoCr = m_ppcYuvReco[depth]->getCrAddr();
1614
1615  UInt strideC = m_ppcYuvReco[depth]->getCStride();
1616
1617  for(Int y = 0; y < heightC; y++ )
1618  {
1619    for(Int x = 0; x < widthC; x++ )
1620    {
1621      pPcmCb[x] = pRecoCb[x];
1622      pPcmCr[x] = pRecoCr[x];
1623    }
1624    pPcmCr += widthC;
1625    pPcmCb += widthC;
1626    pRecoCb += strideC;
1627    pRecoCr += strideC;
1628  }
1629
1630}
1631
1632//! \}
Note: See TracBrowser for help on using the repository browser.