source: 3DVCSoftware/branches/HTM-3.0-LG/source/Lib/TLibDecoder/TDecCu.cpp @ 1417

Last change on this file since 1417 was 62, checked in by lg, 13 years ago
  • Property svn:eol-style set to native
File size: 44.9 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 *
[56]6 * Copyright (c) 2010-2012, 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#if HHI_INTER_VIEW_RESIDUAL_PRED
[2]52  m_ppcYuvResPred = NULL;
[56]53#endif
54  m_ppcCU      = NULL;
[2]55}
56
57TDecCu::~TDecCu()
58{
59}
60
61Void TDecCu::init( TDecEntropy* pcEntropyDecoder, TComTrQuant* pcTrQuant, TComPrediction* pcPrediction)
62{
63  m_pcEntropyDecoder  = pcEntropyDecoder;
64  m_pcTrQuant         = pcTrQuant;
65  m_pcPrediction      = pcPrediction;
66}
67
68/**
69 \param    uiMaxDepth    total number of allowable depth
70 \param    uiMaxWidth    largest CU width
71 \param    uiMaxHeight   largest CU height
72 */
73Void TDecCu::create( UInt uiMaxDepth, UInt uiMaxWidth, UInt uiMaxHeight )
74{
75  m_uiMaxDepth = uiMaxDepth+1;
76 
[56]77  m_ppcYuvResi = new TComYuv*[m_uiMaxDepth-1];
78  m_ppcYuvReco = new TComYuv*[m_uiMaxDepth-1];
79#if HHI_INTER_VIEW_RESIDUAL_PRED
80  m_ppcYuvResPred = new TComYuv*   [m_uiMaxDepth-1];
81#endif
82  m_ppcCU      = new TComDataCU*[m_uiMaxDepth-1];
[2]83 
84  UInt uiNumPartitions;
85  for ( UInt ui = 0; ui < m_uiMaxDepth-1; ui++ )
86  {
87    uiNumPartitions = 1<<( ( m_uiMaxDepth - ui - 1 )<<1 );
88    UInt uiWidth  = uiMaxWidth  >> ui;
89    UInt uiHeight = uiMaxHeight >> ui;
90   
[56]91    m_ppcYuvResi[ui] = new TComYuv;    m_ppcYuvResi[ui]->create( uiWidth, uiHeight );
92    m_ppcYuvReco[ui] = new TComYuv;    m_ppcYuvReco[ui]->create( uiWidth, uiHeight );
93#if HHI_INTER_VIEW_RESIDUAL_PRED
[2]94    m_ppcYuvResPred[ui] = new TComYuv;    m_ppcYuvResPred[ui]->create( uiWidth, uiHeight );
[56]95#endif
96    m_ppcCU     [ui] = new TComDataCU; m_ppcCU     [ui]->create( uiNumPartitions, uiWidth, uiHeight, true, uiMaxWidth >> (m_uiMaxDepth - 1) );
[2]97  }
98 
[56]99  m_bDecodeDQP = false;
100
[2]101  // initialize partition order.
102  UInt* piTmp = &g_auiZscanToRaster[0];
103  initZscanToRaster(m_uiMaxDepth, 1, 0, piTmp);
104  initRasterToZscan( uiMaxWidth, uiMaxHeight, m_uiMaxDepth );
105 
106  // initialize conversion matrix from partition index to pel
107  initRasterToPelXY( uiMaxWidth, uiMaxHeight, m_uiMaxDepth );
[56]108  initMotionReferIdx ( uiMaxWidth, uiMaxHeight, m_uiMaxDepth );
[2]109}
110
111Void TDecCu::destroy()
112{
113  for ( UInt ui = 0; ui < m_uiMaxDepth-1; ui++ )
114  {
[56]115    m_ppcYuvResi[ui]->destroy(); delete m_ppcYuvResi[ui]; m_ppcYuvResi[ui] = NULL;
116    m_ppcYuvReco[ui]->destroy(); delete m_ppcYuvReco[ui]; m_ppcYuvReco[ui] = NULL;
117#if HHI_INTER_VIEW_RESIDUAL_PRED
[2]118    m_ppcYuvResPred[ui]->destroy(); delete m_ppcYuvResPred[ui]; m_ppcYuvResPred[ui] = NULL;
[56]119#endif
120    m_ppcCU     [ui]->destroy(); delete m_ppcCU     [ui]; m_ppcCU     [ui] = NULL;
[2]121  }
122 
[56]123  delete [] m_ppcYuvResi; m_ppcYuvResi = NULL;
124  delete [] m_ppcYuvReco; m_ppcYuvReco = NULL;
125#if HHI_INTER_VIEW_RESIDUAL_PRED
[2]126  delete [] m_ppcYuvResPred; m_ppcYuvResPred = NULL;
[56]127#endif
128  delete [] m_ppcCU     ; m_ppcCU      = NULL;
[2]129}
130
131// ====================================================================================================================
132// Public member functions
133// ====================================================================================================================
134
135/** \param    pcCU        pointer of CU data
136 \param    ruiIsLast   last data?
137 */
138Void TDecCu::decodeCU( TComDataCU* pcCU, UInt& ruiIsLast )
139{
[56]140  if ( pcCU->getSlice()->getPPS()->getUseDQP() )
[2]141  {
[56]142    setdQPFlag(true);
[2]143  }
[56]144
145#if BURST_IPCM
146  pcCU->setNumSucIPCM(0);
147#endif
148
[2]149  // start from the top level CU
[56]150  xDecodeCU( pcCU, 0, 0, ruiIsLast);
[2]151}
152
153/** \param    pcCU        pointer of CU data
154 */
155Void TDecCu::decompressCU( TComDataCU* pcCU )
156{
157  xDecompressCU( pcCU, pcCU, 0,  0 );
158}
159
160// ====================================================================================================================
161// Protected member functions
162// ====================================================================================================================
163
[56]164/**decode end-of-slice flag
165 * \param pcCU
166 * \param uiAbsPartIdx
167 * \param uiDepth
168 * \returns Bool
169 */
170Bool TDecCu::xDecodeSliceEnd( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth) {
171  UInt uiIsLast;
172  TComPic* pcPic = pcCU->getPic();
173  TComSlice * pcSlice = pcPic->getSlice(pcPic->getCurrSliceIdx());
174  UInt uiCurNumParts    = pcPic->getNumPartInCU() >> (uiDepth<<1);
175  UInt uiWidth = pcSlice->getSPS()->getPicWidthInLumaSamples();
176  UInt uiHeight = pcSlice->getSPS()->getPicHeightInLumaSamples();
177  UInt uiGranularityWidth = g_uiMaxCUWidth>>(pcSlice->getPPS()->getSliceGranularity());
178  UInt uiPosX = pcCU->getCUPelX() + g_auiRasterToPelX[ g_auiZscanToRaster[uiAbsPartIdx] ];
179  UInt uiPosY = pcCU->getCUPelY() + g_auiRasterToPelY[ g_auiZscanToRaster[uiAbsPartIdx] ];
180
181#if HHI_MPI
182  const UInt uiCUWidth  = pcCU->getTextureModeDepth( uiAbsPartIdx ) != -1 ? g_uiMaxCUWidth>>uiDepth  : pcCU->getWidth (uiAbsPartIdx);
183  const UInt uiCUHeight = pcCU->getTextureModeDepth( uiAbsPartIdx ) != -1 ? g_uiMaxCUHeight>>uiDepth : pcCU->getHeight(uiAbsPartIdx);
184  if(((uiPosX+uiCUWidth)%uiGranularityWidth==0||(uiPosX+uiCUWidth==uiWidth))
185    &&((uiPosY+uiCUHeight)%uiGranularityWidth==0||(uiPosY+uiCUHeight==uiHeight)))
186#else
187  if(((uiPosX+pcCU->getWidth(uiAbsPartIdx))%uiGranularityWidth==0||(uiPosX+pcCU->getWidth(uiAbsPartIdx)==uiWidth))
188    &&((uiPosY+pcCU->getHeight(uiAbsPartIdx))%uiGranularityWidth==0||(uiPosY+pcCU->getHeight(uiAbsPartIdx)==uiHeight)))
189#endif
190  {
191    m_pcEntropyDecoder->decodeTerminatingBit( uiIsLast );
192  }
193  else
194  {
195    uiIsLast=0;
196  }
197 
198  if(uiIsLast) 
199  {
200    if(pcSlice->isNextEntropySlice()&&!pcSlice->isNextSlice()) 
201    {
202      pcSlice->setEntropySliceCurEndCUAddr(pcCU->getSCUAddr()+uiAbsPartIdx+uiCurNumParts);
203    }
204    else 
205    {
206      pcSlice->setSliceCurEndCUAddr(pcCU->getSCUAddr()+uiAbsPartIdx+uiCurNumParts);
207      pcSlice->setEntropySliceCurEndCUAddr(pcCU->getSCUAddr()+uiAbsPartIdx+uiCurNumParts);
208    }
209  }
210
211  return uiIsLast>0;
212}
213
[2]214/** decode CU block recursively
215 * \param pcCU
216 * \param uiAbsPartIdx
217 * \param uiDepth
218 * \returns Void
219 */
[56]220
221Void TDecCu::xDecodeCU( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt& ruiIsLast)
[2]222{
223  TComPic* pcPic = pcCU->getPic();
224  UInt uiCurNumParts    = pcPic->getNumPartInCU() >> (uiDepth<<1);
225  UInt uiQNumParts      = uiCurNumParts>>2;
226 
227  Bool bBoundary = false;
228  UInt uiLPelX   = pcCU->getCUPelX() + g_auiRasterToPelX[ g_auiZscanToRaster[uiAbsPartIdx] ];
229  UInt uiRPelX   = uiLPelX + (g_uiMaxCUWidth>>uiDepth)  - 1;
230  UInt uiTPelY   = pcCU->getCUPelY() + g_auiRasterToPelY[ g_auiZscanToRaster[uiAbsPartIdx] ];
231  UInt uiBPelY   = uiTPelY + (g_uiMaxCUHeight>>uiDepth) - 1;
[56]232
233  TComSlice * pcSlice = pcCU->getPic()->getSlice(pcCU->getPic()->getCurrSliceIdx());
234  Bool bStartInCU = pcCU->getSCUAddr()+uiAbsPartIdx+uiCurNumParts>pcSlice->getEntropySliceCurStartCUAddr()&&pcCU->getSCUAddr()+uiAbsPartIdx<pcSlice->getEntropySliceCurStartCUAddr();
235  if((!bStartInCU) && ( uiRPelX < pcSlice->getSPS()->getPicWidthInLumaSamples() ) && ( uiBPelY < pcSlice->getSPS()->getPicHeightInLumaSamples() ) )
[2]236  {
[56]237#if BURST_IPCM
238    if(pcCU->getNumSucIPCM() == 0)
239    {
[5]240#if HHI_MPI
[56]241      if( pcCU->getTextureModeDepth( uiAbsPartIdx ) == -1 || uiDepth < pcCU->getTextureModeDepth( uiAbsPartIdx ) )
242#endif
243      m_pcEntropyDecoder->decodeSplitFlag( pcCU, uiAbsPartIdx, uiDepth );
244    }
245    else
246    {
247      pcCU->setDepthSubParts( uiDepth, uiAbsPartIdx );
248    }
249#else
250#if HHI_MPI
[2]251    if( pcCU->getTextureModeDepth( uiAbsPartIdx ) == -1 || uiDepth < pcCU->getTextureModeDepth( uiAbsPartIdx ) )
[5]252#endif
[56]253    m_pcEntropyDecoder->decodeSplitFlag( pcCU, uiAbsPartIdx, uiDepth );
254#endif
[2]255  }
256  else
257  {
258    bBoundary = true;
259  }
260 
261  if( ( ( uiDepth < pcCU->getDepth( uiAbsPartIdx ) ) && ( uiDepth < g_uiMaxCUDepth - g_uiAddCUDepth ) ) || bBoundary )
262  {
263    UInt uiIdx = uiAbsPartIdx;
[56]264    if( (g_uiMaxCUWidth>>uiDepth) == pcCU->getSlice()->getPPS()->getMinCuDQPSize() && pcCU->getSlice()->getPPS()->getUseDQP())
265    {
266      setdQPFlag(true);
267      pcCU->setQPSubParts( pcCU->getRefQP(uiAbsPartIdx), uiAbsPartIdx, uiDepth ); // set QP to default QP
268    }
269
[2]270    for ( UInt uiPartUnitIdx = 0; uiPartUnitIdx < 4; uiPartUnitIdx++ )
271    {
272      uiLPelX   = pcCU->getCUPelX() + g_auiRasterToPelX[ g_auiZscanToRaster[uiIdx] ];
273      uiTPelY   = pcCU->getCUPelY() + g_auiRasterToPelY[ g_auiZscanToRaster[uiIdx] ];
274     
[56]275      Bool bSubInSlice = pcCU->getSCUAddr()+uiIdx+uiQNumParts>pcSlice->getEntropySliceCurStartCUAddr();
276      if ( bSubInSlice )
277      {
278        if ( ( uiLPelX < pcCU->getSlice()->getSPS()->getPicWidthInLumaSamples() ) && ( uiTPelY < pcCU->getSlice()->getSPS()->getPicHeightInLumaSamples() ) )
279        {
280          xDecodeCU( pcCU, uiIdx, uiDepth+1, ruiIsLast );
281        }
282        else
283        {
284          pcCU->setOutsideCUPart( uiIdx, uiDepth+1 );
285        }
286      }
287      if(ruiIsLast)
288      {
289        break;
290      }
[2]291     
292      uiIdx += uiQNumParts;
293    }
[56]294    if( (g_uiMaxCUWidth>>uiDepth) == pcCU->getSlice()->getPPS()->getMinCuDQPSize() && pcCU->getSlice()->getPPS()->getUseDQP())
295    {
296      if ( getdQPFlag() )
297      {
298        UInt uiQPSrcPartIdx;
299        if ( pcPic->getCU( pcCU->getAddr() )->getEntropySliceStartCU(uiAbsPartIdx) != pcSlice->getEntropySliceCurStartCUAddr() )
300        {
301          uiQPSrcPartIdx = pcSlice->getEntropySliceCurStartCUAddr() % pcPic->getNumPartInCU();
302        }
303        else
304        {
305          uiQPSrcPartIdx = uiAbsPartIdx;
306        }
307        pcCU->setQPSubParts( pcCU->getRefQP( uiQPSrcPartIdx ), uiAbsPartIdx, uiDepth ); // set QP to default QP
308      }
309    }
[2]310    return;
311  }
312 
[56]313  if( (g_uiMaxCUWidth>>uiDepth) >= pcCU->getSlice()->getPPS()->getMinCuDQPSize() && pcCU->getSlice()->getPPS()->getUseDQP())
314  {
315    setdQPFlag(true);
316    pcCU->setQPSubParts( pcCU->getRefQP(uiAbsPartIdx), uiAbsPartIdx, uiDepth ); // set QP to default QP
317  }
318
[2]319  // decode CU mode and the partition size
[56]320#if BURST_IPCM
321  if( !pcCU->getSlice()->isIntra() && pcCU->getNumSucIPCM() == 0 )
[5]322#else
323  if( !pcCU->getSlice()->isIntra() )
324#endif
[56]325#if HHI_MPI
326  if( pcCU->getTextureModeDepth( uiAbsPartIdx ) == -1 )
327#endif
[2]328  {
329    m_pcEntropyDecoder->decodeSkipFlag( pcCU, uiAbsPartIdx, uiDepth );
330  }
[56]331 
[2]332  if( pcCU->isSkipped(uiAbsPartIdx) )
333  {
334    m_ppcCU[uiDepth]->copyInterPredInfoFrom( pcCU, uiAbsPartIdx, REF_PIC_LIST_0 );
335    m_ppcCU[uiDepth]->copyInterPredInfoFrom( pcCU, uiAbsPartIdx, REF_PIC_LIST_1 );
[56]336#if HHI_INTER_VIEW_MOTION_PRED
337    TComMvField cMvFieldNeighbours[MRG_MAX_NUM_CANDS_MEM << 1]; // double length for mv of both lists
338    UChar uhInterDirNeighbours[MRG_MAX_NUM_CANDS_MEM];
339    Int numValidMergeCand = 0;
340    for( UInt ui = 0; ui < MRG_MAX_NUM_CANDS_MEM; ++ui )
341#else
[2]342    TComMvField cMvFieldNeighbours[MRG_MAX_NUM_CANDS << 1]; // double length for mv of both lists
343    UChar uhInterDirNeighbours[MRG_MAX_NUM_CANDS];
[56]344    Int numValidMergeCand = 0;
[2]345    for( UInt ui = 0; ui < MRG_MAX_NUM_CANDS; ++ui )
[56]346#endif
[2]347    {
348      uhInterDirNeighbours[ui] = 0;
349    }
350    m_pcEntropyDecoder->decodeMergeIndex( pcCU, 0, uiAbsPartIdx, SIZE_2Nx2N, uhInterDirNeighbours, cMvFieldNeighbours, uiDepth );
[5]351#if HHI_MPI
[2]352    if( pcCU->getTextureModeDepth( uiAbsPartIdx ) == uiDepth )
353    {
354      TComDataCU *pcTextureCU = pcCU->getSlice()->getTexturePic()->getCU( pcCU->getAddr() );
355      pcCU->copyTextureMotionDataFrom( pcTextureCU, uiDepth, pcCU->getZorderIdxInCU() + uiAbsPartIdx, uiAbsPartIdx );
356
357      UInt uiCurrPartNumb = pcCU->getPic()->getNumPartInCU() >> (uiDepth << 1);
358      for( UInt ui = 0; ui < uiCurrPartNumb; ui++ )
359      {
[56]360        const UChar uhNewDepth = max<UInt>( uiDepth, pcTextureCU->getDepth( uiAbsPartIdx + ui ) );
[2]361        pcCU->setPredictionMode( uiAbsPartIdx + ui, MODE_SKIP );
362        pcCU->setPartitionSize( uiAbsPartIdx + ui, SIZE_2Nx2N );
363        pcCU->setDepth( uiAbsPartIdx + ui, uhNewDepth );
364        pcCU->setWidth( uiAbsPartIdx + ui, g_uiMaxCUWidth>>uhNewDepth );
365        pcCU->setHeight( uiAbsPartIdx + ui, g_uiMaxCUHeight>>uhNewDepth );
366      }
367    }
[56]368    else
369    {
[2]370#endif
[56]371#if SIMP_MRG_PRUN     
372    UInt uiMergeIndex = pcCU->getMergeIndex(uiAbsPartIdx);
373    m_ppcCU[uiDepth]->getInterMergeCandidates( 0, 0, uiDepth, cMvFieldNeighbours, uhInterDirNeighbours, numValidMergeCand, uiMergeIndex );
374#else
375    m_ppcCU[uiDepth]->getInterMergeCandidates( 0, 0, uiDepth, cMvFieldNeighbours, uhInterDirNeighbours, numValidMergeCand );
376    UInt uiMergeIndex = pcCU->getMergeIndex(uiAbsPartIdx);
377#endif
378    pcCU->setInterDirSubParts( uhInterDirNeighbours[uiMergeIndex], uiAbsPartIdx, 0, uiDepth );
379
380    TComMv cTmpMv( 0, 0 );
381    for ( UInt uiRefListIdx = 0; uiRefListIdx < 2; uiRefListIdx++ )
382    {       
383      if ( pcCU->getSlice()->getNumRefIdx( RefPicList( uiRefListIdx ) ) > 0 )
384      {
385        pcCU->setMVPIdxSubParts( 0, RefPicList( uiRefListIdx ), uiAbsPartIdx, 0, uiDepth);
386        pcCU->setMVPNumSubParts( 0, RefPicList( uiRefListIdx ), uiAbsPartIdx, 0, uiDepth);
387        pcCU->getCUMvField( RefPicList( uiRefListIdx ) )->setAllMvd( cTmpMv, SIZE_2Nx2N, uiAbsPartIdx, uiDepth );
388        pcCU->getCUMvField( RefPicList( uiRefListIdx ) )->setAllMvField( cMvFieldNeighbours[ 2*uiMergeIndex + uiRefListIdx ], SIZE_2Nx2N, uiAbsPartIdx, uiDepth );
389      }
390    }
391#if HHI_MPI
392    }
393#endif
[5]394#if HHI_INTER_VIEW_RESIDUAL_PRED
[2]395    m_pcEntropyDecoder->decodeResPredFlag( pcCU, uiAbsPartIdx, uiDepth, m_ppcCU[uiDepth], 0 );
[5]396#endif
[56]397    xFinishDecodeCU( pcCU, uiAbsPartIdx, uiDepth, ruiIsLast );
[2]398    return;
399  }
400
[5]401#if HHI_MPI
[2]402  if( pcCU->getTextureModeDepth( uiAbsPartIdx ) == -1 )
403  {
[5]404#endif
[56]405#if BURST_IPCM
406  if( pcCU->getNumSucIPCM() == 0 ) 
407  {
[2]408    m_pcEntropyDecoder->decodePredMode( pcCU, uiAbsPartIdx, uiDepth );
409    m_pcEntropyDecoder->decodePartSize( pcCU, uiAbsPartIdx, uiDepth );
[56]410  }
411  else
412  {
413    pcCU->setPredModeSubParts( MODE_INTRA, uiAbsPartIdx, uiDepth );
414    pcCU->setPartSizeSubParts( SIZE_2Nx2N, uiAbsPartIdx, uiDepth );
415    pcCU->setSizeSubParts( g_uiMaxCUWidth>>uiDepth, g_uiMaxCUHeight>>uiDepth, uiAbsPartIdx, uiDepth ); 
416    pcCU->setTrIdxSubParts( 0, uiAbsPartIdx, uiDepth );
417  }
418#else
419  m_pcEntropyDecoder->decodePredMode( pcCU, uiAbsPartIdx, uiDepth );
420  m_pcEntropyDecoder->decodePartSize( pcCU, uiAbsPartIdx, uiDepth );
421#endif
[2]422
[56]423  if (pcCU->isIntra( uiAbsPartIdx ) && pcCU->getPartitionSize( uiAbsPartIdx ) == SIZE_2Nx2N )
424  {
425    m_pcEntropyDecoder->decodeIPCMInfo( pcCU, uiAbsPartIdx, uiDepth );
[2]426
[56]427    if(pcCU->getIPCMFlag(uiAbsPartIdx))
[2]428    {
[56]429      xFinishDecodeCU( pcCU, uiAbsPartIdx, uiDepth, ruiIsLast );
430      return;
431    }
432  }
433
434#if ! HHI_MPI
435  UInt uiCurrWidth      = pcCU->getWidth ( uiAbsPartIdx );
436  UInt uiCurrHeight     = pcCU->getHeight( uiAbsPartIdx );
437#endif
438 
439  // prediction mode ( Intra : direction mode, Inter : Mv, reference idx )
440  m_pcEntropyDecoder->decodePredInfo( pcCU, uiAbsPartIdx, uiDepth, m_ppcCU[uiDepth]);
441 
[5]442#if HHI_INTER_VIEW_RESIDUAL_PRED
[56]443  if( !pcCU->isIntra( uiAbsPartIdx ) )
444  {
445    m_pcEntropyDecoder->decodeResPredFlag    ( pcCU, uiAbsPartIdx, uiDepth, m_ppcCU[uiDepth], 0 );
446  }
[5]447#endif
[2]448
[56]449#if HHI_MPI
[2]450    if( pcCU->getTextureModeDepth( uiAbsPartIdx ) == uiDepth )
451    {
452      assert( pcCU->getZorderIdxInCU() == 0 );
453      TComDataCU *pcTextureCU = pcCU->getSlice()->getTexturePic()->getCU( pcCU->getAddr() );
454      pcCU->copyTextureMotionDataFrom( pcTextureCU, uiDepth, pcCU->getZorderIdxInCU() + uiAbsPartIdx, uiAbsPartIdx );
455
456      UInt uiCurrPartNumb = pcCU->getPic()->getNumPartInCU() >> (uiDepth << 1);
457      for( UInt ui = 0; ui < uiCurrPartNumb; ui++ )
458      {
[56]459        const UChar uhNewDepth = max<UInt>( uiDepth, pcTextureCU->getDepth( uiAbsPartIdx + ui ) );
[2]460        pcCU->setPredictionMode( uiAbsPartIdx + ui, MODE_INTER );
461        pcCU->setPartitionSize( uiAbsPartIdx + ui, SIZE_2Nx2N );
462        pcCU->setDepth( uiAbsPartIdx + ui, uhNewDepth );
463        pcCU->setWidth( uiAbsPartIdx + ui, g_uiMaxCUWidth>>uhNewDepth );
464        pcCU->setHeight( uiAbsPartIdx + ui, g_uiMaxCUHeight>>uhNewDepth );
465      }
466
467      if( ( ( uiDepth < pcCU->getDepth( uiAbsPartIdx ) ) && ( uiDepth < g_uiMaxCUDepth - g_uiAddCUDepth ) ) || bBoundary )
468      {
469        UInt uiIdx = uiAbsPartIdx;
[56]470        if( (g_uiMaxCUWidth>>uiDepth) == pcCU->getSlice()->getPPS()->getMinCuDQPSize() && pcCU->getSlice()->getPPS()->getUseDQP())
471        {
472          setdQPFlag(true);
473          pcCU->setQPSubParts( pcCU->getRefQP(uiAbsPartIdx), uiAbsPartIdx, uiDepth ); // set QP to default QP
474        }
475
[2]476        for ( UInt uiPartUnitIdx = 0; uiPartUnitIdx < 4; uiPartUnitIdx++ )
477        {
478          uiLPelX   = pcCU->getCUPelX() + g_auiRasterToPelX[ g_auiZscanToRaster[uiIdx] ];
479          uiTPelY   = pcCU->getCUPelY() + g_auiRasterToPelY[ g_auiZscanToRaster[uiIdx] ];
480
[56]481          Bool bSubInSlice = pcCU->getSCUAddr()+uiIdx+uiQNumParts>pcSlice->getEntropySliceCurStartCUAddr();
482          if ( bSubInSlice )
483          {
484            if ( ( uiLPelX < pcCU->getSlice()->getSPS()->getPicWidthInLumaSamples() ) && ( uiTPelY < pcCU->getSlice()->getSPS()->getPicHeightInLumaSamples() ) )
485            {
486              xDecodeCU( pcCU, uiIdx, uiDepth+1, ruiIsLast );
487            }
488            else
489            {
490              pcCU->setOutsideCUPart( uiIdx, uiDepth+1 );
491            }
492          }
493          if(ruiIsLast)
494          {
495            break;
496          }
[2]497          uiIdx += uiQNumParts;
498        }
[56]499        if( (g_uiMaxCUWidth>>uiDepth) == pcCU->getSlice()->getPPS()->getMinCuDQPSize() && pcCU->getSlice()->getPPS()->getUseDQP())
500        {
501          if ( getdQPFlag() )
502          {
503            UInt uiQPSrcPartIdx;
504            if ( pcPic->getCU( pcCU->getAddr() )->getEntropySliceStartCU(uiAbsPartIdx) != pcSlice->getEntropySliceCurStartCUAddr() )
505            {
506              uiQPSrcPartIdx = pcSlice->getEntropySliceCurStartCUAddr() % pcPic->getNumPartInCU();
507            }
508            else
509            {
510              uiQPSrcPartIdx = uiAbsPartIdx;
511            }
512            pcCU->setQPSubParts( pcCU->getRefQP( uiQPSrcPartIdx ), uiAbsPartIdx, uiDepth ); // set QP to default QP
513          }
514        }
[2]515        return;
516      }
517    }
[5]518  }
519
[2]520  UInt uiCurrWidth      = pcCU->getWidth ( uiAbsPartIdx );
521  UInt uiCurrHeight     = pcCU->getHeight( uiAbsPartIdx );
[56]522#endif
523
[2]524  // Coefficient decoding
[56]525  Bool bCodeDQP = getdQPFlag();
526  m_pcEntropyDecoder->decodeCoeff( pcCU, uiAbsPartIdx, uiDepth, uiCurrWidth, uiCurrHeight, bCodeDQP );
527  setdQPFlag( bCodeDQP );
528  xFinishDecodeCU( pcCU, uiAbsPartIdx, uiDepth, ruiIsLast );
[2]529}
530
[56]531Void TDecCu::xFinishDecodeCU( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt& ruiIsLast)
532{
533  if( (g_uiMaxCUWidth>>uiDepth) >= pcCU->getSlice()->getPPS()->getMinCuDQPSize() && pcCU->getSlice()->getPPS()->getUseDQP())
534  {
535    if( getdQPFlag() )
536    {
537      pcCU->setQPSubParts( pcCU->getRefQP(uiAbsPartIdx), uiAbsPartIdx, uiDepth ); // set QP to default QP
538    }
539  }
540
541#if BURST_IPCM
542  if( pcCU->getNumSucIPCM() > 0 )
543  {
544    ruiIsLast = 0;
545    return;
546  }
547#endif
548
549  ruiIsLast = xDecodeSliceEnd( pcCU, uiAbsPartIdx, uiDepth);
550}
551
[2]552Void TDecCu::xDecompressCU( TComDataCU* pcCU, TComDataCU* pcCUCur, UInt uiAbsPartIdx,  UInt uiDepth )
553{
554  TComPic* pcPic = pcCU->getPic();
555 
556  Bool bBoundary = false;
557  UInt uiLPelX   = pcCU->getCUPelX() + g_auiRasterToPelX[ g_auiZscanToRaster[uiAbsPartIdx] ];
558  UInt uiRPelX   = uiLPelX + (g_uiMaxCUWidth>>uiDepth)  - 1;
559  UInt uiTPelY   = pcCU->getCUPelY() + g_auiRasterToPelY[ g_auiZscanToRaster[uiAbsPartIdx] ];
560  UInt uiBPelY   = uiTPelY + (g_uiMaxCUHeight>>uiDepth) - 1;
561 
[56]562  UInt uiCurNumParts    = pcPic->getNumPartInCU() >> (uiDepth<<1);
563  TComSlice * pcSlice = pcCU->getPic()->getSlice(pcCU->getPic()->getCurrSliceIdx());
564  Bool bStartInCU = pcCU->getSCUAddr()+uiAbsPartIdx+uiCurNumParts>pcSlice->getEntropySliceCurStartCUAddr()&&pcCU->getSCUAddr()+uiAbsPartIdx<pcSlice->getEntropySliceCurStartCUAddr();
565  if(bStartInCU||( uiRPelX >= pcSlice->getSPS()->getPicWidthInLumaSamples() ) || ( uiBPelY >= pcSlice->getSPS()->getPicHeightInLumaSamples() ) )
[2]566  {
567    bBoundary = true;
568  }
569 
570  if( ( ( uiDepth < pcCU->getDepth( uiAbsPartIdx ) ) && ( uiDepth < g_uiMaxCUDepth - g_uiAddCUDepth ) ) || bBoundary )
571  {
572    UInt uiNextDepth = uiDepth + 1;
573    UInt uiQNumParts = pcCU->getTotalNumPart() >> (uiNextDepth<<1);
574    UInt uiIdx = uiAbsPartIdx;
575    for ( UInt uiPartIdx = 0; uiPartIdx < 4; uiPartIdx++ )
576    {
577      uiLPelX = pcCU->getCUPelX() + g_auiRasterToPelX[ g_auiZscanToRaster[uiIdx] ];
578      uiTPelY = pcCU->getCUPelY() + g_auiRasterToPelY[ g_auiZscanToRaster[uiIdx] ];
579     
[56]580      Bool binSlice = (pcCU->getSCUAddr()+uiIdx+uiQNumParts>pcSlice->getEntropySliceCurStartCUAddr())&&(pcCU->getSCUAddr()+uiIdx<pcSlice->getEntropySliceCurEndCUAddr());
581      if(binSlice&&( uiLPelX < pcSlice->getSPS()->getPicWidthInLumaSamples() ) && ( uiTPelY < pcSlice->getSPS()->getPicHeightInLumaSamples() ) )
582      {
[2]583        xDecompressCU(pcCU, m_ppcCU[uiNextDepth], uiIdx, uiNextDepth );
[56]584      }
[2]585     
586      uiIdx += uiQNumParts;
587    }
588    return;
589  }
590 
591  // Residual reconstruction
592  m_ppcYuvResi[uiDepth]->clear();
593 
594  m_ppcCU[uiDepth]->copySubCU( pcCU, uiAbsPartIdx, uiDepth );
595 
596  switch( m_ppcCU[uiDepth]->getPredictionMode(0) )
597  {
598    case MODE_SKIP:
599    case MODE_INTER:
600      xReconInter( m_ppcCU[uiDepth], uiAbsPartIdx, uiDepth );
601      break;
602    case MODE_INTRA:
603      xReconIntraQT( m_ppcCU[uiDepth], uiAbsPartIdx, uiDepth );
604      break;
605    default:
606      assert(0);
607      break;
608  }
[56]609#if LOSSLESS_CODING
610  if ( m_ppcCU[uiDepth]->isLosslessCoded(0) && (m_ppcCU[uiDepth]->getIPCMFlag(0) == false))
611  {
612    xFillPCMBuffer(m_ppcCU[uiDepth], uiAbsPartIdx, uiDepth);   
613  }
614#endif
[2]615 
616  xCopyToPic( m_ppcCU[uiDepth], pcPic, uiAbsPartIdx, uiDepth );
617}
618
619Void TDecCu::xReconInter( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
620{
[5]621#if HHI_MPI
[2]622  if( pcCU->getTextureModeDepth( 0 ) != -1 )
623    pcCU->setPartSizeSubParts( SIZE_NxN, 0, uiDepth );
624#endif
625 
626  // inter prediction
627  m_pcPrediction->motionCompensation( pcCU, m_ppcYuvReco[uiDepth] );
628 
[5]629#if HHI_MPI
[2]630  if( pcCU->getTextureModeDepth( 0 ) != -1 )
631    pcCU->setPartSizeSubParts( SIZE_2Nx2N, 0, uiDepth );
632#endif
[56]633
[5]634#if HHI_INTER_VIEW_RESIDUAL_PRED
[2]635  if( pcCU->getResPredFlag( 0 ) )
636  {
637    AOF( pcCU->getResPredAvail( 0 ) );
638    Bool bOK = pcCU->getResidualSamples( 0, m_ppcYuvResPred[uiDepth] );
639    AOF( bOK );
[62]640#if LG_RESTRICTEDRESPRED_M24766
641        Int iPUResiPredShift[4];
642        pcCU->getPUResiPredShift(iPUResiPredShift, 0);
643        m_ppcYuvReco[uiDepth]->add(iPUResiPredShift, pcCU->getPartitionSize(0), m_ppcYuvResPred[uiDepth], pcCU->getWidth( 0 ), pcCU->getHeight( 0 ) );
644#else
[2]645    m_ppcYuvReco[uiDepth]->add( m_ppcYuvResPred[uiDepth], pcCU->getWidth( 0 ), pcCU->getHeight( 0 ) );
[62]646#endif
[2]647  }
[5]648#endif
649
[2]650  // inter recon
651  xDecodeInterTexture( pcCU, 0, uiDepth );
652 
653  // clip for only non-zero cbp case
654  if  ( ( pcCU->getCbf( 0, TEXT_LUMA ) ) || ( pcCU->getCbf( 0, TEXT_CHROMA_U ) ) || ( pcCU->getCbf(0, TEXT_CHROMA_V ) ) )
655  {
656    m_ppcYuvReco[uiDepth]->addClip( m_ppcYuvReco[uiDepth], m_ppcYuvResi[uiDepth], 0, pcCU->getWidth( 0 ) );
657  }
658  else
659  {
[5]660#if HHI_INTER_VIEW_RESIDUAL_PRED
[2]661    if( pcCU->getResPredFlag( 0 ) )
662    {
663      m_ppcYuvReco[uiDepth]->clip( pcCU->getWidth( 0 ), pcCU->getHeight( 0 ) );
664    }
[5]665#endif
[2]666    m_ppcYuvReco[uiDepth]->copyPartToPartYuv( m_ppcYuvReco[uiDepth],0, pcCU->getWidth( 0 ),pcCU->getHeight( 0 ));
667  }
668}
669
670Void
671TDecCu::xIntraRecLumaBlk( TComDataCU* pcCU,
672                         UInt        uiTrDepth,
673                         UInt        uiAbsPartIdx,
674                         TComYuv*    pcRecoYuv,
675                         TComYuv*    pcPredYuv, 
676                         TComYuv*    pcResiYuv )
677{
678  UInt    uiWidth           = pcCU     ->getWidth   ( 0 ) >> uiTrDepth;
679  UInt    uiHeight          = pcCU     ->getHeight  ( 0 ) >> uiTrDepth;
680  UInt    uiStride          = pcRecoYuv->getStride  ();
681  Pel*    piReco            = pcRecoYuv->getLumaAddr( uiAbsPartIdx );
682  Pel*    piPred            = pcPredYuv->getLumaAddr( uiAbsPartIdx );
683  Pel*    piResi            = pcResiYuv->getLumaAddr( uiAbsPartIdx );
684 
685  UInt    uiNumCoeffInc     = ( pcCU->getSlice()->getSPS()->getMaxCUWidth() * pcCU->getSlice()->getSPS()->getMaxCUHeight() ) >> ( pcCU->getSlice()->getSPS()->getMaxCUDepth() << 1 );
686  TCoeff* pcCoeff           = pcCU->getCoeffY() + ( uiNumCoeffInc * uiAbsPartIdx );
687 
688  UInt    uiLumaPredMode    = pcCU->getLumaIntraDir     ( uiAbsPartIdx );
689 
690  UInt    uiZOrder          = pcCU->getZorderIdxInCU() + uiAbsPartIdx;
691  Pel*    piRecIPred        = pcCU->getPic()->getPicYuvRec()->getLumaAddr( pcCU->getAddr(), uiZOrder );
692  UInt    uiRecIPredStride  = pcCU->getPic()->getPicYuvRec()->getStride  ();
693 
694  //===== init availability pattern =====
695  Bool  bAboveAvail = false;
696  Bool  bLeftAvail  = false;
697  pcCU->getPattern()->initPattern   ( pcCU, uiTrDepth, uiAbsPartIdx );
698  pcCU->getPattern()->initAdiPattern( pcCU, uiAbsPartIdx, uiTrDepth, 
699                                     m_pcPrediction->getPredicBuf       (),
700                                     m_pcPrediction->getPredicBufWidth  (),
701                                     m_pcPrediction->getPredicBufHeight (),
702                                     bAboveAvail, bLeftAvail );
703 
[56]704  //===== get prediction signal =====
[5]705#if HHI_DMM_WEDGE_INTRA || HHI_DMM_PRED_TEX
[56]706  if( uiLumaPredMode >= NUM_INTRA_MODE )
[2]707  {
708    m_pcPrediction->predIntraLumaDMM( pcCU, uiAbsPartIdx, uiLumaPredMode, piPred, uiStride, uiWidth, uiHeight, bAboveAvail, bLeftAvail, false );
709  } 
710  else
[56]711  {
[2]712#endif
713  m_pcPrediction->predIntraLumaAng( pcCU->getPattern(), uiLumaPredMode, piPred, uiStride, uiWidth, uiHeight, pcCU, bAboveAvail, bLeftAvail );
[56]714#if HHI_DMM_WEDGE_INTRA || HHI_DMM_PRED_TEX
[2]715  }
[56]716#endif
717 
[2]718  //===== inverse transform =====
[56]719#if H0736_AVC_STYLE_QP_RANGE
720  m_pcTrQuant->setQPforQuant  ( pcCU->getQP(0), !pcCU->getSlice()->getDepth(), pcCU->getSlice()->getSliceType(), TEXT_LUMA, pcCU->getSlice()->getSPS()->getQpBDOffsetY(), 0 );
[2]721#else
[56]722  m_pcTrQuant->setQPforQuant  ( pcCU->getQP(0), !pcCU->getSlice()->getDepth(), pcCU->getSlice()->getSliceType(), TEXT_LUMA, 0 );
723#endif
[2]724
[56]725  Int scalingListType = (pcCU->isIntra(uiAbsPartIdx) ? 0 : 3) + g_eTTable[(Int)TEXT_LUMA];
726  assert(scalingListType < 6);
727#if LOSSLESS_CODING
728  m_pcTrQuant->invtransformNxN( pcCU, TEXT_LUMA, pcCU->getLumaIntraDir( uiAbsPartIdx ), piResi, uiStride, pcCoeff, uiWidth, uiHeight, scalingListType );
729#else 
730  m_pcTrQuant->invtransformNxN(       TEXT_LUMA, pcCU->getLumaIntraDir( uiAbsPartIdx ), piResi, uiStride, pcCoeff, uiWidth, uiHeight, scalingListType );
731#endif
732
[2]733 
734  //===== reconstruction =====
[56]735  Pel* pPred      = piPred;
736  Pel* pResi      = piResi;
737  Pel* pReco      = piReco;
738  Pel* pRecIPred  = piRecIPred;
739  for( UInt uiY = 0; uiY < uiHeight; uiY++ )
[2]740  {
[56]741    for( UInt uiX = 0; uiX < uiWidth; uiX++ )
[2]742    {
[56]743      pReco    [ uiX ] = Clip( pPred[ uiX ] + pResi[ uiX ] );
744      pRecIPred[ uiX ] = pReco[ uiX ];
[2]745    }
[56]746    pPred     += uiStride;
747    pResi     += uiStride;
748    pReco     += uiStride;
749    pRecIPred += uiRecIPredStride;
[2]750  }
751}
752
753
754Void
755TDecCu::xIntraRecChromaBlk( TComDataCU* pcCU,
756                           UInt        uiTrDepth,
757                           UInt        uiAbsPartIdx,
758                           TComYuv*    pcRecoYuv,
759                           TComYuv*    pcPredYuv, 
760                           TComYuv*    pcResiYuv,
761                           UInt        uiChromaId )
762{
763  UInt uiFullDepth  = pcCU->getDepth( 0 ) + uiTrDepth;
764  UInt uiLog2TrSize = g_aucConvertToBit[ pcCU->getSlice()->getSPS()->getMaxCUWidth() >> uiFullDepth ] + 2;
[56]765
766  if( uiLog2TrSize == 2 )
[2]767  {
768    assert( uiTrDepth > 0 );
769    uiTrDepth--;
770    UInt uiQPDiv = pcCU->getPic()->getNumPartInCU() >> ( ( pcCU->getDepth( 0 ) + uiTrDepth ) << 1 );
771    Bool bFirstQ = ( ( uiAbsPartIdx % uiQPDiv ) == 0 );
772    if( !bFirstQ )
773    {
774      return;
775    }
776  }
777 
778  TextType  eText             = ( uiChromaId > 0 ? TEXT_CHROMA_V : TEXT_CHROMA_U );
779  UInt      uiWidth           = pcCU     ->getWidth   ( 0 ) >> ( uiTrDepth + 1 );
780  UInt      uiHeight          = pcCU     ->getHeight  ( 0 ) >> ( uiTrDepth + 1 );
781  UInt      uiStride          = pcRecoYuv->getCStride ();
782  Pel*      piReco            = ( uiChromaId > 0 ? pcRecoYuv->getCrAddr( uiAbsPartIdx ) : pcRecoYuv->getCbAddr( uiAbsPartIdx ) );
783  Pel*      piPred            = ( uiChromaId > 0 ? pcPredYuv->getCrAddr( uiAbsPartIdx ) : pcPredYuv->getCbAddr( uiAbsPartIdx ) );
784  Pel*      piResi            = ( uiChromaId > 0 ? pcResiYuv->getCrAddr( uiAbsPartIdx ) : pcResiYuv->getCbAddr( uiAbsPartIdx ) );
785 
786  UInt      uiNumCoeffInc     = ( ( pcCU->getSlice()->getSPS()->getMaxCUWidth() * pcCU->getSlice()->getSPS()->getMaxCUHeight() ) >> ( pcCU->getSlice()->getSPS()->getMaxCUDepth() << 1 ) ) >> 2;
787  TCoeff*   pcCoeff           = ( uiChromaId > 0 ? pcCU->getCoeffCr() : pcCU->getCoeffCb() ) + ( uiNumCoeffInc * uiAbsPartIdx );
788 
789  UInt      uiChromaPredMode  = pcCU->getChromaIntraDir( 0 );
790 
791  UInt      uiZOrder          = pcCU->getZorderIdxInCU() + uiAbsPartIdx;
792  Pel*      piRecIPred        = ( uiChromaId > 0 ? pcCU->getPic()->getPicYuvRec()->getCrAddr( pcCU->getAddr(), uiZOrder ) : pcCU->getPic()->getPicYuvRec()->getCbAddr( pcCU->getAddr(), uiZOrder ) );
793  UInt      uiRecIPredStride  = pcCU->getPic()->getPicYuvRec()->getCStride();
794 
795  //===== init availability pattern =====
796  Bool  bAboveAvail = false;
797  Bool  bLeftAvail  = false;
798  pcCU->getPattern()->initPattern         ( pcCU, uiTrDepth, uiAbsPartIdx );
[56]799
800  if( uiChromaPredMode == LM_CHROMA_IDX && uiChromaId == 0 )
801  {
802    pcCU->getPattern()->initAdiPattern( pcCU, uiAbsPartIdx, uiTrDepth, 
803                                     m_pcPrediction->getPredicBuf       (),
804                                     m_pcPrediction->getPredicBufWidth  (),
805                                     m_pcPrediction->getPredicBufHeight (),
806                                     bAboveAvail, bLeftAvail, 
807                                     true );
808
809    m_pcPrediction->getLumaRecPixels( pcCU->getPattern(), uiWidth, uiHeight );
810  }
811 
[2]812  pcCU->getPattern()->initAdiPatternChroma( pcCU, uiAbsPartIdx, uiTrDepth, 
813                                           m_pcPrediction->getPredicBuf       (),
814                                           m_pcPrediction->getPredicBufWidth  (),
815                                           m_pcPrediction->getPredicBufHeight (),
816                                           bAboveAvail, bLeftAvail );
817  Int* pPatChroma   = ( uiChromaId > 0 ? pcCU->getPattern()->getAdiCrBuf( uiWidth, uiHeight, m_pcPrediction->getPredicBuf() ) : pcCU->getPattern()->getAdiCbBuf( uiWidth, uiHeight, m_pcPrediction->getPredicBuf() ) );
818 
819  //===== get prediction signal =====
[56]820  if( uiChromaPredMode == LM_CHROMA_IDX )
[2]821  {
[56]822    m_pcPrediction->predLMIntraChroma( pcCU->getPattern(), pPatChroma, piPred, uiStride, uiWidth, uiHeight, uiChromaId );
[2]823  }
824  else
825  {
[56]826    if( uiChromaPredMode == DM_CHROMA_IDX )
[2]827    {
[56]828      uiChromaPredMode = pcCU->getLumaIntraDir( 0 );
829#if HHI_DMM_WEDGE_INTRA || HHI_DMM_PRED_TEX
830      mapDMMtoIntraMode( uiChromaPredMode );
831#endif
[2]832    }
[56]833    m_pcPrediction->predIntraChromaAng( pcCU->getPattern(), pPatChroma, uiChromaPredMode, piPred, uiStride, uiWidth, uiHeight, pcCU, bAboveAvail, bLeftAvail ); 
[2]834  }
835
836  //===== inverse transform =====
[56]837  if(eText == TEXT_CHROMA_U)
838  {
839#if H0736_AVC_STYLE_QP_RANGE
840    m_pcTrQuant->setQPforQuant  ( pcCU->getQP(0), !pcCU->getSlice()->getDepth(), pcCU->getSlice()->getSliceType(), eText, pcCU->getSlice()->getSPS()->getQpBDOffsetC(), pcCU->getSlice()->getPPS()->getChromaQpOffset() );
[2]841#else
[56]842    m_pcTrQuant->setQPforQuant  ( pcCU->getQP(0), !pcCU->getSlice()->getDepth(), pcCU->getSlice()->getSliceType(), eText, pcCU->getSlice()->getPPS()->getChromaQpOffset() );
[2]843#endif
[56]844  }
845  else
846  {
847#if H0736_AVC_STYLE_QP_RANGE
848    m_pcTrQuant->setQPforQuant  ( pcCU->getQP(0), !pcCU->getSlice()->getDepth(), pcCU->getSlice()->getSliceType(), eText, pcCU->getSlice()->getSPS()->getQpBDOffsetC(), pcCU->getSlice()->getPPS()->getChromaQpOffset2nd() );
849#else
850    m_pcTrQuant->setQPforQuant  ( pcCU->getQP(0), !pcCU->getSlice()->getDepth(), pcCU->getSlice()->getSliceType(), eText, pcCU->getSlice()->getPPS()->getChromaQpOffset2nd() );
851#endif
852  }
[2]853
[56]854  Int scalingListType = (pcCU->isIntra(uiAbsPartIdx) ? 0 : 3) + g_eTTable[(Int)eText];
855  assert(scalingListType < 6);
856#if LOSSLESS_CODING
857  m_pcTrQuant->invtransformNxN( pcCU, eText, REG_DCT, piResi, uiStride, pcCoeff, uiWidth, uiHeight, scalingListType );
858#else 
859  m_pcTrQuant->invtransformNxN(       eText, REG_DCT, piResi, uiStride, pcCoeff, uiWidth, uiHeight, scalingListType );
860#endif
861
[2]862  //===== reconstruction =====
[56]863  Pel* pPred      = piPred;
864  Pel* pResi      = piResi;
865  Pel* pReco      = piReco;
866  Pel* pRecIPred  = piRecIPred;
867  for( UInt uiY = 0; uiY < uiHeight; uiY++ )
[2]868  {
[56]869    for( UInt uiX = 0; uiX < uiWidth; uiX++ )
[2]870    {
[56]871      pReco    [ uiX ] = Clip( pPred[ uiX ] + pResi[ uiX ] );
872      pRecIPred[ uiX ] = pReco[ uiX ];
[2]873    }
[56]874    pPred     += uiStride;
875    pResi     += uiStride;
876    pReco     += uiStride;
877    pRecIPred += uiRecIPredStride;
[2]878  }
879}
880
881Void
882TDecCu::xIntraRecQT( TComDataCU* pcCU,
883                    UInt        uiTrDepth,
884                    UInt        uiAbsPartIdx,
885                    TComYuv*    pcRecoYuv,
886                    TComYuv*    pcPredYuv, 
887                    TComYuv*    pcResiYuv )
888{
889  UInt uiFullDepth  = pcCU->getDepth(0) + uiTrDepth;
890  UInt uiTrMode     = pcCU->getTransformIdx( uiAbsPartIdx );
891  if( uiTrMode == uiTrDepth )
892  {
893    xIntraRecLumaBlk  ( pcCU, uiTrDepth, uiAbsPartIdx, pcRecoYuv, pcPredYuv, pcResiYuv );
894    xIntraRecChromaBlk( pcCU, uiTrDepth, uiAbsPartIdx, pcRecoYuv, pcPredYuv, pcResiYuv, 0 );
895    xIntraRecChromaBlk( pcCU, uiTrDepth, uiAbsPartIdx, pcRecoYuv, pcPredYuv, pcResiYuv, 1 );
896  }
897  else
898  {
899    UInt uiNumQPart  = pcCU->getPic()->getNumPartInCU() >> ( ( uiFullDepth + 1 ) << 1 );
900    for( UInt uiPart = 0; uiPart < 4; uiPart++ )
901    {
902      xIntraRecQT( pcCU, uiTrDepth + 1, uiAbsPartIdx + uiPart * uiNumQPart, pcRecoYuv, pcPredYuv, pcResiYuv );
903    }
904  }
905}
906
907Void
908TDecCu::xReconIntraQT( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
909{
910  UInt  uiInitTrDepth = ( pcCU->getPartitionSize(0) == SIZE_2Nx2N ? 0 : 1 );
911  UInt  uiNumPart     = pcCU->getNumPartInter();
912  UInt  uiNumQParts   = pcCU->getTotalNumPart() >> 2;
913 
[56]914  if (pcCU->getIPCMFlag(0))
915  {
916    xReconPCM( pcCU, uiAbsPartIdx, uiDepth );
917    return;
918  }
919
[2]920  for( UInt uiPU = 0; uiPU < uiNumPart; uiPU++ )
921  {
922    xIntraLumaRecQT( pcCU, uiInitTrDepth, uiPU * uiNumQParts, m_ppcYuvReco[uiDepth], m_ppcYuvReco[uiDepth], m_ppcYuvResi[uiDepth] );
923  } 
924
925  for( UInt uiPU = 0; uiPU < uiNumPart; uiPU++ )
926  {
927    xIntraChromaRecQT( pcCU, uiInitTrDepth, uiPU * uiNumQParts, m_ppcYuvReco[uiDepth], m_ppcYuvReco[uiDepth], m_ppcYuvResi[uiDepth] );
928  }
929
930}
931
[56]932/** Function for deriving recontructed PU/CU Luma sample with QTree structure
[2]933 * \param pcCU pointer of current CU
934 * \param uiTrDepth current tranform split depth
935 * \param uiAbsPartIdx  part index
936 * \param pcRecoYuv pointer to reconstructed sample arrays
937 * \param pcPredYuv pointer to prediction sample arrays
938 * \param pcResiYuv pointer to residue sample arrays
939 *
940 \ This function dervies recontructed PU/CU Luma sample with recursive QTree structure
941 */
942Void
943TDecCu::xIntraLumaRecQT( TComDataCU* pcCU,
944                     UInt        uiTrDepth,
945                     UInt        uiAbsPartIdx,
946                     TComYuv*    pcRecoYuv,
947                     TComYuv*    pcPredYuv, 
948                     TComYuv*    pcResiYuv )
949{
950  UInt uiFullDepth  = pcCU->getDepth(0) + uiTrDepth;
951  UInt uiTrMode     = pcCU->getTransformIdx( uiAbsPartIdx );
952  if( uiTrMode == uiTrDepth )
953  {
954    xIntraRecLumaBlk  ( pcCU, uiTrDepth, uiAbsPartIdx, pcRecoYuv, pcPredYuv, pcResiYuv );
955  }
956  else
957  {
958    UInt uiNumQPart  = pcCU->getPic()->getNumPartInCU() >> ( ( uiFullDepth + 1 ) << 1 );
959    for( UInt uiPart = 0; uiPart < 4; uiPart++ )
960    {
961      xIntraLumaRecQT( pcCU, uiTrDepth + 1, uiAbsPartIdx + uiPart * uiNumQPart, pcRecoYuv, pcPredYuv, pcResiYuv );
962    }
963  }
964}
965
[56]966/** Function for deriving recontructed PU/CU chroma samples with QTree structure
[2]967 * \param pcCU pointer of current CU
968 * \param uiTrDepth current tranform split depth
969 * \param uiAbsPartIdx  part index
970 * \param pcRecoYuv pointer to reconstructed sample arrays
971 * \param pcPredYuv pointer to prediction sample arrays
972 * \param pcResiYuv pointer to residue sample arrays
973 *
974 \ This function dervies recontructed PU/CU chroma samples with QTree recursive structure
975 */
976Void
977TDecCu::xIntraChromaRecQT( TComDataCU* pcCU,
978                     UInt        uiTrDepth,
979                     UInt        uiAbsPartIdx,
980                     TComYuv*    pcRecoYuv,
981                     TComYuv*    pcPredYuv, 
982                     TComYuv*    pcResiYuv )
983{
984  UInt uiFullDepth  = pcCU->getDepth(0) + uiTrDepth;
985  UInt uiTrMode     = pcCU->getTransformIdx( uiAbsPartIdx );
986  if( uiTrMode == uiTrDepth )
987  {
988    xIntraRecChromaBlk( pcCU, uiTrDepth, uiAbsPartIdx, pcRecoYuv, pcPredYuv, pcResiYuv, 0 );
989    xIntraRecChromaBlk( pcCU, uiTrDepth, uiAbsPartIdx, pcRecoYuv, pcPredYuv, pcResiYuv, 1 );
990  }
991  else
992  {
993    UInt uiNumQPart  = pcCU->getPic()->getNumPartInCU() >> ( ( uiFullDepth + 1 ) << 1 );
994    for( UInt uiPart = 0; uiPart < 4; uiPart++ )
995    {
996      xIntraChromaRecQT( pcCU, uiTrDepth + 1, uiAbsPartIdx + uiPart * uiNumQPart, pcRecoYuv, pcPredYuv, pcResiYuv );
997    }
998  }
999}
1000
1001Void TDecCu::xCopyToPic( TComDataCU* pcCU, TComPic* pcPic, UInt uiZorderIdx, UInt uiDepth )
1002{
1003  UInt uiCUAddr = pcCU->getAddr();
1004 
1005  m_ppcYuvReco[uiDepth]->copyToPicYuv  ( pcPic->getPicYuvRec (), uiCUAddr, uiZorderIdx );
1006 
1007  return;
1008}
1009
1010Void TDecCu::xDecodeInterTexture ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
1011{
1012  UInt    uiWidth    = pcCU->getWidth ( uiAbsPartIdx );
1013  UInt    uiHeight   = pcCU->getHeight( uiAbsPartIdx );
1014  TCoeff* piCoeff;
1015 
1016  Pel*    pResi;
1017  UInt    uiLumaTrMode, uiChromaTrMode;
1018 
1019  pcCU->convertTransIdx( uiAbsPartIdx, pcCU->getTransformIdx( uiAbsPartIdx ), uiLumaTrMode, uiChromaTrMode );
1020 
1021  // Y
1022  piCoeff = pcCU->getCoeffY();
1023  pResi = m_ppcYuvResi[uiDepth]->getLumaAddr();
[56]1024
1025#if H0736_AVC_STYLE_QP_RANGE
1026  m_pcTrQuant->setQPforQuant( pcCU->getQP( uiAbsPartIdx ), !pcCU->getSlice()->getDepth(), pcCU->getSlice()->getSliceType(), TEXT_LUMA, pcCU->getSlice()->getSPS()->getQpBDOffsetY(), 0 );
1027#else
1028  m_pcTrQuant->setQPforQuant( pcCU->getQP( uiAbsPartIdx ), !pcCU->getSlice()->getDepth(), pcCU->getSlice()->getSliceType(), TEXT_LUMA, 0 );
1029#endif
1030
[2]1031  m_pcTrQuant->invRecurTransformNxN ( pcCU, 0, TEXT_LUMA, pResi, 0, m_ppcYuvResi[uiDepth]->getStride(), uiWidth, uiHeight, uiLumaTrMode, 0, piCoeff );
1032 
1033  // Cb and Cr
[56]1034#if H0736_AVC_STYLE_QP_RANGE
1035  m_pcTrQuant->setQPforQuant( pcCU->getQP( uiAbsPartIdx ), !pcCU->getSlice()->getDepth(), pcCU->getSlice()->getSliceType(), TEXT_CHROMA, pcCU->getSlice()->getSPS()->getQpBDOffsetC(), pcCU->getSlice()->getPPS()->getChromaQpOffset() );
1036#else
1037  m_pcTrQuant->setQPforQuant( pcCU->getQP( uiAbsPartIdx ), !pcCU->getSlice()->getDepth(), pcCU->getSlice()->getSliceType(), TEXT_CHROMA, pcCU->getSlice()->getPPS()->getChromaQpOffset() );
1038#endif
1039
[2]1040  uiWidth  >>= 1;
1041  uiHeight >>= 1;
1042  piCoeff = pcCU->getCoeffCb(); pResi = m_ppcYuvResi[uiDepth]->getCbAddr();
1043  m_pcTrQuant->invRecurTransformNxN ( pcCU, 0, TEXT_CHROMA_U, pResi, 0, m_ppcYuvResi[uiDepth]->getCStride(), uiWidth, uiHeight, uiChromaTrMode, 0, piCoeff );
[56]1044
1045#if H0736_AVC_STYLE_QP_RANGE
1046  m_pcTrQuant->setQPforQuant( pcCU->getQP( uiAbsPartIdx ), !pcCU->getSlice()->getDepth(), pcCU->getSlice()->getSliceType(), TEXT_CHROMA, pcCU->getSlice()->getSPS()->getQpBDOffsetC(), pcCU->getSlice()->getPPS()->getChromaQpOffset2nd() );
1047#else
1048  m_pcTrQuant->setQPforQuant( pcCU->getQP( uiAbsPartIdx ), !pcCU->getSlice()->getDepth(), pcCU->getSlice()->getSliceType(), TEXT_CHROMA, pcCU->getSlice()->getPPS()->getChromaQpOffset2nd() );
1049#endif
1050
[2]1051  piCoeff = pcCU->getCoeffCr(); pResi = m_ppcYuvResi[uiDepth]->getCrAddr();
1052  m_pcTrQuant->invRecurTransformNxN ( pcCU, 0, TEXT_CHROMA_V, pResi, 0, m_ppcYuvResi[uiDepth]->getCStride(), uiWidth, uiHeight, uiChromaTrMode, 0, piCoeff );
1053}
1054
[56]1055/** Function for deriving reconstructed luma/chroma samples of a PCM mode CU.
1056 * \param pcCU pointer to current CU
1057 * \param uiPartIdx part index
1058 * \param piPCM pointer to PCM code arrays
1059 * \param piReco pointer to reconstructed sample arrays
1060 * \param uiStride stride of reconstructed sample arrays
1061 * \param uiWidth CU width
1062 * \param uiHeight CU height
1063 * \param ttText texture component type
1064 * \returns Void
1065 */
1066Void TDecCu::xDecodePCMTexture( TComDataCU* pcCU, UInt uiPartIdx, Pel *piPCM, Pel* piReco, UInt uiStride, UInt uiWidth, UInt uiHeight, TextType ttText)
1067{
1068  UInt uiX, uiY;
1069  Pel* piPicReco;
1070  UInt uiPicStride;
1071  UInt uiPcmLeftShiftBit; 
1072
1073  if( ttText == TEXT_LUMA )
1074  {
1075    uiPicStride   = pcCU->getPic()->getPicYuvRec()->getStride();
1076    piPicReco = pcCU->getPic()->getPicYuvRec()->getLumaAddr(pcCU->getAddr(), pcCU->getZorderIdxInCU()+uiPartIdx);
1077    uiPcmLeftShiftBit = g_uiBitDepth + g_uiBitIncrement - pcCU->getSlice()->getSPS()->getPCMBitDepthLuma();
1078  }
1079  else
1080  {
1081    uiPicStride = pcCU->getPic()->getPicYuvRec()->getCStride();
1082
1083    if( ttText == TEXT_CHROMA_U )
1084    {
1085      piPicReco = pcCU->getPic()->getPicYuvRec()->getCbAddr(pcCU->getAddr(), pcCU->getZorderIdxInCU()+uiPartIdx);
1086    }
1087    else
1088    {
1089      piPicReco = pcCU->getPic()->getPicYuvRec()->getCrAddr(pcCU->getAddr(), pcCU->getZorderIdxInCU()+uiPartIdx);
1090    }
1091    uiPcmLeftShiftBit = g_uiBitDepth + g_uiBitIncrement - pcCU->getSlice()->getSPS()->getPCMBitDepthChroma();
1092  }
1093
1094  for( uiY = 0; uiY < uiHeight; uiY++ )
1095  {
1096    for( uiX = 0; uiX < uiWidth; uiX++ )
1097    {
1098      piReco[uiX] = (piPCM[uiX] << uiPcmLeftShiftBit);
1099      piPicReco[uiX] = piReco[uiX];
1100    }
1101    piPCM += uiWidth;
1102    piReco += uiStride;
1103    piPicReco += uiPicStride;
1104  }
1105}
1106
1107/** Function for reconstructing a PCM mode CU.
1108 * \param pcCU pointer to current CU
1109 * \param uiAbsPartIdx CU index
1110 * \param uiDepth CU Depth
1111 * \returns Void
1112 */
1113Void TDecCu::xReconPCM( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
1114{
1115  // Luma
1116  UInt uiWidth  = (g_uiMaxCUWidth >> uiDepth);
1117  UInt uiHeight = (g_uiMaxCUHeight >> uiDepth);
1118
1119  Pel* piPcmY = pcCU->getPCMSampleY();
1120  Pel* piRecoY = m_ppcYuvReco[uiDepth]->getLumaAddr(0, uiWidth);
1121
1122  UInt uiStride = m_ppcYuvResi[uiDepth]->getStride();
1123
1124  xDecodePCMTexture( pcCU, 0, piPcmY, piRecoY, uiStride, uiWidth, uiHeight, TEXT_LUMA);
1125
1126  // Cb and Cr
1127  UInt uiCWidth  = (uiWidth>>1);
1128  UInt uiCHeight = (uiHeight>>1);
1129
1130  Pel* piPcmCb = pcCU->getPCMSampleCb();
1131  Pel* piPcmCr = pcCU->getPCMSampleCr();
1132  Pel* pRecoCb = m_ppcYuvReco[uiDepth]->getCbAddr();
1133  Pel* pRecoCr = m_ppcYuvReco[uiDepth]->getCrAddr();
1134
1135  UInt uiCStride = m_ppcYuvReco[uiDepth]->getCStride();
1136
1137  xDecodePCMTexture( pcCU, 0, piPcmCb, pRecoCb, uiCStride, uiCWidth, uiCHeight, TEXT_CHROMA_U);
1138  xDecodePCMTexture( pcCU, 0, piPcmCr, pRecoCr, uiCStride, uiCWidth, uiCHeight, TEXT_CHROMA_V);
1139}
1140
1141#if LOSSLESS_CODING
1142/** Function for filling the PCM buffer of a CU using its reconstructed sample array
1143 * \param pcCU pointer to current CU
1144 * \param uiAbsPartIdx CU index
1145 * \param uiDepth CU Depth
1146 * \returns Void
1147 */
1148Void TDecCu::xFillPCMBuffer(TComDataCU* pCU, UInt absPartIdx, UInt depth)
1149{
1150  // Luma
1151  UInt width  = (g_uiMaxCUWidth >> depth);
1152  UInt height = (g_uiMaxCUHeight >> depth);
1153
1154  Pel* pPcmY = pCU->getPCMSampleY();
1155  Pel* pRecoY = m_ppcYuvReco[depth]->getLumaAddr(0, width);
1156
1157  UInt stride = m_ppcYuvReco[depth]->getStride();
1158
1159  for(Int y = 0; y < height; y++ )
1160  {
1161    for(Int x = 0; x < width; x++ )
1162    {
1163      pPcmY[x] = pRecoY[x];
1164    }
1165    pPcmY += width;
1166    pRecoY += stride;
1167  }
1168
1169  // Cb and Cr
1170  UInt widthC  = (width>>1);
1171  UInt heightC = (height>>1);
1172
1173  Pel* pPcmCb = pCU->getPCMSampleCb();
1174  Pel* pPcmCr = pCU->getPCMSampleCr();
1175  Pel* pRecoCb = m_ppcYuvReco[depth]->getCbAddr();
1176  Pel* pRecoCr = m_ppcYuvReco[depth]->getCrAddr();
1177
1178  UInt strideC = m_ppcYuvReco[depth]->getCStride();
1179
1180  for(Int y = 0; y < heightC; y++ )
1181  {
1182    for(Int x = 0; x < widthC; x++ )
1183    {
1184      pPcmCb[x] = pRecoCb[x];
1185      pPcmCr[x] = pRecoCr[x];
1186    }
1187    pPcmCr += widthC;
1188    pPcmCb += widthC;
1189    pRecoCb += strideC;
1190    pRecoCr += strideC;
1191  }
1192
1193}
1194#endif
1195
1196//! \}
Note: See TracBrowser for help on using the repository browser.