source: SHVCSoftware/branches/0.1.1-bugfix/source/Lib/TLibDecoder/TDecCu.cpp @ 8

Last change on this file since 8 was 2, checked in by seregin, 12 years ago

Initial import by Vadim Seregin <vseregin@…>

File size: 38.0 KB
Line 
1/* The copyright in this software is being made available under the BSD
2 * License, included below. This software may be subject to other third party
3 * and contributor rights, including patent rights, and no such rights are
4 * granted under this license. 
5 *
6 * Copyright (c) 2010-2012, ITU/ISO/IEC
7 * All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met:
11 *
12 *  * Redistributions of source code must retain the above copyright notice,
13 *    this list of conditions and the following disclaimer.
14 *  * Redistributions in binary form must reproduce the above copyright notice,
15 *    this list of conditions and the following disclaimer in the documentation
16 *    and/or other materials provided with the distribution.
17 *  * Neither the name of the ITU/ISO/IEC nor the names of its contributors may
18 *    be used to endorse or promote products derived from this software without
19 *    specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
25 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
31 * THE POSSIBILITY OF SUCH DAMAGE.
32 */
33
34/** \file     TDecCu.cpp
35    \brief    CU decoder class
36*/
37
38#include "TDecCu.h"
39#if SVC_EXTENSION
40#include "TDecTop.h"
41#endif
42
43
44//! \ingroup TLibDecoder
45//! \{
46
47// ====================================================================================================================
48// Constructor / destructor / create / destroy
49// ====================================================================================================================
50
51TDecCu::TDecCu()
52{
53  m_ppcYuvResi = NULL;
54  m_ppcYuvReco = NULL;
55  m_ppcCU      = NULL;
56}
57
58TDecCu::~TDecCu()
59{
60}
61
62#if SVC_EXTENSION
63Void TDecCu::init(TDecTop** ppcDecTop, TDecEntropy* pcEntropyDecoder, TComTrQuant* pcTrQuant, TComPrediction* pcPrediction, UInt layerId)
64#else
65Void TDecCu::init( TDecEntropy* pcEntropyDecoder, TComTrQuant* pcTrQuant, TComPrediction* pcPrediction)
66#endif
67{
68  m_pcEntropyDecoder  = pcEntropyDecoder;
69  m_pcTrQuant         = pcTrQuant;
70  m_pcPrediction      = pcPrediction;
71#if SVC_EXTENSION   
72  m_ppcTDecTop = ppcDecTop;
73  m_layerId = layerId; 
74
75  for ( UInt ui = 0; ui < m_uiMaxDepth-1; ui++ )
76  {
77    m_ppcCU     [ui]->setLayerId(layerId);
78  }
79#endif
80}
81
82/**
83 \param    uiMaxDepth    total number of allowable depth
84 \param    uiMaxWidth    largest CU width
85 \param    uiMaxHeight   largest CU height
86 */
87Void TDecCu::create( UInt uiMaxDepth, UInt uiMaxWidth, UInt uiMaxHeight )
88{
89  m_uiMaxDepth = uiMaxDepth+1;
90 
91  m_ppcYuvResi = new TComYuv*[m_uiMaxDepth-1];
92  m_ppcYuvReco = new TComYuv*[m_uiMaxDepth-1];
93  m_ppcCU      = new TComDataCU*[m_uiMaxDepth-1];
94 
95  UInt uiNumPartitions;
96  for ( UInt ui = 0; ui < m_uiMaxDepth-1; ui++ )
97  {
98    uiNumPartitions = 1<<( ( m_uiMaxDepth - ui - 1 )<<1 );
99    UInt uiWidth  = uiMaxWidth  >> ui;
100    UInt uiHeight = uiMaxHeight >> ui;
101   
102    m_ppcYuvResi[ui] = new TComYuv;    m_ppcYuvResi[ui]->create( uiWidth, uiHeight );
103    m_ppcYuvReco[ui] = new TComYuv;    m_ppcYuvReco[ui]->create( uiWidth, uiHeight );
104    m_ppcCU     [ui] = new TComDataCU; m_ppcCU     [ui]->create( uiNumPartitions, uiWidth, uiHeight, true, uiMaxWidth >> (m_uiMaxDepth - 1) );
105  }
106 
107  m_bDecodeDQP = false;
108
109  // initialize partition order.
110  UInt* piTmp = &g_auiZscanToRaster[0];
111  initZscanToRaster(m_uiMaxDepth, 1, 0, piTmp);
112  initRasterToZscan( uiMaxWidth, uiMaxHeight, m_uiMaxDepth );
113 
114  // initialize conversion matrix from partition index to pel
115  initRasterToPelXY( uiMaxWidth, uiMaxHeight, m_uiMaxDepth );
116  initMotionReferIdx ( uiMaxWidth, uiMaxHeight, m_uiMaxDepth );
117}
118
119Void TDecCu::destroy()
120{
121  for ( UInt ui = 0; ui < m_uiMaxDepth-1; ui++ )
122  {
123    m_ppcYuvResi[ui]->destroy(); delete m_ppcYuvResi[ui]; m_ppcYuvResi[ui] = NULL;
124    m_ppcYuvReco[ui]->destroy(); delete m_ppcYuvReco[ui]; m_ppcYuvReco[ui] = NULL;
125    m_ppcCU     [ui]->destroy(); delete m_ppcCU     [ui]; m_ppcCU     [ui] = NULL;
126  }
127 
128  delete [] m_ppcYuvResi; m_ppcYuvResi = NULL;
129  delete [] m_ppcYuvReco; m_ppcYuvReco = NULL;
130  delete [] m_ppcCU     ; m_ppcCU      = NULL;
131}
132
133// ====================================================================================================================
134// Public member functions
135// ====================================================================================================================
136
137/** \param    pcCU        pointer of CU data
138 \param    ruiIsLast   last data?
139 */
140Void TDecCu::decodeCU( TComDataCU* pcCU, UInt& ruiIsLast )
141{
142  if ( pcCU->getSlice()->getPPS()->getUseDQP() )
143  {
144    setdQPFlag(true);
145  }
146
147  pcCU->setNumSucIPCM(0);
148
149  // start from the top level CU
150#if SVC_EXTENSION
151  pcCU->setLayerId(m_layerId);
152#endif
153  xDecodeCU( pcCU, 0, 0, ruiIsLast);
154}
155
156/** \param    pcCU        pointer of CU data
157 */
158Void TDecCu::decompressCU( TComDataCU* pcCU )
159{
160  xDecompressCU( pcCU, pcCU, 0,  0 );
161}
162
163// ====================================================================================================================
164// Protected member functions
165// ====================================================================================================================
166
167/**decode end-of-slice flag
168 * \param pcCU
169 * \param uiAbsPartIdx
170 * \param uiDepth
171 * \returns Bool
172 */
173Bool TDecCu::xDecodeSliceEnd( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth)
174{
175  UInt uiIsLast;
176  TComPic* pcPic = pcCU->getPic();
177  TComSlice * pcSlice = pcPic->getSlice(pcPic->getCurrSliceIdx());
178  UInt uiCurNumParts    = pcPic->getNumPartInCU() >> (uiDepth<<1);
179  UInt uiWidth = pcSlice->getSPS()->getPicWidthInLumaSamples();
180  UInt uiHeight = pcSlice->getSPS()->getPicHeightInLumaSamples();
181#if REMOVE_FGS
182  UInt uiGranularityWidth = g_uiMaxCUWidth;
183#else
184  UInt uiGranularityWidth = g_uiMaxCUWidth>>(pcSlice->getPPS()->getSliceGranularity());
185#endif
186  UInt uiPosX = pcCU->getCUPelX() + g_auiRasterToPelX[ g_auiZscanToRaster[uiAbsPartIdx] ];
187  UInt uiPosY = pcCU->getCUPelY() + g_auiRasterToPelY[ g_auiZscanToRaster[uiAbsPartIdx] ];
188
189  if(((uiPosX+pcCU->getWidth(uiAbsPartIdx))%uiGranularityWidth==0||(uiPosX+pcCU->getWidth(uiAbsPartIdx)==uiWidth))
190    &&((uiPosY+pcCU->getHeight(uiAbsPartIdx))%uiGranularityWidth==0||(uiPosY+pcCU->getHeight(uiAbsPartIdx)==uiHeight)))
191  {
192    m_pcEntropyDecoder->decodeTerminatingBit( uiIsLast );
193  }
194  else
195  {
196    uiIsLast=0;
197  }
198 
199  if(uiIsLast) 
200  {
201    if(pcSlice->isNextDependentSlice()&&!pcSlice->isNextSlice()) 
202    {
203      pcSlice->setDependentSliceCurEndCUAddr(pcCU->getSCUAddr()+uiAbsPartIdx+uiCurNumParts);
204    }
205    else 
206    {
207      pcSlice->setSliceCurEndCUAddr(pcCU->getSCUAddr()+uiAbsPartIdx+uiCurNumParts);
208      pcSlice->setDependentSliceCurEndCUAddr(pcCU->getSCUAddr()+uiAbsPartIdx+uiCurNumParts);
209    }
210  }
211
212  return uiIsLast>0;
213}
214
215/** decode CU block recursively
216 * \param pcCU
217 * \param uiAbsPartIdx
218 * \param uiDepth
219 * \returns Void
220 */
221
222Void TDecCu::xDecodeCU( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt& ruiIsLast)
223{
224  TComPic* pcPic = pcCU->getPic();
225  UInt uiCurNumParts    = pcPic->getNumPartInCU() >> (uiDepth<<1);
226  UInt uiQNumParts      = uiCurNumParts>>2;
227 
228  Bool bBoundary = false;
229  UInt uiLPelX   = pcCU->getCUPelX() + g_auiRasterToPelX[ g_auiZscanToRaster[uiAbsPartIdx] ];
230  UInt uiRPelX   = uiLPelX + (g_uiMaxCUWidth>>uiDepth)  - 1;
231  UInt uiTPelY   = pcCU->getCUPelY() + g_auiRasterToPelY[ g_auiZscanToRaster[uiAbsPartIdx] ];
232  UInt uiBPelY   = uiTPelY + (g_uiMaxCUHeight>>uiDepth) - 1;
233 
234  TComSlice * pcSlice = pcCU->getPic()->getSlice(pcCU->getPic()->getCurrSliceIdx());
235  Bool bStartInCU = pcCU->getSCUAddr()+uiAbsPartIdx+uiCurNumParts>pcSlice->getDependentSliceCurStartCUAddr()&&pcCU->getSCUAddr()+uiAbsPartIdx<pcSlice->getDependentSliceCurStartCUAddr();
236  if((!bStartInCU) && ( uiRPelX < pcSlice->getSPS()->getPicWidthInLumaSamples() ) && ( uiBPelY < pcSlice->getSPS()->getPicHeightInLumaSamples() ) )
237  {
238    if(pcCU->getNumSucIPCM() == 0)
239    {
240      m_pcEntropyDecoder->decodeSplitFlag( pcCU, uiAbsPartIdx, uiDepth );
241    }
242    else
243    {
244      pcCU->setDepthSubParts( uiDepth, uiAbsPartIdx );
245    }
246  }
247  else
248  {
249    bBoundary = true;
250  }
251 
252  if( ( ( uiDepth < pcCU->getDepth( uiAbsPartIdx ) ) && ( uiDepth < g_uiMaxCUDepth - g_uiAddCUDepth ) ) || bBoundary )
253  {
254    UInt uiIdx = uiAbsPartIdx;
255    if( (g_uiMaxCUWidth>>uiDepth) == pcCU->getSlice()->getPPS()->getMinCuDQPSize() && pcCU->getSlice()->getPPS()->getUseDQP())
256    {
257      setdQPFlag(true);
258      pcCU->setQPSubParts( pcCU->getRefQP(uiAbsPartIdx), uiAbsPartIdx, uiDepth ); // set QP to default QP
259    }
260
261    for ( UInt uiPartUnitIdx = 0; uiPartUnitIdx < 4; uiPartUnitIdx++ )
262    {
263      uiLPelX   = pcCU->getCUPelX() + g_auiRasterToPelX[ g_auiZscanToRaster[uiIdx] ];
264      uiTPelY   = pcCU->getCUPelY() + g_auiRasterToPelY[ g_auiZscanToRaster[uiIdx] ];
265     
266      Bool bSubInSlice = pcCU->getSCUAddr()+uiIdx+uiQNumParts>pcSlice->getDependentSliceCurStartCUAddr();
267      if ( bSubInSlice )
268      {
269        if ( ( uiLPelX < pcCU->getSlice()->getSPS()->getPicWidthInLumaSamples() ) && ( uiTPelY < pcCU->getSlice()->getSPS()->getPicHeightInLumaSamples() ) )
270        {
271          xDecodeCU( pcCU, uiIdx, uiDepth+1, ruiIsLast );
272        }
273        else
274        {
275          pcCU->setOutsideCUPart( uiIdx, uiDepth+1 );
276        }
277      }
278      if(ruiIsLast)
279      {
280        break;
281      }
282     
283      uiIdx += uiQNumParts;
284    }
285    if( (g_uiMaxCUWidth>>uiDepth) == pcCU->getSlice()->getPPS()->getMinCuDQPSize() && pcCU->getSlice()->getPPS()->getUseDQP())
286    {
287      if ( getdQPFlag() )
288      {
289        UInt uiQPSrcPartIdx;
290        if ( pcPic->getCU( pcCU->getAddr() )->getDependentSliceStartCU(uiAbsPartIdx) != pcSlice->getDependentSliceCurStartCUAddr() )
291        {
292          uiQPSrcPartIdx = pcSlice->getDependentSliceCurStartCUAddr() % pcPic->getNumPartInCU();
293        }
294        else
295        {
296          uiQPSrcPartIdx = uiAbsPartIdx;
297        }
298        pcCU->setQPSubParts( pcCU->getRefQP( uiQPSrcPartIdx ), uiAbsPartIdx, uiDepth ); // set QP to default QP
299      }
300    }
301    return;
302  }
303 
304  if( (g_uiMaxCUWidth>>uiDepth) >= pcCU->getSlice()->getPPS()->getMinCuDQPSize() && pcCU->getSlice()->getPPS()->getUseDQP())
305  {
306    setdQPFlag(true);
307    pcCU->setQPSubParts( pcCU->getRefQP(uiAbsPartIdx), uiAbsPartIdx, uiDepth ); // set QP to default QP
308  }
309
310  if (pcCU->getSlice()->getPPS()->getTransquantBypassEnableFlag() && pcCU->getNumSucIPCM() == 0 )
311  {
312    m_pcEntropyDecoder->decodeCUTransquantBypassFlag( pcCU, uiAbsPartIdx, uiDepth );
313  }
314 
315  // decode CU mode and the partition size
316  if( !pcCU->getSlice()->isIntra() && pcCU->getNumSucIPCM() == 0 )
317  {
318    m_pcEntropyDecoder->decodeSkipFlag( pcCU, uiAbsPartIdx, uiDepth );
319  }
320 
321  if( pcCU->isSkipped(uiAbsPartIdx) )
322  {
323    m_ppcCU[uiDepth]->copyInterPredInfoFrom( pcCU, uiAbsPartIdx, REF_PIC_LIST_0 );
324    m_ppcCU[uiDepth]->copyInterPredInfoFrom( pcCU, uiAbsPartIdx, REF_PIC_LIST_1 );
325    TComMvField cMvFieldNeighbours[MRG_MAX_NUM_CANDS << 1]; // double length for mv of both lists
326    UChar uhInterDirNeighbours[MRG_MAX_NUM_CANDS];
327    Int numValidMergeCand = 0;
328    for( UInt ui = 0; ui < m_ppcCU[uiDepth]->getSlice()->getMaxNumMergeCand(); ++ui )
329    {
330      uhInterDirNeighbours[ui] = 0;
331    }
332    m_pcEntropyDecoder->decodeMergeIndex( pcCU, 0, uiAbsPartIdx, SIZE_2Nx2N, uhInterDirNeighbours, cMvFieldNeighbours, uiDepth );
333    UInt uiMergeIndex = pcCU->getMergeIndex(uiAbsPartIdx);
334    m_ppcCU[uiDepth]->getInterMergeCandidates( 0, 0, uiDepth, cMvFieldNeighbours, uhInterDirNeighbours, numValidMergeCand, uiMergeIndex );
335    pcCU->setInterDirSubParts( uhInterDirNeighbours[uiMergeIndex], uiAbsPartIdx, 0, uiDepth );
336
337    TComMv cTmpMv( 0, 0 );
338    for ( UInt uiRefListIdx = 0; uiRefListIdx < 2; uiRefListIdx++ )
339    {       
340      if ( pcCU->getSlice()->getNumRefIdx( RefPicList( uiRefListIdx ) ) > 0 )
341      {
342        pcCU->setMVPIdxSubParts( 0, RefPicList( uiRefListIdx ), uiAbsPartIdx, 0, uiDepth);
343        pcCU->setMVPNumSubParts( 0, RefPicList( uiRefListIdx ), uiAbsPartIdx, 0, uiDepth);
344        pcCU->getCUMvField( RefPicList( uiRefListIdx ) )->setAllMvd( cTmpMv, SIZE_2Nx2N, uiAbsPartIdx, uiDepth );
345        pcCU->getCUMvField( RefPicList( uiRefListIdx ) )->setAllMvField( cMvFieldNeighbours[ 2*uiMergeIndex + uiRefListIdx ], SIZE_2Nx2N, uiAbsPartIdx, uiDepth );
346      }
347    }
348    xFinishDecodeCU( pcCU, uiAbsPartIdx, uiDepth, ruiIsLast );
349    return;
350  }
351#if INTRA_BL
352  m_pcEntropyDecoder->decodeIntraBLFlag( pcCU, uiAbsPartIdx, 0, uiDepth );
353  if ( pcCU->isIntraBL( uiAbsPartIdx ) )
354  {
355    pcCU->setSizeSubParts( g_uiMaxCUWidth>>uiDepth, g_uiMaxCUHeight>>uiDepth, uiAbsPartIdx, uiDepth ); 
356  }
357  else
358  {
359#endif
360
361  if( pcCU->getNumSucIPCM() == 0 ) 
362  {
363    m_pcEntropyDecoder->decodePredMode( pcCU, uiAbsPartIdx, uiDepth );
364    m_pcEntropyDecoder->decodePartSize( pcCU, uiAbsPartIdx, uiDepth );
365  }
366  else
367  {
368    pcCU->setPredModeSubParts( MODE_INTRA, uiAbsPartIdx, uiDepth );
369    pcCU->setPartSizeSubParts( SIZE_2Nx2N, uiAbsPartIdx, uiDepth );
370    pcCU->setSizeSubParts( g_uiMaxCUWidth>>uiDepth, g_uiMaxCUHeight>>uiDepth, uiAbsPartIdx, uiDepth ); 
371    pcCU->setTrIdxSubParts( 0, uiAbsPartIdx, uiDepth );
372  }
373
374  if (pcCU->isIntra( uiAbsPartIdx ) && pcCU->getPartitionSize( uiAbsPartIdx ) == SIZE_2Nx2N )
375  {
376    m_pcEntropyDecoder->decodeIPCMInfo( pcCU, uiAbsPartIdx, uiDepth );
377
378    if(pcCU->getIPCMFlag(uiAbsPartIdx))
379    {
380      xFinishDecodeCU( pcCU, uiAbsPartIdx, uiDepth, ruiIsLast );
381      return;
382    }
383  } 
384#if INTRA_BL
385  // prediction mode ( Intra : direction mode, Inter : Mv, reference idx )
386  m_pcEntropyDecoder->decodePredInfo( pcCU, uiAbsPartIdx, uiDepth, m_ppcCU[uiDepth]);
387  }
388#endif
389
390  UInt uiCurrWidth      = pcCU->getWidth ( uiAbsPartIdx );
391  UInt uiCurrHeight     = pcCU->getHeight( uiAbsPartIdx );
392 
393#if !INTRA_BL
394  // prediction mode ( Intra : direction mode, Inter : Mv, reference idx )
395  m_pcEntropyDecoder->decodePredInfo( pcCU, uiAbsPartIdx, uiDepth, m_ppcCU[uiDepth]);
396#endif
397 
398  // Coefficient decoding
399  Bool bCodeDQP = getdQPFlag();
400  m_pcEntropyDecoder->decodeCoeff( pcCU, uiAbsPartIdx, uiDepth, uiCurrWidth, uiCurrHeight, bCodeDQP );
401  setdQPFlag( bCodeDQP );
402  xFinishDecodeCU( pcCU, uiAbsPartIdx, uiDepth, ruiIsLast );
403}
404
405Void TDecCu::xFinishDecodeCU( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt& ruiIsLast)
406{
407  if(  pcCU->getSlice()->getPPS()->getUseDQP())
408  {
409    pcCU->setQPSubParts( getdQPFlag()?pcCU->getRefQP(uiAbsPartIdx):pcCU->getCodedQP(), uiAbsPartIdx, uiDepth ); // set QP
410  }
411  if( pcCU->getNumSucIPCM() > 0 )
412  {
413    ruiIsLast = 0;
414    return;
415  }
416
417  ruiIsLast = xDecodeSliceEnd( pcCU, uiAbsPartIdx, uiDepth);
418}
419
420Void TDecCu::xDecompressCU( TComDataCU* pcCU, TComDataCU* pcCUCur, UInt uiAbsPartIdx,  UInt uiDepth )
421{
422  TComPic* pcPic = pcCU->getPic();
423 
424  Bool bBoundary = false;
425  UInt uiLPelX   = pcCU->getCUPelX() + g_auiRasterToPelX[ g_auiZscanToRaster[uiAbsPartIdx] ];
426  UInt uiRPelX   = uiLPelX + (g_uiMaxCUWidth>>uiDepth)  - 1;
427  UInt uiTPelY   = pcCU->getCUPelY() + g_auiRasterToPelY[ g_auiZscanToRaster[uiAbsPartIdx] ];
428  UInt uiBPelY   = uiTPelY + (g_uiMaxCUHeight>>uiDepth) - 1;
429 
430  UInt uiCurNumParts    = pcPic->getNumPartInCU() >> (uiDepth<<1);
431  TComSlice * pcSlice = pcCU->getPic()->getSlice(pcCU->getPic()->getCurrSliceIdx());
432  Bool bStartInCU = pcCU->getSCUAddr()+uiAbsPartIdx+uiCurNumParts>pcSlice->getDependentSliceCurStartCUAddr()&&pcCU->getSCUAddr()+uiAbsPartIdx<pcSlice->getDependentSliceCurStartCUAddr();
433  if(bStartInCU||( uiRPelX >= pcSlice->getSPS()->getPicWidthInLumaSamples() ) || ( uiBPelY >= pcSlice->getSPS()->getPicHeightInLumaSamples() ) )
434  {
435    bBoundary = true;
436  }
437 
438  if( ( ( uiDepth < pcCU->getDepth( uiAbsPartIdx ) ) && ( uiDepth < g_uiMaxCUDepth - g_uiAddCUDepth ) ) || bBoundary )
439  {
440    UInt uiNextDepth = uiDepth + 1;
441    UInt uiQNumParts = pcCU->getTotalNumPart() >> (uiNextDepth<<1);
442    UInt uiIdx = uiAbsPartIdx;
443    for ( UInt uiPartIdx = 0; uiPartIdx < 4; uiPartIdx++ )
444    {
445      uiLPelX = pcCU->getCUPelX() + g_auiRasterToPelX[ g_auiZscanToRaster[uiIdx] ];
446      uiTPelY = pcCU->getCUPelY() + g_auiRasterToPelY[ g_auiZscanToRaster[uiIdx] ];
447     
448      Bool binSlice = (pcCU->getSCUAddr()+uiIdx+uiQNumParts>pcSlice->getDependentSliceCurStartCUAddr())&&(pcCU->getSCUAddr()+uiIdx<pcSlice->getDependentSliceCurEndCUAddr());
449      if(binSlice&&( uiLPelX < pcSlice->getSPS()->getPicWidthInLumaSamples() ) && ( uiTPelY < pcSlice->getSPS()->getPicHeightInLumaSamples() ) )
450      {
451        xDecompressCU(pcCU, m_ppcCU[uiNextDepth], uiIdx, uiNextDepth );
452      }
453     
454      uiIdx += uiQNumParts;
455    }
456    return;
457  }
458 
459  // Residual reconstruction
460  m_ppcYuvResi[uiDepth]->clear();
461 
462  m_ppcCU[uiDepth]->copySubCU( pcCU, uiAbsPartIdx, uiDepth );
463 
464  switch( m_ppcCU[uiDepth]->getPredictionMode(0) )
465  {
466    case MODE_INTER:
467      xReconInter( m_ppcCU[uiDepth], uiAbsPartIdx, uiDepth );
468      break;
469    case MODE_INTRA:
470      xReconIntraQT( m_ppcCU[uiDepth], uiAbsPartIdx, uiDepth );
471      break;
472#if INTRA_BL
473    case MODE_INTRA_BL:
474      xReconIntraQT( m_ppcCU[uiDepth], uiAbsPartIdx, uiDepth );
475      break;
476#endif
477    default:
478      assert(0);
479      break;
480  }
481  if ( m_ppcCU[uiDepth]->isLosslessCoded(0) && (m_ppcCU[uiDepth]->getIPCMFlag(0) == false))
482  {
483    xFillPCMBuffer(m_ppcCU[uiDepth], uiAbsPartIdx, uiDepth);   
484  }
485 
486  xCopyToPic( m_ppcCU[uiDepth], pcPic, uiAbsPartIdx, uiDepth );
487}
488
489Void TDecCu::xReconInter( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
490{
491 
492  // inter prediction
493  m_pcPrediction->motionCompensation( pcCU, m_ppcYuvReco[uiDepth] );
494 
495  // inter recon
496  xDecodeInterTexture( pcCU, 0, uiDepth );
497 
498  // clip for only non-zero cbp case
499  if  ( ( pcCU->getCbf( 0, TEXT_LUMA ) ) || ( pcCU->getCbf( 0, TEXT_CHROMA_U ) ) || ( pcCU->getCbf(0, TEXT_CHROMA_V ) ) )
500  {
501    m_ppcYuvReco[uiDepth]->addClip( m_ppcYuvReco[uiDepth], m_ppcYuvResi[uiDepth], 0, pcCU->getWidth( 0 ) );
502  }
503  else
504  {
505    m_ppcYuvReco[uiDepth]->copyPartToPartYuv( m_ppcYuvReco[uiDepth],0, pcCU->getWidth( 0 ),pcCU->getHeight( 0 ));
506  }
507}
508
509Void
510TDecCu::xIntraRecLumaBlk( TComDataCU* pcCU,
511                         UInt        uiTrDepth,
512                         UInt        uiAbsPartIdx,
513                         TComYuv*    pcRecoYuv,
514                         TComYuv*    pcPredYuv, 
515                         TComYuv*    pcResiYuv )
516{
517  UInt    uiWidth           = pcCU     ->getWidth   ( 0 ) >> uiTrDepth;
518  UInt    uiHeight          = pcCU     ->getHeight  ( 0 ) >> uiTrDepth;
519  UInt    uiStride          = pcRecoYuv->getStride  ();
520  Pel*    piReco            = pcRecoYuv->getLumaAddr( uiAbsPartIdx );
521  Pel*    piPred            = pcPredYuv->getLumaAddr( uiAbsPartIdx );
522  Pel*    piResi            = pcResiYuv->getLumaAddr( uiAbsPartIdx );
523 
524  UInt    uiNumCoeffInc     = ( pcCU->getSlice()->getSPS()->getMaxCUWidth() * pcCU->getSlice()->getSPS()->getMaxCUHeight() ) >> ( pcCU->getSlice()->getSPS()->getMaxCUDepth() << 1 );
525  TCoeff* pcCoeff           = pcCU->getCoeffY() + ( uiNumCoeffInc * uiAbsPartIdx );
526 
527  UInt    uiLumaPredMode    = pcCU->getLumaIntraDir     ( uiAbsPartIdx );
528 
529  UInt    uiZOrder          = pcCU->getZorderIdxInCU() + uiAbsPartIdx;
530  Pel*    piRecIPred        = pcCU->getPic()->getPicYuvRec()->getLumaAddr( pcCU->getAddr(), uiZOrder );
531  UInt    uiRecIPredStride  = pcCU->getPic()->getPicYuvRec()->getStride  ();
532  Bool    useTransformSkip  = pcCU->getTransformSkip(uiAbsPartIdx, TEXT_LUMA);
533  //===== init availability pattern =====
534  Bool  bAboveAvail = false;
535  Bool  bLeftAvail  = false;
536  pcCU->getPattern()->initPattern   ( pcCU, uiTrDepth, uiAbsPartIdx );
537  pcCU->getPattern()->initAdiPattern( pcCU, uiAbsPartIdx, uiTrDepth, 
538                                     m_pcPrediction->getPredicBuf       (),
539                                     m_pcPrediction->getPredicBufWidth  (),
540                                     m_pcPrediction->getPredicBufHeight (),
541                                     bAboveAvail, bLeftAvail );
542 
543  //===== get prediction signal =====
544#if INTRA_BL
545  if(pcCU->isIntraBL ( uiAbsPartIdx ) )
546  {
547    pcCU->getBaseLumaBlk( uiWidth, uiHeight, uiAbsPartIdx, piPred, uiStride );
548  }
549  else
550#endif
551  m_pcPrediction->predIntraLumaAng( pcCU->getPattern(), uiLumaPredMode, piPred, uiStride, uiWidth, uiHeight, pcCU, bAboveAvail, bLeftAvail );
552 
553  //===== inverse transform =====
554  m_pcTrQuant->setQPforQuant  ( pcCU->getQP(0), TEXT_LUMA, pcCU->getSlice()->getSPS()->getQpBDOffsetY(), 0 );
555
556  Int scalingListType = (pcCU->isIntra(uiAbsPartIdx) ? 0 : 3) + g_eTTable[(Int)TEXT_LUMA];
557  assert(scalingListType < 6);
558  m_pcTrQuant->invtransformNxN( pcCU->getCUTransquantBypass(uiAbsPartIdx), TEXT_LUMA, pcCU->getLumaIntraDir( uiAbsPartIdx ), piResi, uiStride, pcCoeff, uiWidth, uiHeight, scalingListType, useTransformSkip );
559
560 
561  //===== reconstruction =====
562  Pel* pPred      = piPred;
563  Pel* pResi      = piResi;
564  Pel* pReco      = piReco;
565  Pel* pRecIPred  = piRecIPred;
566  for( UInt uiY = 0; uiY < uiHeight; uiY++ )
567  {
568    for( UInt uiX = 0; uiX < uiWidth; uiX++ )
569    {
570      pReco    [ uiX ] = Clip( pPred[ uiX ] + pResi[ uiX ] );
571      pRecIPred[ uiX ] = pReco[ uiX ];
572    }
573    pPred     += uiStride;
574    pResi     += uiStride;
575    pReco     += uiStride;
576    pRecIPred += uiRecIPredStride;
577  }
578}
579
580
581Void
582TDecCu::xIntraRecChromaBlk( TComDataCU* pcCU,
583                           UInt        uiTrDepth,
584                           UInt        uiAbsPartIdx,
585                           TComYuv*    pcRecoYuv,
586                           TComYuv*    pcPredYuv, 
587                           TComYuv*    pcResiYuv,
588                           UInt        uiChromaId )
589{
590  UInt uiFullDepth  = pcCU->getDepth( 0 ) + uiTrDepth;
591  UInt uiLog2TrSize = g_aucConvertToBit[ pcCU->getSlice()->getSPS()->getMaxCUWidth() >> uiFullDepth ] + 2;
592
593  if( uiLog2TrSize == 2 )
594  {
595    assert( uiTrDepth > 0 );
596    uiTrDepth--;
597    UInt uiQPDiv = pcCU->getPic()->getNumPartInCU() >> ( ( pcCU->getDepth( 0 ) + uiTrDepth ) << 1 );
598    Bool bFirstQ = ( ( uiAbsPartIdx % uiQPDiv ) == 0 );
599    if( !bFirstQ )
600    {
601      return;
602    }
603  }
604 
605  TextType  eText             = ( uiChromaId > 0 ? TEXT_CHROMA_V : TEXT_CHROMA_U );
606  UInt      uiWidth           = pcCU     ->getWidth   ( 0 ) >> ( uiTrDepth + 1 );
607  UInt      uiHeight          = pcCU     ->getHeight  ( 0 ) >> ( uiTrDepth + 1 );
608  UInt      uiStride          = pcRecoYuv->getCStride ();
609  Pel*      piReco            = ( uiChromaId > 0 ? pcRecoYuv->getCrAddr( uiAbsPartIdx ) : pcRecoYuv->getCbAddr( uiAbsPartIdx ) );
610  Pel*      piPred            = ( uiChromaId > 0 ? pcPredYuv->getCrAddr( uiAbsPartIdx ) : pcPredYuv->getCbAddr( uiAbsPartIdx ) );
611  Pel*      piResi            = ( uiChromaId > 0 ? pcResiYuv->getCrAddr( uiAbsPartIdx ) : pcResiYuv->getCbAddr( uiAbsPartIdx ) );
612 
613  UInt      uiNumCoeffInc     = ( ( pcCU->getSlice()->getSPS()->getMaxCUWidth() * pcCU->getSlice()->getSPS()->getMaxCUHeight() ) >> ( pcCU->getSlice()->getSPS()->getMaxCUDepth() << 1 ) ) >> 2;
614  TCoeff*   pcCoeff           = ( uiChromaId > 0 ? pcCU->getCoeffCr() : pcCU->getCoeffCb() ) + ( uiNumCoeffInc * uiAbsPartIdx );
615 
616  UInt      uiChromaPredMode  = pcCU->getChromaIntraDir( 0 );
617 
618  UInt      uiZOrder          = pcCU->getZorderIdxInCU() + uiAbsPartIdx;
619  Pel*      piRecIPred        = ( uiChromaId > 0 ? pcCU->getPic()->getPicYuvRec()->getCrAddr( pcCU->getAddr(), uiZOrder ) : pcCU->getPic()->getPicYuvRec()->getCbAddr( pcCU->getAddr(), uiZOrder ) );
620  UInt      uiRecIPredStride  = pcCU->getPic()->getPicYuvRec()->getCStride();
621  Bool      useTransformSkipChroma = pcCU->getTransformSkip(uiAbsPartIdx,eText);
622  //===== init availability pattern =====
623  Bool  bAboveAvail = false;
624  Bool  bLeftAvail  = false;
625  pcCU->getPattern()->initPattern         ( pcCU, uiTrDepth, uiAbsPartIdx );
626
627#if !REMOVE_LMCHROMA
628  if( uiChromaPredMode == LM_CHROMA_IDX && uiChromaId == 0 )
629  {
630    pcCU->getPattern()->initAdiPattern( pcCU, uiAbsPartIdx, uiTrDepth, 
631                                     m_pcPrediction->getPredicBuf       (),
632                                     m_pcPrediction->getPredicBufWidth  (),
633                                     m_pcPrediction->getPredicBufHeight (),
634                                     bAboveAvail, bLeftAvail, 
635                                     true );
636
637    m_pcPrediction->getLumaRecPixels( pcCU->getPattern(), uiWidth, uiHeight );
638  }
639#endif
640 
641  pcCU->getPattern()->initAdiPatternChroma( pcCU, uiAbsPartIdx, uiTrDepth,
642                                           m_pcPrediction->getPredicBuf       (),
643                                           m_pcPrediction->getPredicBufWidth  (),
644                                           m_pcPrediction->getPredicBufHeight (),
645                                           bAboveAvail, bLeftAvail );
646  Int* pPatChroma   = ( uiChromaId > 0 ? pcCU->getPattern()->getAdiCrBuf( uiWidth, uiHeight, m_pcPrediction->getPredicBuf() ) : pcCU->getPattern()->getAdiCbBuf( uiWidth, uiHeight, m_pcPrediction->getPredicBuf() ) );
647 
648  //===== get prediction signal =====
649#if INTRA_BL
650  if(pcCU->isIntraBL ( uiAbsPartIdx ) )
651  {
652    pcCU->getBaseChromaBlk( uiWidth, uiHeight, uiAbsPartIdx, piPred, uiStride, uiChromaId );
653  }
654  else
655#endif
656#if !REMOVE_LMCHROMA
657  if( uiChromaPredMode == LM_CHROMA_IDX )
658  {
659    m_pcPrediction->predLMIntraChroma( pcCU->getPattern(), pPatChroma, piPred, uiStride, uiWidth, uiHeight, uiChromaId );
660  }
661  else
662#endif
663  {
664    if( uiChromaPredMode == DM_CHROMA_IDX )
665    {
666      uiChromaPredMode = pcCU->getLumaIntraDir( 0 );
667    }
668    m_pcPrediction->predIntraChromaAng( pcCU->getPattern(), pPatChroma, uiChromaPredMode, piPred, uiStride, uiWidth, uiHeight, pcCU, bAboveAvail, bLeftAvail ); 
669  }
670
671  //===== inverse transform =====
672#if CHROMA_QP_EXTENSION
673  Int curChromaQpOffset;
674  if(eText == TEXT_CHROMA_U)
675  {
676    curChromaQpOffset = pcCU->getSlice()->getPPS()->getChromaCbQpOffset() + pcCU->getSlice()->getSliceQpDeltaCb();
677  }
678  else
679  {
680    curChromaQpOffset = pcCU->getSlice()->getPPS()->getChromaCrQpOffset() + pcCU->getSlice()->getSliceQpDeltaCr();
681  }
682  m_pcTrQuant->setQPforQuant  ( pcCU->getQP(0), eText, pcCU->getSlice()->getSPS()->getQpBDOffsetC(), curChromaQpOffset );
683#else
684  if(eText == TEXT_CHROMA_U)
685  {
686    m_pcTrQuant->setQPforQuant  ( pcCU->getQP(0), eText, pcCU->getSlice()->getSPS()->getQpBDOffsetC(), pcCU->getSlice()->getPPS()->getChromaCbQpOffset() );
687  }
688  else
689  {
690    m_pcTrQuant->setQPforQuant  ( pcCU->getQP(0), eText, pcCU->getSlice()->getSPS()->getQpBDOffsetC(), pcCU->getSlice()->getPPS()->getChromaCrQpOffset() );
691  }
692#endif
693
694  Int scalingListType = (pcCU->isIntra(uiAbsPartIdx) ? 0 : 3) + g_eTTable[(Int)eText];
695  assert(scalingListType < 6);
696  m_pcTrQuant->invtransformNxN( pcCU->getCUTransquantBypass(uiAbsPartIdx), eText, REG_DCT, piResi, uiStride, pcCoeff, uiWidth, uiHeight, scalingListType, useTransformSkipChroma );
697
698  //===== reconstruction =====
699  Pel* pPred      = piPred;
700  Pel* pResi      = piResi;
701  Pel* pReco      = piReco;
702  Pel* pRecIPred  = piRecIPred;
703  for( UInt uiY = 0; uiY < uiHeight; uiY++ )
704  {
705    for( UInt uiX = 0; uiX < uiWidth; uiX++ )
706    {
707      pReco    [ uiX ] = Clip( pPred[ uiX ] + pResi[ uiX ] );
708      pRecIPred[ uiX ] = pReco[ uiX ];
709    }
710    pPred     += uiStride;
711    pResi     += uiStride;
712    pReco     += uiStride;
713    pRecIPred += uiRecIPredStride;
714  }
715}
716
717
718Void
719TDecCu::xReconIntraQT( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
720{
721  UInt  uiInitTrDepth = ( pcCU->getPartitionSize(0) == SIZE_2Nx2N ? 0 : 1 );
722  UInt  uiNumPart     = pcCU->getNumPartInter();
723  UInt  uiNumQParts   = pcCU->getTotalNumPart() >> 2;
724 
725  if (pcCU->getIPCMFlag(0))
726  {
727    xReconPCM( pcCU, uiAbsPartIdx, uiDepth );
728    return;
729  }
730
731  for( UInt uiPU = 0; uiPU < uiNumPart; uiPU++ )
732  {
733    xIntraLumaRecQT( pcCU, uiInitTrDepth, uiPU * uiNumQParts, m_ppcYuvReco[uiDepth], m_ppcYuvReco[uiDepth], m_ppcYuvResi[uiDepth] );
734  } 
735
736  for( UInt uiPU = 0; uiPU < uiNumPart; uiPU++ )
737  {
738    xIntraChromaRecQT( pcCU, uiInitTrDepth, uiPU * uiNumQParts, m_ppcYuvReco[uiDepth], m_ppcYuvReco[uiDepth], m_ppcYuvResi[uiDepth] );
739  }
740
741}
742
743
744/** Function for deriving recontructed PU/CU Luma sample with QTree structure
745 * \param pcCU pointer of current CU
746 * \param uiTrDepth current tranform split depth
747 * \param uiAbsPartIdx  part index
748 * \param pcRecoYuv pointer to reconstructed sample arrays
749 * \param pcPredYuv pointer to prediction sample arrays
750 * \param pcResiYuv pointer to residue sample arrays
751 *
752 \ This function dervies recontructed PU/CU Luma sample with recursive QTree structure
753 */
754Void
755TDecCu::xIntraLumaRecQT( TComDataCU* pcCU,
756                     UInt        uiTrDepth,
757                     UInt        uiAbsPartIdx,
758                     TComYuv*    pcRecoYuv,
759                     TComYuv*    pcPredYuv, 
760                     TComYuv*    pcResiYuv )
761{
762  UInt uiFullDepth  = pcCU->getDepth(0) + uiTrDepth;
763  UInt uiTrMode     = pcCU->getTransformIdx( uiAbsPartIdx );
764  if( uiTrMode == uiTrDepth )
765  {
766    xIntraRecLumaBlk  ( pcCU, uiTrDepth, uiAbsPartIdx, pcRecoYuv, pcPredYuv, pcResiYuv );
767  }
768  else
769  {
770    UInt uiNumQPart  = pcCU->getPic()->getNumPartInCU() >> ( ( uiFullDepth + 1 ) << 1 );
771    for( UInt uiPart = 0; uiPart < 4; uiPart++ )
772    {
773      xIntraLumaRecQT( pcCU, uiTrDepth + 1, uiAbsPartIdx + uiPart * uiNumQPart, pcRecoYuv, pcPredYuv, pcResiYuv );
774    }
775  }
776}
777
778/** Function for deriving recontructed PU/CU chroma samples with QTree structure
779 * \param pcCU pointer of current CU
780 * \param uiTrDepth current tranform split depth
781 * \param uiAbsPartIdx  part index
782 * \param pcRecoYuv pointer to reconstructed sample arrays
783 * \param pcPredYuv pointer to prediction sample arrays
784 * \param pcResiYuv pointer to residue sample arrays
785 *
786 \ This function dervies recontructed PU/CU chroma samples with QTree recursive structure
787 */
788Void
789TDecCu::xIntraChromaRecQT( TComDataCU* pcCU,
790                     UInt        uiTrDepth,
791                     UInt        uiAbsPartIdx,
792                     TComYuv*    pcRecoYuv,
793                     TComYuv*    pcPredYuv, 
794                     TComYuv*    pcResiYuv )
795{
796  UInt uiFullDepth  = pcCU->getDepth(0) + uiTrDepth;
797  UInt uiTrMode     = pcCU->getTransformIdx( uiAbsPartIdx );
798  if( uiTrMode == uiTrDepth )
799  {
800    xIntraRecChromaBlk( pcCU, uiTrDepth, uiAbsPartIdx, pcRecoYuv, pcPredYuv, pcResiYuv, 0 );
801    xIntraRecChromaBlk( pcCU, uiTrDepth, uiAbsPartIdx, pcRecoYuv, pcPredYuv, pcResiYuv, 1 );
802  }
803  else
804  {
805    UInt uiNumQPart  = pcCU->getPic()->getNumPartInCU() >> ( ( uiFullDepth + 1 ) << 1 );
806    for( UInt uiPart = 0; uiPart < 4; uiPart++ )
807    {
808      xIntraChromaRecQT( pcCU, uiTrDepth + 1, uiAbsPartIdx + uiPart * uiNumQPart, pcRecoYuv, pcPredYuv, pcResiYuv );
809    }
810  }
811}
812
813Void TDecCu::xCopyToPic( TComDataCU* pcCU, TComPic* pcPic, UInt uiZorderIdx, UInt uiDepth )
814{
815  UInt uiCUAddr = pcCU->getAddr();
816 
817  m_ppcYuvReco[uiDepth]->copyToPicYuv  ( pcPic->getPicYuvRec (), uiCUAddr, uiZorderIdx );
818 
819  return;
820}
821
822Void TDecCu::xDecodeInterTexture ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
823{
824  UInt    uiWidth    = pcCU->getWidth ( uiAbsPartIdx );
825  UInt    uiHeight   = pcCU->getHeight( uiAbsPartIdx );
826  TCoeff* piCoeff;
827 
828  Pel*    pResi;
829  UInt    uiLumaTrMode, uiChromaTrMode;
830 
831  pcCU->convertTransIdx( uiAbsPartIdx, pcCU->getTransformIdx( uiAbsPartIdx ), uiLumaTrMode, uiChromaTrMode );
832 
833  // Y
834  piCoeff = pcCU->getCoeffY();
835  pResi = m_ppcYuvResi[uiDepth]->getLumaAddr();
836
837  m_pcTrQuant->setQPforQuant( pcCU->getQP( uiAbsPartIdx ), TEXT_LUMA, pcCU->getSlice()->getSPS()->getQpBDOffsetY(), 0 );
838
839  m_pcTrQuant->invRecurTransformNxN ( pcCU, 0, TEXT_LUMA, pResi, 0, m_ppcYuvResi[uiDepth]->getStride(), uiWidth, uiHeight, uiLumaTrMode, 0, piCoeff );
840 
841  // Cb and Cr
842#if CHROMA_QP_EXTENSION
843  Int curChromaQpOffset = pcCU->getSlice()->getPPS()->getChromaCbQpOffset() + pcCU->getSlice()->getSliceQpDeltaCb();
844  m_pcTrQuant->setQPforQuant( pcCU->getQP( uiAbsPartIdx ), TEXT_CHROMA, pcCU->getSlice()->getSPS()->getQpBDOffsetC(), curChromaQpOffset );
845#else
846  m_pcTrQuant->setQPforQuant( pcCU->getQP( uiAbsPartIdx ), TEXT_CHROMA, pcCU->getSlice()->getSPS()->getQpBDOffsetC(), pcCU->getSlice()->getPPS()->getChromaCbQpOffset() );
847#endif
848
849  uiWidth  >>= 1;
850  uiHeight >>= 1;
851  piCoeff = pcCU->getCoeffCb(); pResi = m_ppcYuvResi[uiDepth]->getCbAddr();
852  m_pcTrQuant->invRecurTransformNxN ( pcCU, 0, TEXT_CHROMA_U, pResi, 0, m_ppcYuvResi[uiDepth]->getCStride(), uiWidth, uiHeight, uiChromaTrMode, 0, piCoeff );
853
854#if CHROMA_QP_EXTENSION
855  curChromaQpOffset = pcCU->getSlice()->getPPS()->getChromaCrQpOffset() + pcCU->getSlice()->getSliceQpDeltaCr();
856  m_pcTrQuant->setQPforQuant( pcCU->getQP( uiAbsPartIdx ), TEXT_CHROMA, pcCU->getSlice()->getSPS()->getQpBDOffsetC(), curChromaQpOffset );
857#else
858  m_pcTrQuant->setQPforQuant( pcCU->getQP( uiAbsPartIdx ), TEXT_CHROMA, pcCU->getSlice()->getSPS()->getQpBDOffsetC(), pcCU->getSlice()->getPPS()->getChromaCrQpOffset() );
859#endif
860
861  piCoeff = pcCU->getCoeffCr(); pResi = m_ppcYuvResi[uiDepth]->getCrAddr();
862  m_pcTrQuant->invRecurTransformNxN ( pcCU, 0, TEXT_CHROMA_V, pResi, 0, m_ppcYuvResi[uiDepth]->getCStride(), uiWidth, uiHeight, uiChromaTrMode, 0, piCoeff );
863}
864
865/** Function for deriving reconstructed luma/chroma samples of a PCM mode CU.
866 * \param pcCU pointer to current CU
867 * \param uiPartIdx part index
868 * \param piPCM pointer to PCM code arrays
869 * \param piReco pointer to reconstructed sample arrays
870 * \param uiStride stride of reconstructed sample arrays
871 * \param uiWidth CU width
872 * \param uiHeight CU height
873 * \param ttText texture component type
874 * \returns Void
875 */
876Void TDecCu::xDecodePCMTexture( TComDataCU* pcCU, UInt uiPartIdx, Pel *piPCM, Pel* piReco, UInt uiStride, UInt uiWidth, UInt uiHeight, TextType ttText)
877{
878  UInt uiX, uiY;
879  Pel* piPicReco;
880  UInt uiPicStride;
881  UInt uiPcmLeftShiftBit; 
882
883  if( ttText == TEXT_LUMA )
884  {
885    uiPicStride   = pcCU->getPic()->getPicYuvRec()->getStride();
886    piPicReco = pcCU->getPic()->getPicYuvRec()->getLumaAddr(pcCU->getAddr(), pcCU->getZorderIdxInCU()+uiPartIdx);
887    uiPcmLeftShiftBit = g_uiBitDepth + g_uiBitIncrement - pcCU->getSlice()->getSPS()->getPCMBitDepthLuma();
888  }
889  else
890  {
891    uiPicStride = pcCU->getPic()->getPicYuvRec()->getCStride();
892
893    if( ttText == TEXT_CHROMA_U )
894    {
895      piPicReco = pcCU->getPic()->getPicYuvRec()->getCbAddr(pcCU->getAddr(), pcCU->getZorderIdxInCU()+uiPartIdx);
896    }
897    else
898    {
899      piPicReco = pcCU->getPic()->getPicYuvRec()->getCrAddr(pcCU->getAddr(), pcCU->getZorderIdxInCU()+uiPartIdx);
900    }
901    uiPcmLeftShiftBit = g_uiBitDepth + g_uiBitIncrement - pcCU->getSlice()->getSPS()->getPCMBitDepthChroma();
902  }
903
904  for( uiY = 0; uiY < uiHeight; uiY++ )
905  {
906    for( uiX = 0; uiX < uiWidth; uiX++ )
907    {
908      piReco[uiX] = (piPCM[uiX] << uiPcmLeftShiftBit);
909      piPicReco[uiX] = piReco[uiX];
910    }
911    piPCM += uiWidth;
912    piReco += uiStride;
913    piPicReco += uiPicStride;
914  }
915}
916
917/** Function for reconstructing a PCM mode CU.
918 * \param pcCU pointer to current CU
919 * \param uiAbsPartIdx CU index
920 * \param uiDepth CU Depth
921 * \returns Void
922 */
923Void TDecCu::xReconPCM( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
924{
925  // Luma
926  UInt uiWidth  = (g_uiMaxCUWidth >> uiDepth);
927  UInt uiHeight = (g_uiMaxCUHeight >> uiDepth);
928
929  Pel* piPcmY = pcCU->getPCMSampleY();
930  Pel* piRecoY = m_ppcYuvReco[uiDepth]->getLumaAddr(0, uiWidth);
931
932  UInt uiStride = m_ppcYuvResi[uiDepth]->getStride();
933
934  xDecodePCMTexture( pcCU, 0, piPcmY, piRecoY, uiStride, uiWidth, uiHeight, TEXT_LUMA);
935
936  // Cb and Cr
937  UInt uiCWidth  = (uiWidth>>1);
938  UInt uiCHeight = (uiHeight>>1);
939
940  Pel* piPcmCb = pcCU->getPCMSampleCb();
941  Pel* piPcmCr = pcCU->getPCMSampleCr();
942  Pel* pRecoCb = m_ppcYuvReco[uiDepth]->getCbAddr();
943  Pel* pRecoCr = m_ppcYuvReco[uiDepth]->getCrAddr();
944
945  UInt uiCStride = m_ppcYuvReco[uiDepth]->getCStride();
946
947  xDecodePCMTexture( pcCU, 0, piPcmCb, pRecoCb, uiCStride, uiCWidth, uiCHeight, TEXT_CHROMA_U);
948  xDecodePCMTexture( pcCU, 0, piPcmCr, pRecoCr, uiCStride, uiCWidth, uiCHeight, TEXT_CHROMA_V);
949}
950
951/** Function for filling the PCM buffer of a CU using its reconstructed sample array
952 * \param pcCU pointer to current CU
953 * \param uiAbsPartIdx CU index
954 * \param uiDepth CU Depth
955 * \returns Void
956 */
957Void TDecCu::xFillPCMBuffer(TComDataCU* pCU, UInt absPartIdx, UInt depth)
958{
959  // Luma
960  UInt width  = (g_uiMaxCUWidth >> depth);
961  UInt height = (g_uiMaxCUHeight >> depth);
962
963  Pel* pPcmY = pCU->getPCMSampleY();
964  Pel* pRecoY = m_ppcYuvReco[depth]->getLumaAddr(0, width);
965
966  UInt stride = m_ppcYuvReco[depth]->getStride();
967
968  for(Int y = 0; y < height; y++ )
969  {
970    for(Int x = 0; x < width; x++ )
971    {
972      pPcmY[x] = pRecoY[x];
973    }
974    pPcmY += width;
975    pRecoY += stride;
976  }
977
978  // Cb and Cr
979  UInt widthC  = (width>>1);
980  UInt heightC = (height>>1);
981
982  Pel* pPcmCb = pCU->getPCMSampleCb();
983  Pel* pPcmCr = pCU->getPCMSampleCr();
984  Pel* pRecoCb = m_ppcYuvReco[depth]->getCbAddr();
985  Pel* pRecoCr = m_ppcYuvReco[depth]->getCrAddr();
986
987  UInt strideC = m_ppcYuvReco[depth]->getCStride();
988
989  for(Int y = 0; y < heightC; y++ )
990  {
991    for(Int x = 0; x < widthC; x++ )
992    {
993      pPcmCb[x] = pRecoCb[x];
994      pPcmCr[x] = pRecoCr[x];
995    }
996    pPcmCr += widthC;
997    pPcmCb += widthC;
998    pRecoCb += strideC;
999    pRecoCr += strideC;
1000  }
1001
1002}
1003
1004//! \}
Note: See TracBrowser for help on using the repository browser.