source: 3DVCSoftware/branches/HTM-6.2-dev1-MediaTek/source/Lib/TLibDecoder/TDecCu.cpp

Last change on this file was 384, checked in by mediatek-htm, 12 years ago

D0156 source code

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