source: 3DVCSoftware/branches/HTM-9.2-dev0/source/Lib/TLibDecoder/TDecCu.cpp @ 769

Last change on this file since 769 was 767, checked in by tech, 11 years ago

Cleanup part 4

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