source: SHVCSoftware/branches/SHM-dev/source/Lib/TLibDecoder/TDecCu.cpp @ 1465

Last change on this file since 1465 was 1368, checked in by seregin, 9 years ago

port rev 4486

  • Property svn:eol-style set to native
File size: 31.7 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-2015, 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#include "TLibCommon/TComTU.h"
40#include "TLibCommon/TComPrediction.h"
41#if SVC_EXTENSION
42#include "TDecTop.h"
43#endif
44
45
46//! \ingroup TLibDecoder
47//! \{
48
49// ====================================================================================================================
50// Constructor / destructor / create / destroy
51// ====================================================================================================================
52
53TDecCu::TDecCu()
54{
55  m_ppcYuvResi = NULL;
56  m_ppcYuvReco = NULL;
57  m_ppcCU      = NULL;
58}
59
60TDecCu::~TDecCu()
61{
62}
63
64#if SVC_EXTENSION
65Void TDecCu::init(TDecTop** ppcDecTop, TDecEntropy* pcEntropyDecoder, TComTrQuant* pcTrQuant, TComPrediction* pcPrediction, UInt layerId)
66{
67  m_pcEntropyDecoder  = pcEntropyDecoder;
68  m_pcTrQuant         = pcTrQuant;
69  m_pcPrediction      = pcPrediction; 
70  m_ppcTDecTop = ppcDecTop;
71  m_layerId = layerId; 
72
73  for ( UInt ui = 0; ui < m_uiMaxDepth-1; ui++ )
74  {
75    m_ppcCU     [ui]->setLayerId(layerId);
76  }
77 
78#if LAYER_CTB
79  memcpy(g_auiLayerZscanToRaster[m_layerId], g_auiZscanToRaster, sizeof( g_auiZscanToRaster ) );
80  memcpy(g_auiLayerRasterToZscan[m_layerId], g_auiRasterToZscan, sizeof( g_auiRasterToZscan ) );
81  memcpy(g_auiLayerRasterToPelX[m_layerId],  g_auiRasterToPelX,  sizeof( g_auiRasterToPelX ) );
82  memcpy(g_auiLayerRasterToPelY[m_layerId],  g_auiRasterToPelY,  sizeof( g_auiRasterToPelY ) );
83#endif
84}
85#else
86Void TDecCu::init( TDecEntropy* pcEntropyDecoder, TComTrQuant* pcTrQuant, TComPrediction* pcPrediction)
87{
88  m_pcEntropyDecoder  = pcEntropyDecoder;
89  m_pcTrQuant         = pcTrQuant;
90  m_pcPrediction      = pcPrediction;
91}
92#endif
93
94/**
95 \param    uiMaxDepth      total number of allowable depth
96 \param    uiMaxWidth      largest CU width
97 \param    uiMaxHeight     largest CU height
98 \param    chromaFormatIDC chroma format
99 */
100Void TDecCu::create( UInt uiMaxDepth, UInt uiMaxWidth, UInt uiMaxHeight, ChromaFormat chromaFormatIDC )
101{
102  m_uiMaxDepth = uiMaxDepth+1;
103
104  m_ppcYuvResi = new TComYuv*[m_uiMaxDepth-1];
105  m_ppcYuvReco = new TComYuv*[m_uiMaxDepth-1];
106  m_ppcCU      = new TComDataCU*[m_uiMaxDepth-1];
107
108  for ( UInt ui = 0; ui < m_uiMaxDepth-1; ui++ )
109  {
110    UInt uiNumPartitions = 1<<( ( m_uiMaxDepth - ui - 1 )<<1 );
111    UInt uiWidth  = uiMaxWidth  >> ui;
112    UInt uiHeight = uiMaxHeight >> ui;
113
114    // The following arrays (m_ppcYuvResi, m_ppcYuvReco and m_ppcCU) are only required for CU depths
115    // although data is allocated for all possible depths of the CU/TU tree except the last.
116    // Since the TU tree will always include at least one additional depth greater than the CU tree,
117    // there will be enough entries for these arrays.
118    // (Section 7.4.3.2: "The CVS shall not contain data that result in (Log2MinTrafoSize) MinTbLog2SizeY
119    //                    greater than or equal to MinCbLog2SizeY")
120    // TODO: tidy the array allocation given the above comment.
121
122    m_ppcYuvResi[ui] = new TComYuv;    m_ppcYuvResi[ui]->create( uiWidth, uiHeight, chromaFormatIDC );
123    m_ppcYuvReco[ui] = new TComYuv;    m_ppcYuvReco[ui]->create( uiWidth, uiHeight, chromaFormatIDC );
124    m_ppcCU     [ui] = new TComDataCU; m_ppcCU     [ui]->create( chromaFormatIDC, uiNumPartitions, uiWidth, uiHeight, true, uiMaxWidth >> (m_uiMaxDepth - 1) );
125  }
126
127  m_bDecodeDQP = false;
128  m_IsChromaQpAdjCoded = false;
129
130  // initialize partition order.
131  UInt* piTmp = &g_auiZscanToRaster[0];
132  initZscanToRaster(m_uiMaxDepth, 1, 0, piTmp);
133  initRasterToZscan( uiMaxWidth, uiMaxHeight, m_uiMaxDepth );
134
135  // initialize conversion matrix from partition index to pel
136  initRasterToPelXY( uiMaxWidth, uiMaxHeight, m_uiMaxDepth );
137}
138
139Void TDecCu::destroy()
140{
141  for ( UInt ui = 0; ui < m_uiMaxDepth-1; ui++ )
142  {
143    m_ppcYuvResi[ui]->destroy(); delete m_ppcYuvResi[ui]; m_ppcYuvResi[ui] = NULL;
144    m_ppcYuvReco[ui]->destroy(); delete m_ppcYuvReco[ui]; m_ppcYuvReco[ui] = NULL;
145    m_ppcCU     [ui]->destroy(); delete m_ppcCU     [ui]; m_ppcCU     [ui] = NULL;
146  }
147
148  delete [] m_ppcYuvResi; m_ppcYuvResi = NULL;
149  delete [] m_ppcYuvReco; m_ppcYuvReco = NULL;
150  delete [] m_ppcCU     ; m_ppcCU      = NULL;
151}
152
153// ====================================================================================================================
154// Public member functions
155// ====================================================================================================================
156
157/**
158 Parse a CTU.
159 \param    pCtu                      [in/out] pointer to CTU data structure
160 \param    isLastCtuOfSliceSegment   [out]    true, if last CTU of the slice segment
161 */
162Void TDecCu::decodeCtu( TComDataCU* pCtu, Bool& isLastCtuOfSliceSegment )
163{
164  if ( pCtu->getSlice()->getPPS()->getUseDQP() )
165  {
166    setdQPFlag(true);
167  }
168
169  if ( pCtu->getSlice()->getUseChromaQpAdj() )
170  {
171    setIsChromaQpAdjCoded(true);
172  }
173
174#if SVC_EXTENSION
175  pCtu->setLayerId(m_layerId);
176#endif
177
178  // start from the top level CU
179  xDecodeCU( pCtu, 0, 0, isLastCtuOfSliceSegment);
180}
181
182/**
183 Decoding process for a CTU.
184 \param    pCtu                      [in/out] pointer to CTU data structure
185 */
186Void TDecCu::decompressCtu( TComDataCU* pCtu )
187{
188  xDecompressCU( pCtu, 0,  0 );
189}
190
191// ====================================================================================================================
192// Protected member functions
193// ====================================================================================================================
194
195//! decode end-of-slice flag
196Bool TDecCu::xDecodeSliceEnd( TComDataCU* pcCU, UInt uiAbsPartIdx )
197{
198  UInt uiIsLastCtuOfSliceSegment;
199
200  if (pcCU->isLastSubCUOfCtu(uiAbsPartIdx))
201  {
202    m_pcEntropyDecoder->decodeTerminatingBit( uiIsLastCtuOfSliceSegment );
203  }
204  else
205  {
206    uiIsLastCtuOfSliceSegment=0;
207  }
208
209  return uiIsLastCtuOfSliceSegment>0;
210}
211
212//! decode CU block recursively
213Void TDecCu::xDecodeCU( TComDataCU*const pcCU, const UInt uiAbsPartIdx, const UInt uiDepth, Bool &isLastCtuOfSliceSegment)
214{
215  TComPic* pcPic        = pcCU->getPic();
216  const TComSPS &sps    = pcPic->getPicSym()->getSPS();
217  const TComPPS &pps    = pcPic->getPicSym()->getPPS();
218  const UInt maxCuWidth = sps.getMaxCUWidth();
219  const UInt maxCuHeight= sps.getMaxCUHeight();
220  UInt uiCurNumParts    = pcPic->getNumPartitionsInCtu() >> (uiDepth<<1);
221  UInt uiQNumParts      = uiCurNumParts>>2;
222
223
224  Bool bBoundary = false;
225  UInt uiLPelX   = pcCU->getCUPelX() + g_auiRasterToPelX[ g_auiZscanToRaster[uiAbsPartIdx] ];
226  UInt uiRPelX   = uiLPelX + (maxCuWidth>>uiDepth)  - 1;
227  UInt uiTPelY   = pcCU->getCUPelY() + g_auiRasterToPelY[ g_auiZscanToRaster[uiAbsPartIdx] ];
228  UInt uiBPelY   = uiTPelY + (maxCuHeight>>uiDepth) - 1;
229
230#if SVC_EXTENSION
231  TComSlice * pcSlice = pcPic->getSlice(pcPic->getCurrSliceIdx());
232
233  if( ( uiRPelX < pcSlice->getPicWidthInLumaSamples() ) && ( uiBPelY < pcSlice->getPicHeightInLumaSamples() ) )
234#else
235  if( ( uiRPelX < sps.getPicWidthInLumaSamples() ) && ( uiBPelY < sps.getPicHeightInLumaSamples() ) )
236#endif
237  {
238    m_pcEntropyDecoder->decodeSplitFlag( pcCU, uiAbsPartIdx, uiDepth );
239  }
240  else
241  {
242    bBoundary = true;
243  }
244  if( ( ( uiDepth < pcCU->getDepth( uiAbsPartIdx ) ) && ( uiDepth < sps.getLog2DiffMaxMinCodingBlockSize() ) ) || bBoundary )
245  {
246    UInt uiIdx = uiAbsPartIdx;
247    if( uiDepth == pps.getMaxCuDQPDepth() && pps.getUseDQP())
248    {
249      setdQPFlag(true);
250      pcCU->setQPSubParts( pcCU->getRefQP(uiAbsPartIdx), uiAbsPartIdx, uiDepth ); // set QP to default QP
251    }
252
253    if( uiDepth == pps.getPpsRangeExtension().getDiffCuChromaQpOffsetDepth() && pcCU->getSlice()->getUseChromaQpAdj() )
254    {
255      setIsChromaQpAdjCoded(true);
256    }
257
258    for ( UInt uiPartUnitIdx = 0; uiPartUnitIdx < 4; uiPartUnitIdx++ )
259    {
260      uiLPelX   = pcCU->getCUPelX() + g_auiRasterToPelX[ g_auiZscanToRaster[uiIdx] ];
261      uiTPelY   = pcCU->getCUPelY() + g_auiRasterToPelY[ g_auiZscanToRaster[uiIdx] ];
262
263#if SVC_EXTENSION
264      if ( !isLastCtuOfSliceSegment && ( uiLPelX < pcCU->getSlice()->getPicWidthInLumaSamples() ) && ( uiTPelY < pcCU->getSlice()->getPicHeightInLumaSamples() ) )
265#else
266      if ( !isLastCtuOfSliceSegment && ( uiLPelX < sps.getPicWidthInLumaSamples() ) && ( uiTPelY < sps.getPicHeightInLumaSamples() ) )
267#endif
268      {
269        xDecodeCU( pcCU, uiIdx, uiDepth+1, isLastCtuOfSliceSegment );
270      }
271      else
272      {
273        pcCU->setOutsideCUPart( uiIdx, uiDepth+1 );
274      }
275
276      uiIdx += uiQNumParts;
277    }
278    if( uiDepth == pps.getMaxCuDQPDepth() && pps.getUseDQP())
279    {
280      if ( getdQPFlag() )
281      {
282        UInt uiQPSrcPartIdx = uiAbsPartIdx;
283        pcCU->setQPSubParts( pcCU->getRefQP( uiQPSrcPartIdx ), uiAbsPartIdx, uiDepth ); // set QP to default QP
284      }
285    }
286    return;
287  }
288
289  if( uiDepth <= pps.getMaxCuDQPDepth() && pps.getUseDQP())
290  {
291    setdQPFlag(true);
292    pcCU->setQPSubParts( pcCU->getRefQP(uiAbsPartIdx), uiAbsPartIdx, uiDepth ); // set QP to default QP
293  }
294
295  if( uiDepth <= pps.getPpsRangeExtension().getDiffCuChromaQpOffsetDepth() && pcCU->getSlice()->getUseChromaQpAdj() )
296  {
297    setIsChromaQpAdjCoded(true);
298  }
299
300  if (pps.getTransquantBypassEnableFlag())
301  {
302    m_pcEntropyDecoder->decodeCUTransquantBypassFlag( pcCU, uiAbsPartIdx, uiDepth );
303  }
304
305  // decode CU mode and the partition size
306  if( !pcCU->getSlice()->isIntra())
307  {
308    m_pcEntropyDecoder->decodeSkipFlag( pcCU, uiAbsPartIdx, uiDepth );
309  }
310 
311#if SVC_EXTENSION
312  // Check CU skip for higher layer IRAP skip flag
313  if( pcCU->getSlice()->getVPS()->getHigherLayerIrapSkipFlag() && pcCU->getSlice()->getVPS()->getSingleLayerForNonIrapFlag() && pcCU->getLayerId() > 0 )
314  {
315    Bool lowerLayerExist = false;
316    for(int i=0;i<pcCU->getLayerId();i++)
317    {
318      if(pcCU->getSlice()->getBaseColPic(pcCU->getSlice()->getInterLayerPredLayerIdc(i)))
319      {
320        lowerLayerExist = true;
321      }
322    }
323
324    if( lowerLayerExist && !pcCU->isSkipped(uiAbsPartIdx) )
325    {
326      printf( "Warning: CU is not skipped with enabled higher layer IRAP skip flag\n" );
327    }
328  }
329#endif
330 
331  if( pcCU->isSkipped(uiAbsPartIdx) )
332  {
333    m_ppcCU[uiDepth]->copyInterPredInfoFrom( pcCU, uiAbsPartIdx, REF_PIC_LIST_0 );
334    m_ppcCU[uiDepth]->copyInterPredInfoFrom( pcCU, uiAbsPartIdx, REF_PIC_LIST_1 );
335    TComMvField cMvFieldNeighbours[MRG_MAX_NUM_CANDS << 1]; // double length for mv of both lists
336    UChar uhInterDirNeighbours[MRG_MAX_NUM_CANDS];
337    Int numValidMergeCand = 0;
338    for( UInt ui = 0; ui < m_ppcCU[uiDepth]->getSlice()->getMaxNumMergeCand(); ++ui )
339    {
340      uhInterDirNeighbours[ui] = 0;
341    }
342    m_pcEntropyDecoder->decodeMergeIndex( pcCU, 0, uiAbsPartIdx, uiDepth );
343    UInt uiMergeIndex = pcCU->getMergeIndex(uiAbsPartIdx);
344    m_ppcCU[uiDepth]->getInterMergeCandidates( 0, 0, cMvFieldNeighbours, uhInterDirNeighbours, numValidMergeCand, uiMergeIndex );
345    pcCU->setInterDirSubParts( uhInterDirNeighbours[uiMergeIndex], uiAbsPartIdx, 0, uiDepth );
346
347    TComMv cTmpMv( 0, 0 );
348    for ( UInt uiRefListIdx = 0; uiRefListIdx < 2; uiRefListIdx++ )
349    {
350      if ( pcCU->getSlice()->getNumRefIdx( RefPicList( uiRefListIdx ) ) > 0 )
351      {
352        pcCU->setMVPIdxSubParts( 0, RefPicList( uiRefListIdx ), uiAbsPartIdx, 0, uiDepth);
353        pcCU->setMVPNumSubParts( 0, RefPicList( uiRefListIdx ), uiAbsPartIdx, 0, uiDepth);
354        pcCU->getCUMvField( RefPicList( uiRefListIdx ) )->setAllMvd( cTmpMv, SIZE_2Nx2N, uiAbsPartIdx, uiDepth );
355        pcCU->getCUMvField( RefPicList( uiRefListIdx ) )->setAllMvField( cMvFieldNeighbours[ 2*uiMergeIndex + uiRefListIdx ], SIZE_2Nx2N, uiAbsPartIdx, uiDepth );
356      }
357    }
358    xFinishDecodeCU( pcCU, uiAbsPartIdx, uiDepth, isLastCtuOfSliceSegment );
359    return;
360  }
361
362  m_pcEntropyDecoder->decodePredMode( pcCU, uiAbsPartIdx, uiDepth );
363  m_pcEntropyDecoder->decodePartSize( pcCU, uiAbsPartIdx, uiDepth );
364
365  if (pcCU->isIntra( uiAbsPartIdx ) && pcCU->getPartitionSize( uiAbsPartIdx ) == SIZE_2Nx2N )
366  {
367    m_pcEntropyDecoder->decodeIPCMInfo( pcCU, uiAbsPartIdx, uiDepth );
368
369    if(pcCU->getIPCMFlag(uiAbsPartIdx))
370    {
371      xFinishDecodeCU( pcCU, uiAbsPartIdx, uiDepth, isLastCtuOfSliceSegment );
372      return;
373    }
374  }
375
376  // prediction mode ( Intra : direction mode, Inter : Mv, reference idx )
377  m_pcEntropyDecoder->decodePredInfo( pcCU, uiAbsPartIdx, uiDepth, m_ppcCU[uiDepth]);
378
379  // Coefficient decoding
380  Bool bCodeDQP = getdQPFlag();
381  Bool isChromaQpAdjCoded = getIsChromaQpAdjCoded();
382  m_pcEntropyDecoder->decodeCoeff( pcCU, uiAbsPartIdx, uiDepth, bCodeDQP, isChromaQpAdjCoded );
383  setIsChromaQpAdjCoded( isChromaQpAdjCoded );
384  setdQPFlag( bCodeDQP );
385  xFinishDecodeCU( pcCU, uiAbsPartIdx, uiDepth, isLastCtuOfSliceSegment );
386}
387
388Void TDecCu::xFinishDecodeCU( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, Bool &isLastCtuOfSliceSegment)
389{
390  if(  pcCU->getSlice()->getPPS()->getUseDQP())
391  {
392    pcCU->setQPSubParts( getdQPFlag()?pcCU->getRefQP(uiAbsPartIdx):pcCU->getCodedQP(), uiAbsPartIdx, uiDepth ); // set QP
393  }
394
395  if (pcCU->getSlice()->getUseChromaQpAdj() && !getIsChromaQpAdjCoded())
396  {
397    pcCU->setChromaQpAdjSubParts( pcCU->getCodedChromaQpAdj(), uiAbsPartIdx, uiDepth ); // set QP
398  }
399
400  isLastCtuOfSliceSegment = xDecodeSliceEnd( pcCU, uiAbsPartIdx );
401}
402
403Void TDecCu::xDecompressCU( TComDataCU* pCtu, UInt uiAbsPartIdx,  UInt uiDepth )
404{
405  TComPic* pcPic = pCtu->getPic();
406  TComSlice * pcSlice = pCtu->getSlice();
407  const TComSPS &sps=*(pcSlice->getSPS());
408
409  Bool bBoundary = false;
410  UInt uiLPelX   = pCtu->getCUPelX() + g_auiRasterToPelX[ g_auiZscanToRaster[uiAbsPartIdx] ];
411  UInt uiRPelX   = uiLPelX + (sps.getMaxCUWidth()>>uiDepth)  - 1;
412  UInt uiTPelY   = pCtu->getCUPelY() + g_auiRasterToPelY[ g_auiZscanToRaster[uiAbsPartIdx] ];
413  UInt uiBPelY   = uiTPelY + (sps.getMaxCUHeight()>>uiDepth) - 1;
414
415#if SVC_EXTENSION
416  if( ( uiRPelX >= pcSlice->getPicWidthInLumaSamples() ) || ( uiBPelY >= pcSlice->getPicHeightInLumaSamples() ) )
417#else
418  if( ( uiRPelX >= sps.getPicWidthInLumaSamples() ) || ( uiBPelY >= sps.getPicHeightInLumaSamples() ) )
419#endif
420  {
421    bBoundary = true;
422  }
423
424  if( ( ( uiDepth < pCtu->getDepth( uiAbsPartIdx ) ) && ( uiDepth < sps.getLog2DiffMaxMinCodingBlockSize() ) ) || bBoundary )
425  {
426    UInt uiNextDepth = uiDepth + 1;
427    UInt uiQNumParts = pCtu->getTotalNumPart() >> (uiNextDepth<<1);
428    UInt uiIdx = uiAbsPartIdx;
429    for ( UInt uiPartIdx = 0; uiPartIdx < 4; uiPartIdx++ )
430    {
431      uiLPelX = pCtu->getCUPelX() + g_auiRasterToPelX[ g_auiZscanToRaster[uiIdx] ];
432      uiTPelY = pCtu->getCUPelY() + g_auiRasterToPelY[ g_auiZscanToRaster[uiIdx] ];
433
434#if SVC_EXTENSION
435      if( ( uiLPelX < pcSlice->getPicWidthInLumaSamples() ) && ( uiTPelY < pcSlice->getPicHeightInLumaSamples() ) )
436#else
437      if( ( uiLPelX < sps.getPicWidthInLumaSamples() ) && ( uiTPelY < sps.getPicHeightInLumaSamples() ) )
438#endif
439      {
440        xDecompressCU(pCtu, uiIdx, uiNextDepth );
441      }
442
443      uiIdx += uiQNumParts;
444    }
445    return;
446  }
447
448  // Residual reconstruction
449  m_ppcYuvResi[uiDepth]->clear();
450
451  m_ppcCU[uiDepth]->copySubCU( pCtu, uiAbsPartIdx );
452
453  switch( m_ppcCU[uiDepth]->getPredictionMode(0) )
454  {
455    case MODE_INTER:
456      xReconInter( m_ppcCU[uiDepth], uiDepth );
457      break;
458    case MODE_INTRA:
459      xReconIntraQT( m_ppcCU[uiDepth], uiDepth );
460      break;
461    default:
462      assert(0);
463      break;
464  }
465
466#if DEBUG_STRING
467  const PredMode predMode=m_ppcCU[uiDepth]->getPredictionMode(0);
468  if (DebugOptionList::DebugString_Structure.getInt()&DebugStringGetPredModeMask(predMode))
469  {
470    PartSize eSize=m_ppcCU[uiDepth]->getPartitionSize(0);
471    std::ostream &ss(std::cout);
472
473    ss <<"###: " << (predMode==MODE_INTRA?"Intra   ":"Inter   ") << partSizeToString[eSize] << " CU at " << m_ppcCU[uiDepth]->getCUPelX() << ", " << m_ppcCU[uiDepth]->getCUPelY() << " width=" << UInt(m_ppcCU[uiDepth]->getWidth(0)) << std::endl;
474  }
475#endif
476
477  if ( m_ppcCU[uiDepth]->isLosslessCoded(0) && (m_ppcCU[uiDepth]->getIPCMFlag(0) == false))
478  {
479    xFillPCMBuffer(m_ppcCU[uiDepth], uiDepth);
480  }
481
482  xCopyToPic( m_ppcCU[uiDepth], pcPic, uiAbsPartIdx, uiDepth );
483}
484
485Void TDecCu::xReconInter( TComDataCU* pcCU, UInt uiDepth )
486{
487
488  // inter prediction
489  m_pcPrediction->motionCompensation( pcCU, m_ppcYuvReco[uiDepth] );
490
491#if DEBUG_STRING
492  const Int debugPredModeMask=DebugStringGetPredModeMask(MODE_INTER);
493  if (DebugOptionList::DebugString_Pred.getInt()&debugPredModeMask)
494  {
495    printBlockToStream(std::cout, "###inter-pred: ", *(m_ppcYuvReco[uiDepth]));
496  }
497#endif
498
499  // inter recon
500  xDecodeInterTexture( pcCU, uiDepth );
501
502#if DEBUG_STRING
503  if (DebugOptionList::DebugString_Resi.getInt()&debugPredModeMask)
504  {
505    printBlockToStream(std::cout, "###inter-resi: ", *(m_ppcYuvResi[uiDepth]));
506  }
507#endif
508
509  // clip for only non-zero cbp case
510  if  ( pcCU->getQtRootCbf( 0) )
511  {
512#if SVC_EXTENSION
513    m_ppcYuvReco[uiDepth]->addClip( m_ppcYuvReco[uiDepth], m_ppcYuvResi[uiDepth], 0, pcCU->getWidth( 0 ), pcCU->getSlice()->getBitDepths() );
514#else
515    m_ppcYuvReco[uiDepth]->addClip( m_ppcYuvReco[uiDepth], m_ppcYuvResi[uiDepth], 0, pcCU->getWidth( 0 ), pcCU->getSlice()->getSPS()->getBitDepths() );
516#endif
517  }
518  else
519  {
520    m_ppcYuvReco[uiDepth]->copyPartToPartYuv( m_ppcYuvReco[uiDepth],0, pcCU->getWidth( 0 ),pcCU->getHeight( 0 ));
521  }
522#if DEBUG_STRING
523  if (DebugOptionList::DebugString_Reco.getInt()&debugPredModeMask)
524  {
525    printBlockToStream(std::cout, "###inter-reco: ", *(m_ppcYuvReco[uiDepth]));
526  }
527#endif
528
529}
530
531
532Void
533TDecCu::xIntraRecBlk(       TComYuv*    pcRecoYuv,
534                            TComYuv*    pcPredYuv,
535                            TComYuv*    pcResiYuv,
536                      const ComponentID compID,
537                            TComTU     &rTu)
538{
539  if (!rTu.ProcessComponentSection(compID))
540  {
541    return;
542  }
543  const Bool       bIsLuma = isLuma(compID);
544
545
546  TComDataCU *pcCU = rTu.getCU();
547  const TComSPS &sps=*(pcCU->getSlice()->getSPS());
548  const UInt uiAbsPartIdx=rTu.GetAbsPartIdxTU();
549
550  const TComRectangle &tuRect  =rTu.getRect(compID);
551  const UInt uiWidth           = tuRect.width;
552  const UInt uiHeight          = tuRect.height;
553  const UInt uiStride          = pcRecoYuv->getStride (compID);
554        Pel* piPred            = pcPredYuv->getAddr( compID, uiAbsPartIdx );
555  const ChromaFormat chFmt     = rTu.GetChromaFormat();
556
557  if (uiWidth != uiHeight)
558  {
559    //------------------------------------------------
560
561    //split at current level if dividing into square sub-TUs
562
563    TComTURecurse subTURecurse(rTu, false, TComTU::VERTICAL_SPLIT, true, compID);
564
565    //recurse further
566    do
567    {
568      xIntraRecBlk(pcRecoYuv, pcPredYuv, pcResiYuv, compID, subTURecurse);
569    } while (subTURecurse.nextSection(rTu));
570
571    //------------------------------------------------
572
573    return;
574  }
575
576  const UInt uiChPredMode  = pcCU->getIntraDir( toChannelType(compID), uiAbsPartIdx );
577  const UInt partsPerMinCU = 1<<(2*(sps.getMaxTotalCUDepth() - sps.getLog2DiffMaxMinCodingBlockSize()));
578  const UInt uiChCodedMode = (uiChPredMode==DM_CHROMA_IDX && !bIsLuma) ? pcCU->getIntraDir(CHANNEL_TYPE_LUMA, getChromasCorrespondingPULumaIdx(uiAbsPartIdx, chFmt, partsPerMinCU)) : uiChPredMode;
579  const UInt uiChFinalMode = ((chFmt == CHROMA_422)       && !bIsLuma) ? g_chroma422IntraAngleMappingTable[uiChCodedMode] : uiChCodedMode;
580
581  //===== init availability pattern =====
582  const Bool bUseFilteredPredictions=TComPrediction::filteringIntraReferenceSamples(compID, uiChFinalMode, uiWidth, uiHeight, chFmt, pcCU->getSlice()->getSPS()->getSpsRangeExtension().getIntraSmoothingDisabledFlag());
583
584#if DEBUG_STRING
585  std::ostream &ss(std::cout);
586#endif
587
588  DEBUG_STRING_NEW(sTemp)
589  m_pcPrediction->initIntraPatternChType( rTu, compID, bUseFilteredPredictions  DEBUG_STRING_PASS_INTO(sTemp) );
590
591
592  //===== get prediction signal =====
593
594  m_pcPrediction->predIntraAng( compID,   uiChFinalMode, 0 /* Decoder does not have an original image */, 0, piPred, uiStride, rTu, bUseFilteredPredictions );
595
596#if DEBUG_STRING
597  ss << sTemp;
598#endif
599
600  //===== inverse transform =====
601  Pel*      piResi            = pcResiYuv->getAddr( compID, uiAbsPartIdx );
602  TCoeff*   pcCoeff           = pcCU->getCoeff(compID) + rTu.getCoefficientOffset(compID);//( uiNumCoeffInc * uiAbsPartIdx );
603
604  const QpParam cQP(*pcCU, compID);
605
606
607  DEBUG_STRING_NEW(sDebug);
608#if DEBUG_STRING
609  const Int debugPredModeMask=DebugStringGetPredModeMask(MODE_INTRA);
610  std::string *psDebug=(DebugOptionList::DebugString_InvTran.getInt()&debugPredModeMask) ? &sDebug : 0;
611#endif
612
613  if (pcCU->getCbf(uiAbsPartIdx, compID, rTu.GetTransformDepthRel()) != 0)
614  {
615    m_pcTrQuant->invTransformNxN( rTu, compID, piResi, uiStride, pcCoeff, cQP DEBUG_STRING_PASS_INTO(psDebug) );
616  }
617  else
618  {
619    for (UInt y = 0; y < uiHeight; y++)
620    {
621      for (UInt x = 0; x < uiWidth; x++)
622      {
623        piResi[(y * uiStride) + x] = 0;
624      }
625    }
626  }
627
628#if DEBUG_STRING
629  if (psDebug)
630  {
631    ss << (*psDebug);
632  }
633#endif
634
635  //===== reconstruction =====
636  const UInt uiRecIPredStride  = pcCU->getPic()->getPicYuvRec()->getStride(compID);
637
638  const Bool useCrossComponentPrediction = isChroma(compID) && (pcCU->getCrossComponentPredictionAlpha(uiAbsPartIdx, compID) != 0);
639  const Pel* pResiLuma  = pcResiYuv->getAddr( COMPONENT_Y, uiAbsPartIdx );
640  const Int  strideLuma = pcResiYuv->getStride( COMPONENT_Y );
641
642        Pel* pPred      = piPred;
643        Pel* pResi      = piResi;
644        Pel* pReco      = pcRecoYuv->getAddr( compID, uiAbsPartIdx );
645        Pel* pRecIPred  = pcCU->getPic()->getPicYuvRec()->getAddr( compID, pcCU->getCtuRsAddr(), pcCU->getZorderIdxInCtu() + uiAbsPartIdx );
646
647
648#if DEBUG_STRING
649  const Bool bDebugPred=((DebugOptionList::DebugString_Pred.getInt()&debugPredModeMask) && DEBUG_STRING_CHANNEL_CONDITION(compID));
650  const Bool bDebugResi=((DebugOptionList::DebugString_Resi.getInt()&debugPredModeMask) && DEBUG_STRING_CHANNEL_CONDITION(compID));
651  const Bool bDebugReco=((DebugOptionList::DebugString_Reco.getInt()&debugPredModeMask) && DEBUG_STRING_CHANNEL_CONDITION(compID));
652  if (bDebugPred || bDebugResi || bDebugReco)
653  {
654    ss << "###: " << "CompID: " << compID << " pred mode (ch/fin): " << uiChPredMode << "/" << uiChFinalMode << " absPartIdx: " << rTu.GetAbsPartIdxTU() << std::endl;
655  }
656#endif
657
658#if SVC_EXTENSION
659  const Int clipbd = pcCU->getSlice()->getBitDepth(toChannelType(compID));
660#else
661  const Int clipbd = sps.getBitDepth(toChannelType(compID));
662#endif
663#if O0043_BEST_EFFORT_DECODING
664  const Int bitDepthDelta = sps.getStreamBitDepth(toChannelType(compID)) - clipbd;
665#endif
666
667  if( useCrossComponentPrediction )
668  {
669    TComTrQuant::crossComponentPrediction( rTu, compID, pResiLuma, piResi, piResi, uiWidth, uiHeight, strideLuma, uiStride, uiStride, true );
670  }
671
672  for( UInt uiY = 0; uiY < uiHeight; uiY++ )
673  {
674#if DEBUG_STRING
675    if (bDebugPred || bDebugResi || bDebugReco)
676    {
677      ss << "###: ";
678    }
679
680    if (bDebugPred)
681    {
682      ss << " - pred: ";
683      for( UInt uiX = 0; uiX < uiWidth; uiX++ )
684      {
685        ss << pPred[ uiX ] << ", ";
686      }
687    }
688    if (bDebugResi)
689    {
690      ss << " - resi: ";
691    }
692#endif
693
694    for( UInt uiX = 0; uiX < uiWidth; uiX++ )
695    {
696#if DEBUG_STRING
697      if (bDebugResi)
698      {
699        ss << pResi[ uiX ] << ", ";
700      }
701#endif
702#if O0043_BEST_EFFORT_DECODING
703      pReco    [ uiX ] = ClipBD( rightShiftEvenRounding<Pel>(pPred[ uiX ] + pResi[ uiX ], bitDepthDelta), clipbd );
704#else
705      pReco    [ uiX ] = ClipBD( pPred[ uiX ] + pResi[ uiX ], clipbd );
706#endif
707      pRecIPred[ uiX ] = pReco[ uiX ];
708    }
709#if DEBUG_STRING
710    if (bDebugReco)
711    {
712      ss << " - reco: ";
713      for( UInt uiX = 0; uiX < uiWidth; uiX++ )
714      {
715        ss << pReco[ uiX ] << ", ";
716      }
717    }
718
719    if (bDebugPred || bDebugResi || bDebugReco)
720    {
721      ss << "\n";
722    }
723#endif
724    pPred     += uiStride;
725    pResi     += uiStride;
726    pReco     += uiStride;
727    pRecIPred += uiRecIPredStride;
728  }
729}
730
731
732Void
733TDecCu::xReconIntraQT( TComDataCU* pcCU, UInt uiDepth )
734{
735  if (pcCU->getIPCMFlag(0))
736  {
737    xReconPCM( pcCU, uiDepth );
738    return;
739  }
740  const UInt numChType = pcCU->getPic()->getChromaFormat()!=CHROMA_400 ? 2 : 1;
741  for (UInt chType=CHANNEL_TYPE_LUMA; chType<numChType; chType++)
742  {
743    const ChannelType chanType=ChannelType(chType);
744    const Bool NxNPUHas4Parts = ::isChroma(chanType) ? enable4ChromaPUsInIntraNxNCU(pcCU->getPic()->getChromaFormat()) : true;
745    const UInt uiInitTrDepth = ( pcCU->getPartitionSize(0) != SIZE_2Nx2N && NxNPUHas4Parts ? 1 : 0 );
746
747    TComTURecurse tuRecurseCU(pcCU, 0);
748    TComTURecurse tuRecurseWithPU(tuRecurseCU, false, (uiInitTrDepth==0)?TComTU::DONT_SPLIT : TComTU::QUAD_SPLIT);
749
750    do
751    {
752      xIntraRecQT( m_ppcYuvReco[uiDepth], m_ppcYuvReco[uiDepth], m_ppcYuvResi[uiDepth], chanType, tuRecurseWithPU );
753    } while (tuRecurseWithPU.nextSection(tuRecurseCU));
754  }
755}
756
757
758
759/** Function for deriving reconstructed PU/CU chroma samples with QTree structure
760 * \param pcRecoYuv pointer to reconstructed sample arrays
761 * \param pcPredYuv pointer to prediction sample arrays
762 * \param pcResiYuv pointer to residue sample arrays
763 * \param chType    texture channel type (luma/chroma)
764 * \param rTu       reference to transform data
765 *
766 \ This function derives reconstructed PU/CU chroma samples with QTree recursive structure
767 */
768
769Void
770TDecCu::xIntraRecQT(TComYuv*    pcRecoYuv,
771                    TComYuv*    pcPredYuv,
772                    TComYuv*    pcResiYuv,
773                    const ChannelType chType,
774                    TComTU     &rTu)
775{
776  UInt uiTrDepth    = rTu.GetTransformDepthRel();
777  TComDataCU *pcCU  = rTu.getCU();
778  UInt uiAbsPartIdx = rTu.GetAbsPartIdxTU();
779  UInt uiTrMode     = pcCU->getTransformIdx( uiAbsPartIdx );
780  if( uiTrMode == uiTrDepth )
781  {
782    if (isLuma(chType))
783    {
784      xIntraRecBlk( pcRecoYuv, pcPredYuv, pcResiYuv, COMPONENT_Y,  rTu );
785    }
786    else
787    {
788      const UInt numValidComp=getNumberValidComponents(rTu.GetChromaFormat());
789      for(UInt compID=COMPONENT_Cb; compID<numValidComp; compID++)
790      {
791        xIntraRecBlk( pcRecoYuv, pcPredYuv, pcResiYuv, ComponentID(compID), rTu );
792      }
793    }
794  }
795  else
796  {
797    TComTURecurse tuRecurseChild(rTu, false);
798    do
799    {
800      xIntraRecQT( pcRecoYuv, pcPredYuv, pcResiYuv, chType, tuRecurseChild );
801    } while (tuRecurseChild.nextSection(rTu));
802  }
803}
804
805Void TDecCu::xCopyToPic( TComDataCU* pcCU, TComPic* pcPic, UInt uiZorderIdx, UInt uiDepth )
806{
807  UInt uiCtuRsAddr = pcCU->getCtuRsAddr();
808
809  m_ppcYuvReco[uiDepth]->copyToPicYuv  ( pcPic->getPicYuvRec (), uiCtuRsAddr, uiZorderIdx );
810
811  return;
812}
813
814Void TDecCu::xDecodeInterTexture ( TComDataCU* pcCU, UInt uiDepth )
815{
816
817  TComTURecurse tuRecur(pcCU, 0, uiDepth);
818
819  for(UInt ch=0; ch<pcCU->getPic()->getNumberValidComponents(); ch++)
820  {
821    const ComponentID compID=ComponentID(ch);
822    DEBUG_STRING_OUTPUT(std::cout, debug_reorder_data_inter_token[compID])
823
824    m_pcTrQuant->invRecurTransformNxN ( compID, m_ppcYuvResi[uiDepth], tuRecur );
825  }
826
827  DEBUG_STRING_OUTPUT(std::cout, debug_reorder_data_inter_token[MAX_NUM_COMPONENT])
828}
829
830/** Function for deriving reconstructed luma/chroma samples of a PCM mode CU.
831 * \param pcCU pointer to current CU
832 * \param uiPartIdx part index
833 * \param piPCM pointer to PCM code arrays
834 * \param piReco pointer to reconstructed sample arrays
835 * \param uiStride stride of reconstructed sample arrays
836 * \param uiWidth CU width
837 * \param uiHeight CU height
838 * \param compID colour component ID
839 * \returns Void
840 */
841Void TDecCu::xDecodePCMTexture( TComDataCU* pcCU, const UInt uiPartIdx, const Pel *piPCM, Pel* piReco, const UInt uiStride, const UInt uiWidth, const UInt uiHeight, const ComponentID compID)
842{
843        Pel* piPicReco         = pcCU->getPic()->getPicYuvRec()->getAddr(compID, pcCU->getCtuRsAddr(), pcCU->getZorderIdxInCtu()+uiPartIdx);
844  const UInt uiPicStride       = pcCU->getPic()->getPicYuvRec()->getStride(compID);
845#if SVC_EXTENSION
846  const UInt uiPcmLeftShiftBit = pcCU->getSlice()->getBitDepth(toChannelType(compID)) - pcCU->getSlice()->getSPS()->getPCMBitDepth(toChannelType(compID));
847#else
848  const TComSPS &sps           = *(pcCU->getSlice()->getSPS());
849  const UInt uiPcmLeftShiftBit = sps.getBitDepth(toChannelType(compID)) - sps.getPCMBitDepth(toChannelType(compID));
850#endif
851
852  for(UInt uiY = 0; uiY < uiHeight; uiY++ )
853  {
854    for(UInt uiX = 0; uiX < uiWidth; uiX++ )
855    {
856      piReco[uiX] = (piPCM[uiX] << uiPcmLeftShiftBit);
857      piPicReco[uiX] = piReco[uiX];
858    }
859    piPCM += uiWidth;
860    piReco += uiStride;
861    piPicReco += uiPicStride;
862  }
863}
864
865/** Function for reconstructing a PCM mode CU.
866 * \param pcCU pointer to current CU
867 * \param uiDepth CU Depth
868 * \returns Void
869 */
870Void TDecCu::xReconPCM( TComDataCU* pcCU, UInt uiDepth )
871{
872  const UInt maxCuWidth     = pcCU->getSlice()->getSPS()->getMaxCUWidth();
873  const UInt maxCuHeight    = pcCU->getSlice()->getSPS()->getMaxCUHeight();
874  for (UInt ch=0; ch < pcCU->getPic()->getNumberValidComponents(); ch++)
875  {
876    const ComponentID compID = ComponentID(ch);
877    const UInt width  = (maxCuWidth >>(uiDepth+m_ppcYuvResi[uiDepth]->getComponentScaleX(compID)));
878    const UInt height = (maxCuHeight>>(uiDepth+m_ppcYuvResi[uiDepth]->getComponentScaleY(compID)));
879    const UInt stride = m_ppcYuvResi[uiDepth]->getStride(compID);
880    Pel * pPCMChannel = pcCU->getPCMSample(compID);
881    Pel * pRecChannel = m_ppcYuvReco[uiDepth]->getAddr(compID);
882    xDecodePCMTexture( pcCU, 0, pPCMChannel, pRecChannel, stride, width, height, compID );
883  }
884}
885
886/** Function for filling the PCM buffer of a CU using its reconstructed sample array
887 * \param pCU   pointer to current CU
888 * \param depth CU Depth
889 */
890Void TDecCu::xFillPCMBuffer(TComDataCU* pCU, UInt depth)
891{
892  const ChromaFormat format = pCU->getPic()->getChromaFormat();
893  const UInt numValidComp   = getNumberValidComponents(format);
894  const UInt maxCuWidth     = pCU->getSlice()->getSPS()->getMaxCUWidth();
895  const UInt maxCuHeight    = pCU->getSlice()->getSPS()->getMaxCUHeight();
896
897  for (UInt componentIndex = 0; componentIndex < numValidComp; componentIndex++)
898  {
899    const ComponentID component = ComponentID(componentIndex);
900
901    const UInt width  = maxCuWidth  >> (depth + getComponentScaleX(component, format));
902    const UInt height = maxCuHeight >> (depth + getComponentScaleY(component, format));
903
904    Pel *source      = m_ppcYuvReco[depth]->getAddr(component, 0, width);
905    Pel *destination = pCU->getPCMSample(component);
906
907    const UInt sourceStride = m_ppcYuvReco[depth]->getStride(component);
908
909    for (Int line = 0; line < height; line++)
910    {
911      for (Int column = 0; column < width; column++)
912      {
913        destination[column] = source[column];
914      }
915
916      source      += sourceStride;
917      destination += width;
918    }
919  }
920}
921
922//! \}
Note: See TracBrowser for help on using the repository browser.