source: 3DVCSoftware/branches/HTM-9.3-dev1-Samsung/source/Lib/TLibDecoder/TDecCu.cpp

Last change on this file was 787, checked in by samsung-htm, 11 years ago

Integration of JCT3V-G0074: Simplification of DV Derivation

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