source: 3DVCSoftware/branches/HTM-3.0-Samsung/source/Lib/TLibDecoder/TDecCu.cpp @ 1327

Last change on this file since 1327 was 66, checked in by qualcomm, 13 years ago

Integration of Qualcomm's m24938

  • Property svn:eol-style set to native
File size: 45.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
40//! \ingroup TLibDecoder
41//! \{
42
43// ====================================================================================================================
44// Constructor / destructor / create / destroy
45// ====================================================================================================================
46
47TDecCu::TDecCu()
48{
49  m_ppcYuvResi = NULL;
50  m_ppcYuvReco = NULL;
51#if HHI_INTER_VIEW_RESIDUAL_PRED
52  m_ppcYuvResPred = NULL;
53#endif
54  m_ppcCU      = NULL;
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 
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];
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   
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
94    m_ppcYuvResPred[ui] = new TComYuv;    m_ppcYuvResPred[ui]->create( uiWidth, uiHeight );
95#endif
96    m_ppcCU     [ui] = new TComDataCU; m_ppcCU     [ui]->create( uiNumPartitions, uiWidth, uiHeight, true, uiMaxWidth >> (m_uiMaxDepth - 1) );
97  }
98 
99  m_bDecodeDQP = false;
100
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 );
108  initMotionReferIdx ( uiMaxWidth, uiMaxHeight, m_uiMaxDepth );
109}
110
111Void TDecCu::destroy()
112{
113  for ( UInt ui = 0; ui < m_uiMaxDepth-1; ui++ )
114  {
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
118    m_ppcYuvResPred[ui]->destroy(); delete m_ppcYuvResPred[ui]; m_ppcYuvResPred[ui] = NULL;
119#endif
120    m_ppcCU     [ui]->destroy(); delete m_ppcCU     [ui]; m_ppcCU     [ui] = NULL;
121  }
122 
123  delete [] m_ppcYuvResi; m_ppcYuvResi = NULL;
124  delete [] m_ppcYuvReco; m_ppcYuvReco = NULL;
125#if HHI_INTER_VIEW_RESIDUAL_PRED
126  delete [] m_ppcYuvResPred; m_ppcYuvResPred = NULL;
127#endif
128  delete [] m_ppcCU     ; m_ppcCU      = NULL;
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{
140  if ( pcCU->getSlice()->getPPS()->getUseDQP() )
141  {
142    setdQPFlag(true);
143  }
144
145#if BURST_IPCM
146  pcCU->setNumSucIPCM(0);
147#endif
148
149  // start from the top level CU
150  xDecodeCU( pcCU, 0, 0, ruiIsLast);
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
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
214/** decode CU block recursively
215 * \param pcCU
216 * \param uiAbsPartIdx
217 * \param uiDepth
218 * \returns Void
219 */
220
221Void TDecCu::xDecodeCU( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt& ruiIsLast)
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;
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() ) )
236  {
237#if BURST_IPCM
238    if(pcCU->getNumSucIPCM() == 0)
239    {
240#if HHI_MPI
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
251    if( pcCU->getTextureModeDepth( uiAbsPartIdx ) == -1 || uiDepth < pcCU->getTextureModeDepth( uiAbsPartIdx ) )
252#endif
253    m_pcEntropyDecoder->decodeSplitFlag( pcCU, uiAbsPartIdx, uiDepth );
254#endif
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;
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
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     
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      }
291     
292      uiIdx += uiQNumParts;
293    }
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    }
310    return;
311  }
312 
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
319  // decode CU mode and the partition size
320#if BURST_IPCM
321  if( !pcCU->getSlice()->isIntra() && pcCU->getNumSucIPCM() == 0 )
322#else
323  if( !pcCU->getSlice()->isIntra() )
324#endif
325#if HHI_MPI
326  if( pcCU->getTextureModeDepth( uiAbsPartIdx ) == -1 )
327#endif
328  {
329    m_pcEntropyDecoder->decodeSkipFlag( pcCU, uiAbsPartIdx, uiDepth );
330  }
331 
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 );
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
342    TComMvField cMvFieldNeighbours[MRG_MAX_NUM_CANDS << 1]; // double length for mv of both lists
343    UChar uhInterDirNeighbours[MRG_MAX_NUM_CANDS];
344    Int numValidMergeCand = 0;
345    for( UInt ui = 0; ui < MRG_MAX_NUM_CANDS; ++ui )
346#endif
347    {
348      uhInterDirNeighbours[ui] = 0;
349    }
350    m_pcEntropyDecoder->decodeMergeIndex( pcCU, 0, uiAbsPartIdx, SIZE_2Nx2N, uhInterDirNeighbours, cMvFieldNeighbours, uiDepth );
351#if HHI_MPI
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      {
360        const UChar uhNewDepth = max<UInt>( uiDepth, pcTextureCU->getDepth( uiAbsPartIdx + ui ) );
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    }
368    else
369    {
370#endif
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
394#if HHI_INTER_VIEW_RESIDUAL_PRED
395    m_pcEntropyDecoder->decodeResPredFlag( pcCU, uiAbsPartIdx, uiDepth, m_ppcCU[uiDepth], 0 );
396#endif
397    xFinishDecodeCU( pcCU, uiAbsPartIdx, uiDepth, ruiIsLast );
398    return;
399  }
400
401#if HHI_MPI
402  if( pcCU->getTextureModeDepth( uiAbsPartIdx ) == -1 )
403  {
404#endif
405#if BURST_IPCM
406  if( pcCU->getNumSucIPCM() == 0 ) 
407  {
408    m_pcEntropyDecoder->decodePredMode( pcCU, uiAbsPartIdx, uiDepth );
409    m_pcEntropyDecoder->decodePartSize( pcCU, uiAbsPartIdx, uiDepth );
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
422
423  if (pcCU->isIntra( uiAbsPartIdx ) && pcCU->getPartitionSize( uiAbsPartIdx ) == SIZE_2Nx2N )
424  {
425    m_pcEntropyDecoder->decodeIPCMInfo( pcCU, uiAbsPartIdx, uiDepth );
426
427    if(pcCU->getIPCMFlag(uiAbsPartIdx))
428    {
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 
442#if HHI_INTER_VIEW_RESIDUAL_PRED
443  if( !pcCU->isIntra( uiAbsPartIdx ) )
444  {
445    m_pcEntropyDecoder->decodeResPredFlag    ( pcCU, uiAbsPartIdx, uiDepth, m_ppcCU[uiDepth], 0 );
446  }
447#endif
448
449#if HHI_MPI
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      {
459        const UChar uhNewDepth = max<UInt>( uiDepth, pcTextureCU->getDepth( uiAbsPartIdx + ui ) );
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;
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
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
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          }
497          uiIdx += uiQNumParts;
498        }
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        }
515        return;
516      }
517    }
518  }
519
520  UInt uiCurrWidth      = pcCU->getWidth ( uiAbsPartIdx );
521  UInt uiCurrHeight     = pcCU->getHeight( uiAbsPartIdx );
522#endif
523
524  // Coefficient decoding
525  Bool bCodeDQP = getdQPFlag();
526  m_pcEntropyDecoder->decodeCoeff( pcCU, uiAbsPartIdx, uiDepth, uiCurrWidth, uiCurrHeight, bCodeDQP );
527  setdQPFlag( bCodeDQP );
528  xFinishDecodeCU( pcCU, uiAbsPartIdx, uiDepth, ruiIsLast );
529}
530
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
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 
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() ) )
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     
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      {
583        xDecompressCU(pcCU, m_ppcCU[uiNextDepth], uiIdx, uiNextDepth );
584      }
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  }
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
615 
616  xCopyToPic( m_ppcCU[uiDepth], pcPic, uiAbsPartIdx, uiDepth );
617}
618
619Void TDecCu::xReconInter( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
620{
621#if HHI_MPI
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 
629#if HHI_MPI
630  if( pcCU->getTextureModeDepth( 0 ) != -1 )
631    pcCU->setPartSizeSubParts( SIZE_2Nx2N, 0, uiDepth );
632#endif
633
634#if HHI_INTER_VIEW_RESIDUAL_PRED
635  if( pcCU->getResPredFlag( 0 ) )
636  {
637    AOF( pcCU->getResPredAvail( 0 ) );
638    Bool bOK = pcCU->getResidualSamples( 0, 
639#if QC_SIMPLIFIEDIVRP_M24938
640      true,
641#endif
642      m_ppcYuvResPred[uiDepth] );
643    AOF( bOK );
644#if LG_RESTRICTEDRESPRED_M24766
645        Int iPUResiPredShift[4];
646        pcCU->getPUResiPredShift(iPUResiPredShift, 0);
647        m_ppcYuvReco[uiDepth]->add(iPUResiPredShift, pcCU->getPartitionSize(0), m_ppcYuvResPred[uiDepth], pcCU->getWidth( 0 ), pcCU->getHeight( 0 ) );
648#else
649    m_ppcYuvReco[uiDepth]->add( m_ppcYuvResPred[uiDepth], pcCU->getWidth( 0 ), pcCU->getHeight( 0 ) );
650#endif
651  }
652#endif
653
654  // inter recon
655  xDecodeInterTexture( pcCU, 0, uiDepth );
656 
657  // clip for only non-zero cbp case
658  if  ( ( pcCU->getCbf( 0, TEXT_LUMA ) ) || ( pcCU->getCbf( 0, TEXT_CHROMA_U ) ) || ( pcCU->getCbf(0, TEXT_CHROMA_V ) ) )
659  {
660    m_ppcYuvReco[uiDepth]->addClip( m_ppcYuvReco[uiDepth], m_ppcYuvResi[uiDepth], 0, pcCU->getWidth( 0 ) );
661  }
662  else
663  {
664#if HHI_INTER_VIEW_RESIDUAL_PRED
665    if( pcCU->getResPredFlag( 0 ) )
666    {
667      m_ppcYuvReco[uiDepth]->clip( pcCU->getWidth( 0 ), pcCU->getHeight( 0 ) );
668    }
669#endif
670    m_ppcYuvReco[uiDepth]->copyPartToPartYuv( m_ppcYuvReco[uiDepth],0, pcCU->getWidth( 0 ),pcCU->getHeight( 0 ));
671  }
672}
673
674Void
675TDecCu::xIntraRecLumaBlk( TComDataCU* pcCU,
676                         UInt        uiTrDepth,
677                         UInt        uiAbsPartIdx,
678                         TComYuv*    pcRecoYuv,
679                         TComYuv*    pcPredYuv, 
680                         TComYuv*    pcResiYuv )
681{
682  UInt    uiWidth           = pcCU     ->getWidth   ( 0 ) >> uiTrDepth;
683  UInt    uiHeight          = pcCU     ->getHeight  ( 0 ) >> uiTrDepth;
684  UInt    uiStride          = pcRecoYuv->getStride  ();
685  Pel*    piReco            = pcRecoYuv->getLumaAddr( uiAbsPartIdx );
686  Pel*    piPred            = pcPredYuv->getLumaAddr( uiAbsPartIdx );
687  Pel*    piResi            = pcResiYuv->getLumaAddr( uiAbsPartIdx );
688 
689  UInt    uiNumCoeffInc     = ( pcCU->getSlice()->getSPS()->getMaxCUWidth() * pcCU->getSlice()->getSPS()->getMaxCUHeight() ) >> ( pcCU->getSlice()->getSPS()->getMaxCUDepth() << 1 );
690  TCoeff* pcCoeff           = pcCU->getCoeffY() + ( uiNumCoeffInc * uiAbsPartIdx );
691 
692  UInt    uiLumaPredMode    = pcCU->getLumaIntraDir     ( uiAbsPartIdx );
693 
694  UInt    uiZOrder          = pcCU->getZorderIdxInCU() + uiAbsPartIdx;
695  Pel*    piRecIPred        = pcCU->getPic()->getPicYuvRec()->getLumaAddr( pcCU->getAddr(), uiZOrder );
696  UInt    uiRecIPredStride  = pcCU->getPic()->getPicYuvRec()->getStride  ();
697 
698  //===== init availability pattern =====
699  Bool  bAboveAvail = false;
700  Bool  bLeftAvail  = false;
701  pcCU->getPattern()->initPattern   ( pcCU, uiTrDepth, uiAbsPartIdx );
702  pcCU->getPattern()->initAdiPattern( pcCU, uiAbsPartIdx, uiTrDepth, 
703                                     m_pcPrediction->getPredicBuf       (),
704                                     m_pcPrediction->getPredicBufWidth  (),
705                                     m_pcPrediction->getPredicBufHeight (),
706                                     bAboveAvail, bLeftAvail );
707 
708  //===== get prediction signal =====
709#if HHI_DMM_WEDGE_INTRA || HHI_DMM_PRED_TEX
710  if( uiLumaPredMode >= NUM_INTRA_MODE )
711  {
712    m_pcPrediction->predIntraLumaDMM( pcCU, uiAbsPartIdx, uiLumaPredMode, piPred, uiStride, uiWidth, uiHeight, bAboveAvail, bLeftAvail, false );
713  } 
714  else
715  {
716#endif
717  m_pcPrediction->predIntraLumaAng( pcCU->getPattern(), uiLumaPredMode, piPred, uiStride, uiWidth, uiHeight, pcCU, bAboveAvail, bLeftAvail );
718#if HHI_DMM_WEDGE_INTRA || HHI_DMM_PRED_TEX
719  }
720#endif
721 
722  //===== inverse transform =====
723#if H0736_AVC_STYLE_QP_RANGE
724  m_pcTrQuant->setQPforQuant  ( pcCU->getQP(0), !pcCU->getSlice()->getDepth(), pcCU->getSlice()->getSliceType(), TEXT_LUMA, pcCU->getSlice()->getSPS()->getQpBDOffsetY(), 0 );
725#else
726  m_pcTrQuant->setQPforQuant  ( pcCU->getQP(0), !pcCU->getSlice()->getDepth(), pcCU->getSlice()->getSliceType(), TEXT_LUMA, 0 );
727#endif
728
729  Int scalingListType = (pcCU->isIntra(uiAbsPartIdx) ? 0 : 3) + g_eTTable[(Int)TEXT_LUMA];
730  assert(scalingListType < 6);
731#if LOSSLESS_CODING
732  m_pcTrQuant->invtransformNxN( pcCU, TEXT_LUMA, pcCU->getLumaIntraDir( uiAbsPartIdx ), piResi, uiStride, pcCoeff, uiWidth, uiHeight, scalingListType );
733#else 
734  m_pcTrQuant->invtransformNxN(       TEXT_LUMA, pcCU->getLumaIntraDir( uiAbsPartIdx ), piResi, uiStride, pcCoeff, uiWidth, uiHeight, scalingListType );
735#endif
736
737 
738  //===== reconstruction =====
739  Pel* pPred      = piPred;
740  Pel* pResi      = piResi;
741  Pel* pReco      = piReco;
742  Pel* pRecIPred  = piRecIPred;
743  for( UInt uiY = 0; uiY < uiHeight; uiY++ )
744  {
745    for( UInt uiX = 0; uiX < uiWidth; uiX++ )
746    {
747      pReco    [ uiX ] = Clip( pPred[ uiX ] + pResi[ uiX ] );
748      pRecIPred[ uiX ] = pReco[ uiX ];
749    }
750    pPred     += uiStride;
751    pResi     += uiStride;
752    pReco     += uiStride;
753    pRecIPred += uiRecIPredStride;
754  }
755}
756
757
758Void
759TDecCu::xIntraRecChromaBlk( TComDataCU* pcCU,
760                           UInt        uiTrDepth,
761                           UInt        uiAbsPartIdx,
762                           TComYuv*    pcRecoYuv,
763                           TComYuv*    pcPredYuv, 
764                           TComYuv*    pcResiYuv,
765                           UInt        uiChromaId )
766{
767  UInt uiFullDepth  = pcCU->getDepth( 0 ) + uiTrDepth;
768  UInt uiLog2TrSize = g_aucConvertToBit[ pcCU->getSlice()->getSPS()->getMaxCUWidth() >> uiFullDepth ] + 2;
769
770  if( uiLog2TrSize == 2 )
771  {
772    assert( uiTrDepth > 0 );
773    uiTrDepth--;
774    UInt uiQPDiv = pcCU->getPic()->getNumPartInCU() >> ( ( pcCU->getDepth( 0 ) + uiTrDepth ) << 1 );
775    Bool bFirstQ = ( ( uiAbsPartIdx % uiQPDiv ) == 0 );
776    if( !bFirstQ )
777    {
778      return;
779    }
780  }
781 
782  TextType  eText             = ( uiChromaId > 0 ? TEXT_CHROMA_V : TEXT_CHROMA_U );
783  UInt      uiWidth           = pcCU     ->getWidth   ( 0 ) >> ( uiTrDepth + 1 );
784  UInt      uiHeight          = pcCU     ->getHeight  ( 0 ) >> ( uiTrDepth + 1 );
785  UInt      uiStride          = pcRecoYuv->getCStride ();
786  Pel*      piReco            = ( uiChromaId > 0 ? pcRecoYuv->getCrAddr( uiAbsPartIdx ) : pcRecoYuv->getCbAddr( uiAbsPartIdx ) );
787  Pel*      piPred            = ( uiChromaId > 0 ? pcPredYuv->getCrAddr( uiAbsPartIdx ) : pcPredYuv->getCbAddr( uiAbsPartIdx ) );
788  Pel*      piResi            = ( uiChromaId > 0 ? pcResiYuv->getCrAddr( uiAbsPartIdx ) : pcResiYuv->getCbAddr( uiAbsPartIdx ) );
789 
790  UInt      uiNumCoeffInc     = ( ( pcCU->getSlice()->getSPS()->getMaxCUWidth() * pcCU->getSlice()->getSPS()->getMaxCUHeight() ) >> ( pcCU->getSlice()->getSPS()->getMaxCUDepth() << 1 ) ) >> 2;
791  TCoeff*   pcCoeff           = ( uiChromaId > 0 ? pcCU->getCoeffCr() : pcCU->getCoeffCb() ) + ( uiNumCoeffInc * uiAbsPartIdx );
792 
793  UInt      uiChromaPredMode  = pcCU->getChromaIntraDir( 0 );
794 
795  UInt      uiZOrder          = pcCU->getZorderIdxInCU() + uiAbsPartIdx;
796  Pel*      piRecIPred        = ( uiChromaId > 0 ? pcCU->getPic()->getPicYuvRec()->getCrAddr( pcCU->getAddr(), uiZOrder ) : pcCU->getPic()->getPicYuvRec()->getCbAddr( pcCU->getAddr(), uiZOrder ) );
797  UInt      uiRecIPredStride  = pcCU->getPic()->getPicYuvRec()->getCStride();
798 
799  //===== init availability pattern =====
800  Bool  bAboveAvail = false;
801  Bool  bLeftAvail  = false;
802  pcCU->getPattern()->initPattern         ( pcCU, uiTrDepth, uiAbsPartIdx );
803
804  if( uiChromaPredMode == LM_CHROMA_IDX && uiChromaId == 0 )
805  {
806    pcCU->getPattern()->initAdiPattern( pcCU, uiAbsPartIdx, uiTrDepth, 
807                                     m_pcPrediction->getPredicBuf       (),
808                                     m_pcPrediction->getPredicBufWidth  (),
809                                     m_pcPrediction->getPredicBufHeight (),
810                                     bAboveAvail, bLeftAvail, 
811                                     true );
812
813    m_pcPrediction->getLumaRecPixels( pcCU->getPattern(), uiWidth, uiHeight );
814  }
815 
816  pcCU->getPattern()->initAdiPatternChroma( pcCU, uiAbsPartIdx, uiTrDepth, 
817                                           m_pcPrediction->getPredicBuf       (),
818                                           m_pcPrediction->getPredicBufWidth  (),
819                                           m_pcPrediction->getPredicBufHeight (),
820                                           bAboveAvail, bLeftAvail );
821  Int* pPatChroma   = ( uiChromaId > 0 ? pcCU->getPattern()->getAdiCrBuf( uiWidth, uiHeight, m_pcPrediction->getPredicBuf() ) : pcCU->getPattern()->getAdiCbBuf( uiWidth, uiHeight, m_pcPrediction->getPredicBuf() ) );
822 
823  //===== get prediction signal =====
824  if( uiChromaPredMode == LM_CHROMA_IDX )
825  {
826    m_pcPrediction->predLMIntraChroma( pcCU->getPattern(), pPatChroma, piPred, uiStride, uiWidth, uiHeight, uiChromaId );
827  }
828  else
829  {
830    if( uiChromaPredMode == DM_CHROMA_IDX )
831    {
832      uiChromaPredMode = pcCU->getLumaIntraDir( 0 );
833#if HHI_DMM_WEDGE_INTRA || HHI_DMM_PRED_TEX
834      mapDMMtoIntraMode( uiChromaPredMode );
835#endif
836    }
837    m_pcPrediction->predIntraChromaAng( pcCU->getPattern(), pPatChroma, uiChromaPredMode, piPred, uiStride, uiWidth, uiHeight, pcCU, bAboveAvail, bLeftAvail ); 
838  }
839
840  //===== inverse transform =====
841  if(eText == TEXT_CHROMA_U)
842  {
843#if H0736_AVC_STYLE_QP_RANGE
844    m_pcTrQuant->setQPforQuant  ( pcCU->getQP(0), !pcCU->getSlice()->getDepth(), pcCU->getSlice()->getSliceType(), eText, pcCU->getSlice()->getSPS()->getQpBDOffsetC(), pcCU->getSlice()->getPPS()->getChromaQpOffset() );
845#else
846    m_pcTrQuant->setQPforQuant  ( pcCU->getQP(0), !pcCU->getSlice()->getDepth(), pcCU->getSlice()->getSliceType(), eText, pcCU->getSlice()->getPPS()->getChromaQpOffset() );
847#endif
848  }
849  else
850  {
851#if H0736_AVC_STYLE_QP_RANGE
852    m_pcTrQuant->setQPforQuant  ( pcCU->getQP(0), !pcCU->getSlice()->getDepth(), pcCU->getSlice()->getSliceType(), eText, pcCU->getSlice()->getSPS()->getQpBDOffsetC(), pcCU->getSlice()->getPPS()->getChromaQpOffset2nd() );
853#else
854    m_pcTrQuant->setQPforQuant  ( pcCU->getQP(0), !pcCU->getSlice()->getDepth(), pcCU->getSlice()->getSliceType(), eText, pcCU->getSlice()->getPPS()->getChromaQpOffset2nd() );
855#endif
856  }
857
858  Int scalingListType = (pcCU->isIntra(uiAbsPartIdx) ? 0 : 3) + g_eTTable[(Int)eText];
859  assert(scalingListType < 6);
860#if LOSSLESS_CODING
861  m_pcTrQuant->invtransformNxN( pcCU, eText, REG_DCT, piResi, uiStride, pcCoeff, uiWidth, uiHeight, scalingListType );
862#else 
863  m_pcTrQuant->invtransformNxN(       eText, REG_DCT, piResi, uiStride, pcCoeff, uiWidth, uiHeight, scalingListType );
864#endif
865
866  //===== reconstruction =====
867  Pel* pPred      = piPred;
868  Pel* pResi      = piResi;
869  Pel* pReco      = piReco;
870  Pel* pRecIPred  = piRecIPred;
871  for( UInt uiY = 0; uiY < uiHeight; uiY++ )
872  {
873    for( UInt uiX = 0; uiX < uiWidth; uiX++ )
874    {
875      pReco    [ uiX ] = Clip( pPred[ uiX ] + pResi[ uiX ] );
876      pRecIPred[ uiX ] = pReco[ uiX ];
877    }
878    pPred     += uiStride;
879    pResi     += uiStride;
880    pReco     += uiStride;
881    pRecIPred += uiRecIPredStride;
882  }
883}
884
885Void
886TDecCu::xIntraRecQT( TComDataCU* pcCU,
887                    UInt        uiTrDepth,
888                    UInt        uiAbsPartIdx,
889                    TComYuv*    pcRecoYuv,
890                    TComYuv*    pcPredYuv, 
891                    TComYuv*    pcResiYuv )
892{
893  UInt uiFullDepth  = pcCU->getDepth(0) + uiTrDepth;
894  UInt uiTrMode     = pcCU->getTransformIdx( uiAbsPartIdx );
895  if( uiTrMode == uiTrDepth )
896  {
897    xIntraRecLumaBlk  ( pcCU, uiTrDepth, uiAbsPartIdx, pcRecoYuv, pcPredYuv, pcResiYuv );
898    xIntraRecChromaBlk( pcCU, uiTrDepth, uiAbsPartIdx, pcRecoYuv, pcPredYuv, pcResiYuv, 0 );
899    xIntraRecChromaBlk( pcCU, uiTrDepth, uiAbsPartIdx, pcRecoYuv, pcPredYuv, pcResiYuv, 1 );
900  }
901  else
902  {
903    UInt uiNumQPart  = pcCU->getPic()->getNumPartInCU() >> ( ( uiFullDepth + 1 ) << 1 );
904    for( UInt uiPart = 0; uiPart < 4; uiPart++ )
905    {
906      xIntraRecQT( pcCU, uiTrDepth + 1, uiAbsPartIdx + uiPart * uiNumQPart, pcRecoYuv, pcPredYuv, pcResiYuv );
907    }
908  }
909}
910
911Void
912TDecCu::xReconIntraQT( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
913{
914  UInt  uiInitTrDepth = ( pcCU->getPartitionSize(0) == SIZE_2Nx2N ? 0 : 1 );
915  UInt  uiNumPart     = pcCU->getNumPartInter();
916  UInt  uiNumQParts   = pcCU->getTotalNumPart() >> 2;
917 
918  if (pcCU->getIPCMFlag(0))
919  {
920    xReconPCM( pcCU, uiAbsPartIdx, uiDepth );
921    return;
922  }
923
924  for( UInt uiPU = 0; uiPU < uiNumPart; uiPU++ )
925  {
926    xIntraLumaRecQT( pcCU, uiInitTrDepth, uiPU * uiNumQParts, m_ppcYuvReco[uiDepth], m_ppcYuvReco[uiDepth], m_ppcYuvResi[uiDepth] );
927  } 
928
929  for( UInt uiPU = 0; uiPU < uiNumPart; uiPU++ )
930  {
931    xIntraChromaRecQT( pcCU, uiInitTrDepth, uiPU * uiNumQParts, m_ppcYuvReco[uiDepth], m_ppcYuvReco[uiDepth], m_ppcYuvResi[uiDepth] );
932  }
933
934}
935
936/** Function for deriving recontructed PU/CU Luma sample with QTree structure
937 * \param pcCU pointer of current CU
938 * \param uiTrDepth current tranform split depth
939 * \param uiAbsPartIdx  part index
940 * \param pcRecoYuv pointer to reconstructed sample arrays
941 * \param pcPredYuv pointer to prediction sample arrays
942 * \param pcResiYuv pointer to residue sample arrays
943 *
944 \ This function dervies recontructed PU/CU Luma sample with recursive QTree structure
945 */
946Void
947TDecCu::xIntraLumaRecQT( TComDataCU* pcCU,
948                     UInt        uiTrDepth,
949                     UInt        uiAbsPartIdx,
950                     TComYuv*    pcRecoYuv,
951                     TComYuv*    pcPredYuv, 
952                     TComYuv*    pcResiYuv )
953{
954  UInt uiFullDepth  = pcCU->getDepth(0) + uiTrDepth;
955  UInt uiTrMode     = pcCU->getTransformIdx( uiAbsPartIdx );
956  if( uiTrMode == uiTrDepth )
957  {
958    xIntraRecLumaBlk  ( pcCU, uiTrDepth, uiAbsPartIdx, pcRecoYuv, pcPredYuv, pcResiYuv );
959  }
960  else
961  {
962    UInt uiNumQPart  = pcCU->getPic()->getNumPartInCU() >> ( ( uiFullDepth + 1 ) << 1 );
963    for( UInt uiPart = 0; uiPart < 4; uiPart++ )
964    {
965      xIntraLumaRecQT( pcCU, uiTrDepth + 1, uiAbsPartIdx + uiPart * uiNumQPart, pcRecoYuv, pcPredYuv, pcResiYuv );
966    }
967  }
968}
969
970/** Function for deriving recontructed PU/CU chroma samples with QTree structure
971 * \param pcCU pointer of current CU
972 * \param uiTrDepth current tranform split depth
973 * \param uiAbsPartIdx  part index
974 * \param pcRecoYuv pointer to reconstructed sample arrays
975 * \param pcPredYuv pointer to prediction sample arrays
976 * \param pcResiYuv pointer to residue sample arrays
977 *
978 \ This function dervies recontructed PU/CU chroma samples with QTree recursive structure
979 */
980Void
981TDecCu::xIntraChromaRecQT( TComDataCU* pcCU,
982                     UInt        uiTrDepth,
983                     UInt        uiAbsPartIdx,
984                     TComYuv*    pcRecoYuv,
985                     TComYuv*    pcPredYuv, 
986                     TComYuv*    pcResiYuv )
987{
988  UInt uiFullDepth  = pcCU->getDepth(0) + uiTrDepth;
989  UInt uiTrMode     = pcCU->getTransformIdx( uiAbsPartIdx );
990  if( uiTrMode == uiTrDepth )
991  {
992    xIntraRecChromaBlk( pcCU, uiTrDepth, uiAbsPartIdx, pcRecoYuv, pcPredYuv, pcResiYuv, 0 );
993    xIntraRecChromaBlk( pcCU, uiTrDepth, uiAbsPartIdx, pcRecoYuv, pcPredYuv, pcResiYuv, 1 );
994  }
995  else
996  {
997    UInt uiNumQPart  = pcCU->getPic()->getNumPartInCU() >> ( ( uiFullDepth + 1 ) << 1 );
998    for( UInt uiPart = 0; uiPart < 4; uiPart++ )
999    {
1000      xIntraChromaRecQT( pcCU, uiTrDepth + 1, uiAbsPartIdx + uiPart * uiNumQPart, pcRecoYuv, pcPredYuv, pcResiYuv );
1001    }
1002  }
1003}
1004
1005Void TDecCu::xCopyToPic( TComDataCU* pcCU, TComPic* pcPic, UInt uiZorderIdx, UInt uiDepth )
1006{
1007  UInt uiCUAddr = pcCU->getAddr();
1008 
1009  m_ppcYuvReco[uiDepth]->copyToPicYuv  ( pcPic->getPicYuvRec (), uiCUAddr, uiZorderIdx );
1010 
1011  return;
1012}
1013
1014Void TDecCu::xDecodeInterTexture ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
1015{
1016  UInt    uiWidth    = pcCU->getWidth ( uiAbsPartIdx );
1017  UInt    uiHeight   = pcCU->getHeight( uiAbsPartIdx );
1018  TCoeff* piCoeff;
1019 
1020  Pel*    pResi;
1021  UInt    uiLumaTrMode, uiChromaTrMode;
1022 
1023  pcCU->convertTransIdx( uiAbsPartIdx, pcCU->getTransformIdx( uiAbsPartIdx ), uiLumaTrMode, uiChromaTrMode );
1024 
1025  // Y
1026  piCoeff = pcCU->getCoeffY();
1027  pResi = m_ppcYuvResi[uiDepth]->getLumaAddr();
1028
1029#if H0736_AVC_STYLE_QP_RANGE
1030  m_pcTrQuant->setQPforQuant( pcCU->getQP( uiAbsPartIdx ), !pcCU->getSlice()->getDepth(), pcCU->getSlice()->getSliceType(), TEXT_LUMA, pcCU->getSlice()->getSPS()->getQpBDOffsetY(), 0 );
1031#else
1032  m_pcTrQuant->setQPforQuant( pcCU->getQP( uiAbsPartIdx ), !pcCU->getSlice()->getDepth(), pcCU->getSlice()->getSliceType(), TEXT_LUMA, 0 );
1033#endif
1034
1035  m_pcTrQuant->invRecurTransformNxN ( pcCU, 0, TEXT_LUMA, pResi, 0, m_ppcYuvResi[uiDepth]->getStride(), uiWidth, uiHeight, uiLumaTrMode, 0, piCoeff );
1036 
1037  // Cb and Cr
1038#if H0736_AVC_STYLE_QP_RANGE
1039  m_pcTrQuant->setQPforQuant( pcCU->getQP( uiAbsPartIdx ), !pcCU->getSlice()->getDepth(), pcCU->getSlice()->getSliceType(), TEXT_CHROMA, pcCU->getSlice()->getSPS()->getQpBDOffsetC(), pcCU->getSlice()->getPPS()->getChromaQpOffset() );
1040#else
1041  m_pcTrQuant->setQPforQuant( pcCU->getQP( uiAbsPartIdx ), !pcCU->getSlice()->getDepth(), pcCU->getSlice()->getSliceType(), TEXT_CHROMA, pcCU->getSlice()->getPPS()->getChromaQpOffset() );
1042#endif
1043
1044  uiWidth  >>= 1;
1045  uiHeight >>= 1;
1046  piCoeff = pcCU->getCoeffCb(); pResi = m_ppcYuvResi[uiDepth]->getCbAddr();
1047  m_pcTrQuant->invRecurTransformNxN ( pcCU, 0, TEXT_CHROMA_U, pResi, 0, m_ppcYuvResi[uiDepth]->getCStride(), uiWidth, uiHeight, uiChromaTrMode, 0, piCoeff );
1048
1049#if H0736_AVC_STYLE_QP_RANGE
1050  m_pcTrQuant->setQPforQuant( pcCU->getQP( uiAbsPartIdx ), !pcCU->getSlice()->getDepth(), pcCU->getSlice()->getSliceType(), TEXT_CHROMA, pcCU->getSlice()->getSPS()->getQpBDOffsetC(), pcCU->getSlice()->getPPS()->getChromaQpOffset2nd() );
1051#else
1052  m_pcTrQuant->setQPforQuant( pcCU->getQP( uiAbsPartIdx ), !pcCU->getSlice()->getDepth(), pcCU->getSlice()->getSliceType(), TEXT_CHROMA, pcCU->getSlice()->getPPS()->getChromaQpOffset2nd() );
1053#endif
1054
1055  piCoeff = pcCU->getCoeffCr(); pResi = m_ppcYuvResi[uiDepth]->getCrAddr();
1056  m_pcTrQuant->invRecurTransformNxN ( pcCU, 0, TEXT_CHROMA_V, pResi, 0, m_ppcYuvResi[uiDepth]->getCStride(), uiWidth, uiHeight, uiChromaTrMode, 0, piCoeff );
1057}
1058
1059/** Function for deriving reconstructed luma/chroma samples of a PCM mode CU.
1060 * \param pcCU pointer to current CU
1061 * \param uiPartIdx part index
1062 * \param piPCM pointer to PCM code arrays
1063 * \param piReco pointer to reconstructed sample arrays
1064 * \param uiStride stride of reconstructed sample arrays
1065 * \param uiWidth CU width
1066 * \param uiHeight CU height
1067 * \param ttText texture component type
1068 * \returns Void
1069 */
1070Void TDecCu::xDecodePCMTexture( TComDataCU* pcCU, UInt uiPartIdx, Pel *piPCM, Pel* piReco, UInt uiStride, UInt uiWidth, UInt uiHeight, TextType ttText)
1071{
1072  UInt uiX, uiY;
1073  Pel* piPicReco;
1074  UInt uiPicStride;
1075  UInt uiPcmLeftShiftBit; 
1076
1077  if( ttText == TEXT_LUMA )
1078  {
1079    uiPicStride   = pcCU->getPic()->getPicYuvRec()->getStride();
1080    piPicReco = pcCU->getPic()->getPicYuvRec()->getLumaAddr(pcCU->getAddr(), pcCU->getZorderIdxInCU()+uiPartIdx);
1081    uiPcmLeftShiftBit = g_uiBitDepth + g_uiBitIncrement - pcCU->getSlice()->getSPS()->getPCMBitDepthLuma();
1082  }
1083  else
1084  {
1085    uiPicStride = pcCU->getPic()->getPicYuvRec()->getCStride();
1086
1087    if( ttText == TEXT_CHROMA_U )
1088    {
1089      piPicReco = pcCU->getPic()->getPicYuvRec()->getCbAddr(pcCU->getAddr(), pcCU->getZorderIdxInCU()+uiPartIdx);
1090    }
1091    else
1092    {
1093      piPicReco = pcCU->getPic()->getPicYuvRec()->getCrAddr(pcCU->getAddr(), pcCU->getZorderIdxInCU()+uiPartIdx);
1094    }
1095    uiPcmLeftShiftBit = g_uiBitDepth + g_uiBitIncrement - pcCU->getSlice()->getSPS()->getPCMBitDepthChroma();
1096  }
1097
1098  for( uiY = 0; uiY < uiHeight; uiY++ )
1099  {
1100    for( uiX = 0; uiX < uiWidth; uiX++ )
1101    {
1102      piReco[uiX] = (piPCM[uiX] << uiPcmLeftShiftBit);
1103      piPicReco[uiX] = piReco[uiX];
1104    }
1105    piPCM += uiWidth;
1106    piReco += uiStride;
1107    piPicReco += uiPicStride;
1108  }
1109}
1110
1111/** Function for reconstructing a PCM mode CU.
1112 * \param pcCU pointer to current CU
1113 * \param uiAbsPartIdx CU index
1114 * \param uiDepth CU Depth
1115 * \returns Void
1116 */
1117Void TDecCu::xReconPCM( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
1118{
1119  // Luma
1120  UInt uiWidth  = (g_uiMaxCUWidth >> uiDepth);
1121  UInt uiHeight = (g_uiMaxCUHeight >> uiDepth);
1122
1123  Pel* piPcmY = pcCU->getPCMSampleY();
1124  Pel* piRecoY = m_ppcYuvReco[uiDepth]->getLumaAddr(0, uiWidth);
1125
1126  UInt uiStride = m_ppcYuvResi[uiDepth]->getStride();
1127
1128  xDecodePCMTexture( pcCU, 0, piPcmY, piRecoY, uiStride, uiWidth, uiHeight, TEXT_LUMA);
1129
1130  // Cb and Cr
1131  UInt uiCWidth  = (uiWidth>>1);
1132  UInt uiCHeight = (uiHeight>>1);
1133
1134  Pel* piPcmCb = pcCU->getPCMSampleCb();
1135  Pel* piPcmCr = pcCU->getPCMSampleCr();
1136  Pel* pRecoCb = m_ppcYuvReco[uiDepth]->getCbAddr();
1137  Pel* pRecoCr = m_ppcYuvReco[uiDepth]->getCrAddr();
1138
1139  UInt uiCStride = m_ppcYuvReco[uiDepth]->getCStride();
1140
1141  xDecodePCMTexture( pcCU, 0, piPcmCb, pRecoCb, uiCStride, uiCWidth, uiCHeight, TEXT_CHROMA_U);
1142  xDecodePCMTexture( pcCU, 0, piPcmCr, pRecoCr, uiCStride, uiCWidth, uiCHeight, TEXT_CHROMA_V);
1143}
1144
1145#if LOSSLESS_CODING
1146/** Function for filling the PCM buffer of a CU using its reconstructed sample array
1147 * \param pcCU pointer to current CU
1148 * \param uiAbsPartIdx CU index
1149 * \param uiDepth CU Depth
1150 * \returns Void
1151 */
1152Void TDecCu::xFillPCMBuffer(TComDataCU* pCU, UInt absPartIdx, UInt depth)
1153{
1154  // Luma
1155  UInt width  = (g_uiMaxCUWidth >> depth);
1156  UInt height = (g_uiMaxCUHeight >> depth);
1157
1158  Pel* pPcmY = pCU->getPCMSampleY();
1159  Pel* pRecoY = m_ppcYuvReco[depth]->getLumaAddr(0, width);
1160
1161  UInt stride = m_ppcYuvReco[depth]->getStride();
1162
1163  for(Int y = 0; y < height; y++ )
1164  {
1165    for(Int x = 0; x < width; x++ )
1166    {
1167      pPcmY[x] = pRecoY[x];
1168    }
1169    pPcmY += width;
1170    pRecoY += stride;
1171  }
1172
1173  // Cb and Cr
1174  UInt widthC  = (width>>1);
1175  UInt heightC = (height>>1);
1176
1177  Pel* pPcmCb = pCU->getPCMSampleCb();
1178  Pel* pPcmCr = pCU->getPCMSampleCr();
1179  Pel* pRecoCb = m_ppcYuvReco[depth]->getCbAddr();
1180  Pel* pRecoCr = m_ppcYuvReco[depth]->getCrAddr();
1181
1182  UInt strideC = m_ppcYuvReco[depth]->getCStride();
1183
1184  for(Int y = 0; y < heightC; y++ )
1185  {
1186    for(Int x = 0; x < widthC; x++ )
1187    {
1188      pPcmCb[x] = pRecoCb[x];
1189      pPcmCr[x] = pRecoCr[x];
1190    }
1191    pPcmCr += widthC;
1192    pPcmCb += widthC;
1193    pRecoCb += strideC;
1194    pRecoCr += strideC;
1195  }
1196
1197}
1198#endif
1199
1200//! \}
Note: See TracBrowser for help on using the repository browser.