source: 3DVCSoftware/branches/HTM-9.3-dev1-NTT/source/Lib/TLibDecoder/TDecCu.cpp @ 1417

Last change on this file since 1417 was 809, checked in by ntt, 11 years ago

Integration of G0148

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