source: 3DVCSoftware/branches/HTM-4.0.1-VSP-dev0/source/Lib/TLibCommon/TComResidualGenerator.cpp

Last change on this file was 213, checked in by mitsubishi-htm, 12 years ago

A final release, as planned

  • Migrate to HTM 5.1
  • For VC project files, only VC9 file is updated
  • To be used as an additional anchor for CE1.h for 3rd JCTVC meeting at Geneva
  • Property svn:eol-style set to native
File size: 25.4 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-2011, 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 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
35
36/** \file     TComResidualGenerator.cpp
37    \brief    residual picture generator class
38*/
39
40
41
42#include "CommonDef.h"
43#include "TComResidualGenerator.h"
44
45
46#if HHI_INTER_VIEW_RESIDUAL_PRED
47
48
49TComResidualGenerator::TComResidualGenerator()
50{
51  m_bCreated            = false;
52  m_bInit               = false;
53  m_bDecoder            = false;
54  m_pcTrQuant           = 0;
55  m_pcDepthMapGenerator = 0;
56  m_pcSPSAccess         = 0;
57  m_pcAUPicAccess       = 0;
58  m_uiMaxDepth          = 0;
59  m_uiOrgDepthBitDepth  = 0;
60  m_ppcYuvTmp           = 0;
61  m_ppcYuv              = 0;
62  m_ppcCU               = 0;
63}
64
65TComResidualGenerator::~TComResidualGenerator()
66{
67  destroy ();
68  uninit  ();
69}
70
71Void
72TComResidualGenerator::create( Bool bDecoder, UInt uiPicWidth, UInt uiPicHeight, UInt uiMaxCUDepth, UInt uiMaxCUWidth, UInt uiMaxCUHeight, UInt uiOrgBitDepth )
73{
74  destroy();
75  m_bDecoder            = bDecoder;
76  m_uiMaxDepth          = uiMaxCUDepth;
77  m_uiOrgDepthBitDepth  = uiOrgBitDepth;
78  m_ppcYuvTmp           = new TComYuv*    [ NUM_TMP_YUV_BUFFERS ];
79  m_ppcYuv              = new TComYuv*    [ m_uiMaxDepth ];
80  m_ppcCU               = new TComDataCU* [ m_uiMaxDepth ];
81  for( UInt uiIdx = 0; uiIdx < NUM_TMP_YUV_BUFFERS; uiIdx++ )
82  {
83    m_ppcYuvTmp[uiIdx]  = new TComYuv;    m_ppcYuvTmp[uiIdx]->create( uiMaxCUWidth, uiMaxCUHeight );
84  }
85  for( UInt uiDepth = 0; uiDepth < m_uiMaxDepth; uiDepth++ )
86  {
87    UInt  uiNumPart = 1 << ( ( m_uiMaxDepth - uiDepth ) << 1 );
88    UInt  uiWidth   = uiMaxCUWidth  >> uiDepth;
89    UInt  uiHeight  = uiMaxCUHeight >> uiDepth;
90
91    m_ppcYuv[ uiDepth ] = new TComYuv;    m_ppcYuv[ uiDepth ]->create(            uiWidth, uiHeight                                           );
92    m_ppcCU [ uiDepth ] = new TComDataCU; m_ppcCU [ uiDepth ]->create( uiNumPart, uiWidth, uiHeight, true, uiMaxCUWidth >> (uiMaxCUDepth - 1) );
93  }
94  m_cTmpPic.create( uiPicWidth, uiPicHeight, uiMaxCUWidth, uiMaxCUHeight, uiMaxCUDepth );
95  m_bCreated            = true;
96}
97
98Void
99TComResidualGenerator::destroy()
100{
101  if( m_bCreated )
102  {
103    m_bCreated            = false;
104    for( UInt uiIdx = 0; uiIdx < NUM_TMP_YUV_BUFFERS; uiIdx++ )
105    {
106      m_ppcYuvTmp[uiIdx]->destroy();  delete m_ppcYuvTmp[uiIdx]; m_ppcYuvTmp[uiIdx] = 0;
107    }
108    for( UInt uiDepth = 0; uiDepth < m_uiMaxDepth; uiDepth++ )
109    {
110      m_ppcYuv[ uiDepth ]->destroy(); delete m_ppcYuv[ uiDepth ]; m_ppcYuv[ uiDepth ] = 0;
111      m_ppcCU [ uiDepth ]->destroy(); delete m_ppcCU [ uiDepth ]; m_ppcCU [ uiDepth ] = 0;
112    }
113    delete [] m_ppcYuvTmp;  m_ppcYuvTmp = 0;
114    delete [] m_ppcYuv;     m_ppcYuv = 0;
115    delete [] m_ppcCU;      m_ppcCU  = 0;
116    m_cTmpPic.destroy();
117    m_uiMaxDepth          = 0;
118    m_uiOrgDepthBitDepth  = 0;
119    m_bDecoder            = false;
120  }
121}
122
123Void
124TComResidualGenerator::init( TComTrQuant* pcTrQuant, TComDepthMapGenerator* pcDepthMapGenerator )
125{
126  AOF( pcTrQuant           );
127  AOF( pcDepthMapGenerator );
128  AOF( pcDepthMapGenerator->getSPSAccess  () );
129  AOF( pcDepthMapGenerator->getAUPicAccess() );
130  uninit();
131  m_pcTrQuant           = pcTrQuant;
132  m_pcDepthMapGenerator = pcDepthMapGenerator;
133  m_pcSPSAccess         = pcDepthMapGenerator->getSPSAccess  ();
134  m_pcAUPicAccess       = pcDepthMapGenerator->getAUPicAccess();
135  m_bInit               = true;
136}
137
138Void
139TComResidualGenerator::uninit()
140{
141  if( m_bInit )
142  {
143    m_bInit               = false;
144    m_pcTrQuant           = 0;
145    m_pcDepthMapGenerator = 0;
146    m_pcSPSAccess         = 0;
147    m_pcAUPicAccess       = 0;
148  }
149}
150
151
152
153Void 
154TComResidualGenerator::initViewComponent( TComPic* pcPic )
155{
156  AOF  ( m_bCreated && m_bInit );
157  AOF  ( pcPic );
158
159  // set pointer in SPS
160  pcPic->getSPS()->setResidualGenerator( this );
161  ROFVS( pcPic->getSPS()->getMultiviewResPredMode() );
162
163#if OUTPUT_RESIDUAL_PICTURES
164  // dump reconstructed residual picture for first AU
165  if( pcPic->getPOC() == 0 )
166  {
167    AOF( pcPic->getSPS()->getViewId() );
168    UInt       uiBaseViewId = pcPic->getSPS()->getViewId() - 1;
169    TComPic*   pcBasePic    = m_pcAUPicAccess->getPic( uiBaseViewId );
170    AOF( pcBasePic );
171    Char       acFilenameBase[1024];
172    ::sprintf( acFilenameBase,  "RecResidual_%s", ( m_bDecoder ? "Dec" : "Enc" ) );
173    xDumpResidual( pcBasePic, acFilenameBase );
174  }
175#endif
176}
177
178
179
180Void
181TComResidualGenerator::setRecResidualPic( TComPic* pcPic )
182{
183  AOF  ( m_bCreated && m_bInit );
184  AOF  ( pcPic );
185
186  if( pcPic->getPOC() == 0 )
187  {
188    if( pcPic->getSPS()->getViewId() == 0 || m_pcSPSAccess->getResPrd() != 0 )
189    {
190      // set residual picture
191      AOT( pcPic->getResidual() );
192      if( !pcPic->getResidual() )
193      {
194        pcPic->addResidualBuffer();
195      }
196      xSetRecResidualPic( pcPic );
197    }
198  }
199  else
200  {
201    if( m_pcSPSAccess->getResPrd() != 0 && pcPic->getSPS()->getViewId() < m_pcAUPicAccess->getMaxVId() )
202    {
203      // set residual picture
204      AOT( pcPic->getResidual() );
205      if( !pcPic->getResidual() )
206      {
207        pcPic->addResidualBuffer();
208      }
209      xSetRecResidualPic( pcPic );
210
211#if OUTPUT_RESIDUAL_PICTURES
212      // dump reconstructed residual picture
213      Char acFilenameBase[1024];
214      ::sprintf( acFilenameBase,  "RecResidual_%s", ( m_bDecoder ? "Dec" : "Enc" ) );
215      xDumpResidual( pcPic, acFilenameBase );
216#endif
217    }
218  }
219}
220
221#if QC_MULTI_DIS_CAN_A0097
222Bool
223TComResidualGenerator::getResidualSamples( TComDataCU* pcCU, UInt uiPUIdx, TComYuv* pcYuv, Int iDisp
224#if QC_SIMPLIFIEDIVRP_M24938
225  , Bool bRecon
226#endif
227 ) 
228#else
229Bool
230TComResidualGenerator::getResidualSamples( TComDataCU* pcCU, UInt uiPUIdx, TComYuv* pcYuv
231#if QC_SIMPLIFIEDIVRP_M24938
232  , Bool bRecon
233#endif
234  )
235#endif
236{
237  AOF(  pcCU );
238  UInt  uiPartAddr;
239  Int   iBlkWidth, iBlkHeight, iXPos, iYPos;
240  AOT(  uiPUIdx );
241  uiPartAddr  = 0;
242  iBlkWidth   = pcCU->getWidth  ( 0 );
243  iBlkHeight  = pcCU->getHeight ( 0 );
244  pcCU->getPic()->getPicYuvRec()->getTopLeftSamplePos( pcCU->getAddr(), pcCU->getZorderIdxInCU() + uiPartAddr, iXPos, iYPos );
245#if QC_MULTI_DIS_CAN_A0097
246  return getResidualSamples( pcCU->getPic(), (UInt)iXPos, (UInt)iYPos, (UInt)iBlkWidth, (UInt)iBlkHeight, pcYuv, iDisp
247#if QC_SIMPLIFIEDIVRP_M24938
248    , bRecon
249#endif
250  );
251#else
252  return getResidualSamples( pcCU->getPic(), (UInt)iXPos, (UInt)iYPos, (UInt)iBlkWidth, (UInt)iBlkHeight, pcYuv
253#if QC_SIMPLIFIEDIVRP_M24938
254    , bRecon
255#endif
256    );
257#endif
258}
259 
260#if QC_MULTI_DIS_CAN_A0097
261Bool
262TComResidualGenerator::getResidualSamples( TComPic* pcPic, UInt uiXPos, UInt uiYPos, UInt uiBlkWidth, UInt uiBlkHeight, TComYuv* pcYuv, Int iDisp
263#if QC_SIMPLIFIEDIVRP_M24938
264  , Bool bRecon
265#endif
266)
267#else
268Bool
269TComResidualGenerator::getResidualSamples( TComPic* pcPic, UInt uiXPos, UInt uiYPos, UInt uiBlkWidth, UInt uiBlkHeight, TComYuv* pcYuv
270#if QC_SIMPLIFIEDIVRP_M24938
271  , Bool bRecon
272#endif
273  )
274#endif
275{
276  UInt  uiBaseViewId  = m_pcDepthMapGenerator->getBaseViewId( 0 );
277
278  if( !pcYuv )
279  {
280    pcYuv = m_ppcYuvTmp[1];
281  }
282#if QC_SIMPLIFIEDIVRP_M24938
283  UInt uiXPosInRefView = uiXPos , uiYPosInRefView = uiYPos;
284#endif
285#if QC_MULTI_DIS_CAN_A0097
286  xSetPredResidualBlock( pcPic, uiBaseViewId, uiXPos, uiYPos, uiBlkWidth, uiBlkHeight, pcYuv, iDisp
287#if QC_SIMPLIFIEDIVRP_M24938
288    , &uiXPosInRefView , &uiYPosInRefView , bRecon
289#endif 
290  );
291#else
292  xSetPredResidualBlock( pcPic, uiBaseViewId, uiXPos, uiYPos, uiBlkWidth, uiBlkHeight, pcYuv
293#if QC_SIMPLIFIEDIVRP_M24938
294    , &uiXPosInRefView , &uiYPosInRefView , bRecon
295#endif
296    );
297#endif
298#if QC_SIMPLIFIEDIVRP_M24938
299  return xIsNonZeroByCBF( uiBaseViewId , uiXPosInRefView , uiYPosInRefView , uiBlkWidth , uiBlkHeight );
300#else
301  return xIsNonZero( pcYuv, uiBlkWidth, uiBlkHeight );
302#endif
303}
304
305#if QC_SIMPLIFIEDIVRP_M24938
306Bool TComResidualGenerator::xIsNonZeroByCBF( UInt uiBaseViewId , UInt uiXPos , UInt uiYPos, UInt uiBlkWidth , UInt uiBlkHeight )
307{
308  TComPic* pcBasePic   = m_pcAUPicAccess->getPic( uiBaseViewId );
309  const Int nMaxPicX = pcBasePic->getSPS()->getPicWidthInLumaSamples() - 1;
310  const Int nMaxPicY = pcBasePic->getSPS()->getPicHeightInLumaSamples() - 1;
311  for( UInt y = 0 ; y < uiBlkHeight ; y +=4 )
312  {
313    for( UInt x = 0 ; x <= uiBlkWidth ; x += 4 )
314    {      // to cover both the mapped CU and the 1-pixel-right-shifted mapped CU
315      Int iCuAddr = 0, iAbsZorderIdx = 0;
316      pcBasePic->getPicYuvRec()->getCUAddrAndPartIdx( Min( uiXPos + x , nMaxPicX ) , Min( uiYPos + y , nMaxPicY ) , iCuAddr , iAbsZorderIdx );
317      TComDataCU *pCUInRefView = pcBasePic->getCU( iCuAddr );
318      if( pCUInRefView->isIntra( iAbsZorderIdx ) )
319        // no inter-view residual pred from a intra CU
320        continue;
321      UInt uiTempTrDepth = pCUInRefView->getTransformIdx( iAbsZorderIdx );
322      if( pCUInRefView->getCbf( iAbsZorderIdx , TEXT_LUMA , uiTempTrDepth )
323        || pCUInRefView->getCbf( iAbsZorderIdx , TEXT_CHROMA_U , uiTempTrDepth )
324        || pCUInRefView->getCbf( iAbsZorderIdx , TEXT_CHROMA_V , uiTempTrDepth ) )
325        return( true );
326}
327  }
328
329  return( false );
330}
331#endif
332
333
334
335Void
336TComResidualGenerator::xSetRecResidualPic( TComPic* pcPic )
337{
338  AOF( pcPic );
339  AOF( pcPic->getResidual() );
340  for( UInt uiCUAddr = 0; uiCUAddr < pcPic->getPicSym()->getNumberOfCUsInFrame(); uiCUAddr++ )
341  {
342    TComDataCU* pcCU = pcPic->getCU( uiCUAddr );
343    xSetRecResidualCU( pcCU, 0, 0 );
344  }
345  pcPic->getResidual()->setBorderExtension( false );
346  pcPic->getResidual()->extendPicBorder   ();
347}
348
349
350Void
351TComResidualGenerator::xSetRecResidualCU( TComDataCU* pcCU, UInt uiDepth, UInt uiAbsPartIdx )
352{
353  UInt  uiLPelX   = pcCU->getCUPelX() + g_auiRasterToPelX[ g_auiZscanToRaster[ uiAbsPartIdx ] ];
354  UInt  uiTPelY   = pcCU->getCUPelY() + g_auiRasterToPelY[ g_auiZscanToRaster[ uiAbsPartIdx ] ];
355  UInt  uiRPelX   = uiLPelX           + ( g_uiMaxCUWidth  >> uiDepth ) - 1;
356  UInt  uiBPelY   = uiTPelY           + ( g_uiMaxCUHeight >> uiDepth ) - 1;
357  Bool  bBoundary = ( uiRPelX >= pcCU->getSlice()->getSPS()->getPicWidthInLumaSamples() || uiBPelY >= pcCU->getSlice()->getSPS()->getPicHeightInLumaSamples() );
358  Bool  bSplit    = ( ( uiDepth < pcCU->getDepth( uiAbsPartIdx ) && uiDepth < ( g_uiMaxCUDepth - g_uiAddCUDepth ) ) || bBoundary );
359  if(   bSplit )
360  {
361    UInt uiQNumParts = ( pcCU->getPic()->getNumPartInCU() >> ( uiDepth << 1 ) ) >> 2;
362    for ( UInt uiPartUnitIdx = 0; uiPartUnitIdx < 4; uiPartUnitIdx++, uiAbsPartIdx += uiQNumParts )
363    {
364      uiLPelX       = pcCU->getCUPelX() + g_auiRasterToPelX[ g_auiZscanToRaster[ uiAbsPartIdx ] ];
365      uiTPelY       = pcCU->getCUPelY() + g_auiRasterToPelY[ g_auiZscanToRaster[ uiAbsPartIdx ] ];
366      Bool  bInside = ( uiLPelX < pcCU->getSlice()->getSPS()->getPicWidthInLumaSamples() && uiTPelY < pcCU->getSlice()->getSPS()->getPicHeightInLumaSamples() );
367      if(   bInside )
368      {
369        xSetRecResidualCU( pcCU, uiDepth + 1, uiAbsPartIdx );
370      }
371    }
372    return;
373  }
374
375  //--- set sub-CU and sub-residual ---
376  TComDataCU* pcSubCU   = m_ppcCU [ uiDepth ];
377  TComYuv*    pcSubRes  = m_ppcYuv[ uiDepth ];
378  TComPicYuv* pcPicRes  = pcCU->getPic()->getResidual();
379  UInt        uiCUAddr  = pcCU->getAddr();
380  pcSubCU->copySubCU( pcCU, uiAbsPartIdx, uiDepth );
381
382  //--- set residual ---
383  switch( pcSubCU->getPredictionMode( 0 ) )
384  {
385  case MODE_INTRA:
386    xSetRecResidualIntraCU( pcSubCU, pcSubRes );
387    break;
388  case MODE_SKIP:
389  case MODE_INTER:
390    xSetRecResidualInterCU( pcSubCU, pcSubRes );
391    break;
392#if FORCE_REF_VSP==1
393  case MODE_SYNTH:
394    xSetRecResidualIntraCU( pcSubCU, pcSubRes ); //MayBe it should be seperate function
395    break;
396#endif
397  default:
398    AOT( true );
399    break;
400  }
401
402  //--- copy sub-residual ---
403  pcSubRes->copyToPicYuv( pcPicRes, uiCUAddr, uiAbsPartIdx );
404}
405
406
407Void 
408TComResidualGenerator::xSetRecResidualIntraCU( TComDataCU* pcCU, TComYuv* pcCUResidual )
409{ 
410  //===== set residual to zero for entire CU =====
411  xClearResidual( pcCUResidual, 0, pcCU->getWidth( 0 ), pcCU->getHeight( 0 ) );
412}
413
414
415Void
416TComResidualGenerator::xSetRecResidualInterCU( TComDataCU* pcCU, TComYuv* pcCUResidual )
417{
418  //===== reconstruct residual from coded transform coefficient levels =====
419  xClearResidual( pcCUResidual, 0, pcCU->getWidth( 0 ), pcCU->getHeight( 0 ) );
420  // luma
421  UInt    uiWidth   = pcCU->getWidth  ( 0 );
422  UInt    uiHeight  = pcCU->getHeight ( 0 );
423  TCoeff* piCoeff   = pcCU->getCoeffY ();
424  Pel*    pRes      = pcCUResidual->getLumaAddr();
425  UInt    uiLumaTrMode, uiChromaTrMode;
426#if LG_RESTRICTEDRESPRED_M24766
427  Int     iPUPredResiShift[4];
428#endif
429  pcCU->convertTransIdx             ( 0, pcCU->getTransformIdx( 0 ), uiLumaTrMode, uiChromaTrMode );
430#if H0736_AVC_STYLE_QP_RANGE
431    m_pcTrQuant->setQPforQuant      ( pcCU->getQP( 0 ), !pcCU->getSlice()->getDepth(), pcCU->getSlice()->getSliceType(), TEXT_LUMA, pcCU->getSlice()->getSPS()->getQpBDOffsetY(), 0 );
432#else
433    m_pcTrQuant->setQPforQuant      ( pcCU->getQP( 0 ), !pcCU->getSlice()->getDepth(), pcCU->getSlice()->getSliceType(), TEXT_LUMA, 0 );
434#endif
435  m_pcTrQuant->invRecurTransformNxN ( pcCU, 0, TEXT_LUMA, pRes, 0, pcCUResidual->getStride(), uiWidth, uiHeight, uiLumaTrMode, 0, piCoeff );
436  // chroma Cb
437  uiWidth   >>= 1;
438  uiHeight  >>= 1;
439  piCoeff     = pcCU->getCoeffCb();
440  pRes        = pcCUResidual->getCbAddr();
441#if H0736_AVC_STYLE_QP_RANGE
442    m_pcTrQuant->setQPforQuant      ( pcCU->getQP( 0 ), !pcCU->getSlice()->getDepth(), pcCU->getSlice()->getSliceType(), TEXT_CHROMA, pcCU->getSlice()->getSPS()->getQpBDOffsetC(), pcCU->getSlice()->getPPS()->getChromaQpOffset() );
443#else
444    m_pcTrQuant->setQPforQuant      ( pcCU->getQP( 0 ), !pcCU->getSlice()->getDepth(), pcCU->getSlice()->getSliceType(), TEXT_CHROMA, pcCU->getSlice()->getSPS()->getQpBDOffsetC() );
445#endif
446  m_pcTrQuant->invRecurTransformNxN ( pcCU, 0, TEXT_CHROMA_U, pRes, 0, pcCUResidual->getCStride(), uiWidth, uiHeight, uiChromaTrMode, 0, piCoeff );
447  // chroma Cr
448  piCoeff     = pcCU->getCoeffCr();
449  pRes        = pcCUResidual->getCrAddr();
450  m_pcTrQuant->invRecurTransformNxN ( pcCU, 0, TEXT_CHROMA_V, pRes, 0, pcCUResidual->getCStride(), uiWidth, uiHeight, uiChromaTrMode, 0, piCoeff );
451
452  if( pcCU->getResPredFlag( 0 ) )
453  {
454    AOF( pcCU->getResPredAvail( 0 ) );
455    Bool bOK = pcCU->getResidualSamples( 0, 
456#if QC_SIMPLIFIEDIVRP_M24938
457      true,
458#endif
459      m_ppcYuvTmp[0] );
460    AOF( bOK );
461#if LG_RESTRICTEDRESPRED_M24766
462    pcCU->getPUResiPredShift(iPUPredResiShift, 0);
463    pcCUResidual->add(iPUPredResiShift, pcCU->getPartitionSize(0), m_ppcYuvTmp[0], pcCU->getWidth( 0 ), pcCU->getHeight( 0 ) );
464#else
465    pcCUResidual->add( m_ppcYuvTmp[0], pcCU->getWidth( 0 ), pcCU->getHeight( 0 ) );
466#endif
467  }
468
469  //===== clear inter-view predicted parts =====
470  for( UInt uiPartIdx = 0; uiPartIdx < pcCU->getNumPartInter(); uiPartIdx++ )
471  {
472    xClearIntViewResidual( pcCU, pcCUResidual, uiPartIdx );
473  }
474}
475
476
477Void
478TComResidualGenerator::xClearIntViewResidual( TComDataCU* pcCU, TComYuv* pcCUResidual, UInt uiPartIdx )
479{
480  UInt uiCurrViewId = pcCU->getSlice()->getSPS()->getViewId();
481  if(  uiCurrViewId )
482  {
483    Int             iWidth;
484    Int             iHeight;
485    UInt            uiAbsPartIdx;
486    pcCU->getPartIndexAndSize( uiPartIdx, uiAbsPartIdx, iWidth, iHeight );
487    TComCUMvField*  aiCurrMvField[2]  = { pcCU->getCUMvField( REF_PIC_LIST_0 ),        pcCU->getCUMvField( REF_PIC_LIST_1 )        };
488    Int             aiCurrRefIdx [2]  = { aiCurrMvField[0]->getRefIdx( uiAbsPartIdx ), aiCurrMvField[1]->getRefIdx( uiAbsPartIdx ) };
489    Bool            abCurrIntView[2]  = { aiCurrRefIdx[0] >= 0 && pcCU->getSlice()->getRefPic( REF_PIC_LIST_0, aiCurrRefIdx[0] )->getSPS()->getViewId() != uiCurrViewId,
490                                          aiCurrRefIdx[1] >= 0 && pcCU->getSlice()->getRefPic( REF_PIC_LIST_1, aiCurrRefIdx[1] )->getSPS()->getViewId() != uiCurrViewId };
491    Bool            bUsesInterViewPrd = ( abCurrIntView[0] || abCurrIntView[1] );
492    if( bUsesInterViewPrd )
493    { //===== set resiudal to zero =====
494      xClearResidual( pcCUResidual, uiAbsPartIdx, (UInt)iWidth, (UInt)iHeight );
495    }
496  }
497}
498
499
500Void 
501TComResidualGenerator::xClearResidual( TComYuv* pcCUResidual, UInt uiAbsPartIdx, UInt uiWidth, UInt uiHeight ) 
502{
503  // luma
504  Pel* pSamplesY = pcCUResidual->getLumaAddr( uiAbsPartIdx );
505  Int  iStrideY  = pcCUResidual->getStride  ();
506  for( UInt  uiY = 0; uiY < uiHeight; uiY++, pSamplesY += iStrideY )
507  {
508    ::memset( pSamplesY, 0x00, uiWidth * sizeof( Pel ) );
509  }
510  // chroma
511  uiWidth      >>= 1;
512  uiHeight     >>= 1;
513  Pel* pSamplesU = pcCUResidual->getCbAddr ( uiAbsPartIdx );
514  Pel* pSamplesV = pcCUResidual->getCrAddr ( uiAbsPartIdx );
515  Int  iStrideC  = pcCUResidual->getCStride();
516  for( UInt  uiY = 0; uiY < uiHeight; uiY++, pSamplesU += iStrideC, pSamplesV += iStrideC )
517  {
518    ::memset( pSamplesU, 0x00, uiWidth * sizeof( Pel ) );
519    ::memset( pSamplesV, 0x00, uiWidth * sizeof( Pel ) );
520  }
521}
522
523
524#if QC_MULTI_DIS_CAN_A0097
525Void 
526TComResidualGenerator::xSetPredResidualBlock( TComPic* pcPic, UInt uiBaseViewId, UInt uiXPos, UInt uiYPos, UInt uiBlkWidth, UInt uiBlkHeight, TComYuv* pcYuv, Int iDisp
527#if QC_SIMPLIFIEDIVRP_M24938
528  , UInt * puiXPosInRefView , UInt * puiYPosInRefView , Bool bRecon
529#endif
530)
531#else
532Void 
533TComResidualGenerator::xSetPredResidualBlock( TComPic* pcPic, UInt uiBaseViewId, UInt uiXPos, UInt uiYPos, UInt uiBlkWidth, UInt uiBlkHeight, TComYuv* pcYuv
534#if QC_SIMPLIFIEDIVRP_M24938
535  , UInt * puiXPosInRefView , UInt * puiYPosInRefView , Bool bRecon
536#endif
537  )
538#endif
539{
540  //===== set and check some basic variables =====
541  AOF(          pcYuv     );
542  TComPic*      pcBasePic   = m_pcAUPicAccess->getPic( uiBaseViewId );
543  AOF(          pcPic     );
544  AOF(          pcBasePic );
545  TComPicYuv*   pcBaseRes   = pcBasePic->getResidual    ();
546  TComPicYuv*   pcPdmMap    = pcPic    ->getPredDepthMap();
547  AOF(          pcBaseRes );
548  AOF(          pcPdmMap  );
549  UInt          uiPicWidth  = pcBaseRes->getWidth ();
550  UInt          uiPicHeight = pcBaseRes->getHeight();
551  AOT( uiXPos + uiBlkWidth  > uiPicWidth  );
552  AOT( uiYPos + uiBlkHeight > uiPicHeight );
553
554  //===== get disparity =====
555#if QC_MULTI_DIS_CAN_A0097
556  Int iDisparity = iDisp;
557#else
558  Int           iMidPosX    = Int( uiXPos + ( ( uiBlkWidth  - 1 ) >> 1 ) ) >> m_pcDepthMapGenerator->getSubSampExpX();
559  Int           iMidPosY    = Int( uiYPos + ( ( uiBlkHeight - 1 ) >> 1 ) ) >> m_pcDepthMapGenerator->getSubSampExpY();
560  Int           iDisparity  = m_pcDepthMapGenerator->getDisparity( pcPic, iMidPosX, iMidPosY, uiBaseViewId );
561#endif
562  //===== compensate luma =====
563  Int           iYWidth     = Int( uiBlkWidth  );
564  Int           iYHeight    = Int( uiBlkHeight );
565  Int           iYWeight1   = ( iDisparity & 3 );
566  Int           iYWeight0   = 4 - iYWeight1;
567  Int           iYRefPosX0  = Int( uiXPos )     + ( iDisparity >> 2 );
568  Int           iYRefPosX1  = iYRefPosX0        + 1;
569  Int           iYMaxPosX   = Int( uiPicWidth ) - 1;
570  Int           iSrcStrideY = pcBaseRes->getStride   ();
571  Int           iDesStrideY = pcYuv    ->getStride   ();
572  Pel*          pSrcSamplesY= pcBaseRes->getLumaAddr ( 0 ) + uiYPos * iSrcStrideY;
573  Pel*          pDesSamplesY= pcYuv    ->getLumaAddr ();
574
575#if QC_SIMPLIFIEDIVRP_M24938
576  if( puiXPosInRefView != NULL )
577    *puiXPosInRefView = Max( 0, Min( iYMaxPosX, iYRefPosX0 ) );
578  if( puiYPosInRefView != NULL )
579    *puiYPosInRefView = uiYPos;
580  if( bRecon == false )
581    return;
582#endif
583
584  for(   Int iY = 0; iY < iYHeight; iY++, pSrcSamplesY += iSrcStrideY, pDesSamplesY += iDesStrideY )
585  {
586    for( Int iX = 0; iX < iYWidth; iX++ )
587    {
588      Int iXPic0        = Max( 0, Min( iYMaxPosX, iYRefPosX0 + iX ) );
589      Int iXPic1        = Max( 0, Min( iYMaxPosX, iYRefPosX1 + iX ) );
590      pDesSamplesY[iX]  = ( iYWeight0 * pSrcSamplesY[iXPic0] + iYWeight1 * pSrcSamplesY[iXPic1] + 2 ) >> 2;
591    }
592  }
593
594  //===== compensate chroma =====
595  Int           iCWidth     = Int( uiBlkWidth  >> 1 );
596  Int           iCHeight    = Int( uiBlkHeight >> 1 );
597  Int           iCWeight1   = ( iDisparity & 7 );
598  Int           iCWeight0   = 8 - iCWeight1;
599  Int           iCRefPosX0  = Int( uiXPos     >> 1 ) + ( iDisparity >> 3 );
600  Int           iCRefPosX1  = iCRefPosX0             + 1;
601  Int           iCMaxPosX   = Int( uiPicWidth >> 1 ) - 1;
602  Int           iSrcStrideC = pcBaseRes->getCStride();
603  Int           iDesStrideC = pcYuv    ->getCStride();
604  Pel*          pSrcSamplesU= pcBaseRes->getCbAddr ( 0 ) + ( uiYPos >> 1 ) * iSrcStrideC;
605  Pel*          pSrcSamplesV= pcBaseRes->getCrAddr ( 0 ) + ( uiYPos >> 1 ) * iSrcStrideC;
606  Pel*          pDesSamplesU= pcYuv    ->getCbAddr ();
607  Pel*          pDesSamplesV= pcYuv    ->getCrAddr ();
608  for(   Int iY = 0; iY < iCHeight; iY++, pSrcSamplesU += iSrcStrideC, pDesSamplesU += iDesStrideC,
609                                          pSrcSamplesV += iSrcStrideC, pDesSamplesV += iDesStrideC )
610  {
611    for( Int iX = 0; iX < iCWidth; iX++ )
612    {
613      Int iXPic0        = Max( 0, Min( iCMaxPosX, iCRefPosX0 + iX ) );
614      Int iXPic1        = Max( 0, Min( iCMaxPosX, iCRefPosX1 + iX ) );
615      pDesSamplesU[iX]  = ( iCWeight0 * pSrcSamplesU[iXPic0] + iCWeight1 * pSrcSamplesU[iXPic1] + 4 ) >> 3;
616      pDesSamplesV[iX]  = ( iCWeight0 * pSrcSamplesV[iXPic0] + iCWeight1 * pSrcSamplesV[iXPic1] + 4 ) >> 3;
617    }
618  }
619}
620
621
622Bool
623TComResidualGenerator::xIsNonZero( TComYuv* pcYuv, UInt uiBlkWidth, UInt uiBlkHeight )
624{
625  AOF( pcYuv );
626  //===== check luma =====
627  Int   iYWidth   = Int( uiBlkWidth  );
628  Int   iYHeight  = Int( uiBlkHeight );
629  Int   iStrideY  = pcYuv->getStride   ();
630  Pel*  pSamplesY = pcYuv->getLumaAddr ();
631  for(   Int iY = 0; iY < iYHeight; iY++, pSamplesY += iStrideY )
632  {
633    for( Int iX = 0; iX < iYWidth; iX++ )
634    {
635      ROTRS( pSamplesY[iX], true );
636    }
637  }
638  //===== compensate chroma =====
639  Int   iCWidth   = Int( uiBlkWidth  >> 1 );
640  Int   iCHeight  = Int( uiBlkHeight >> 1 );
641  Int   iStrideC  = pcYuv->getCStride();
642  Pel*  pSamplesU = pcYuv->getCbAddr ();
643  Pel*  pSamplesV = pcYuv->getCrAddr ();
644  for(   Int iY = 0; iY < iCHeight; iY++, pSamplesU += iStrideC, pSamplesV += iStrideC )
645  {
646    for( Int iX = 0; iX < iCWidth; iX++ )
647    {
648      ROTRS( pSamplesU[iX], true );
649      ROTRS( pSamplesV[iX], true );
650    }
651  }
652  return false;
653}
654
655
656
657Void
658TComResidualGenerator::xDumpResidual( TComPic* pcPic, char* pFilenameBase )
659{
660  AOF( m_bCreated && m_bInit );
661  AOF( pcPic );
662  AOF( pFilenameBase );
663  AOF( m_uiOrgDepthBitDepth == 8 + g_uiBitIncrement );
664
665  // convert to output format (just clip high absolute values, since they are very unlikely)
666  Int         iMin        = 0;
667  Int         iMax        = ( 1 << m_uiOrgDepthBitDepth )  - 1;
668  Int         iMid        = ( 1 << m_uiOrgDepthBitDepth ) >> 1;
669  UInt        uiViewId    = pcPic   ->getSPS      ()->getViewId();
670  TComPicYuv* pcPicYuv    = pcPic   ->getResidual ();
671  // luma
672  Int         iWidth      = pcPicYuv->getWidth    ();
673  Int         iHeight     = pcPicYuv->getHeight   ();
674  Int         iSrcStride  = pcPicYuv->getStride   ();
675  Int         iDstStride  = m_cTmpPic.getStride   ();
676  Pel*        pSrcSamples = pcPicYuv->getLumaAddr ( 0 );
677  Pel*        pDstSamples = m_cTmpPic.getLumaAddr ( 0 );
678  AOF( m_cTmpPic.getWidth () == iWidth  );
679  AOF( m_cTmpPic.getHeight() == iHeight );
680  for( Int iY = 0; iY < iHeight; iY++, pSrcSamples += iSrcStride, pDstSamples += iDstStride )
681  {
682    for( Int iX = 0; iX < iWidth; iX++ )
683    {
684      pDstSamples[ iX ] = Max( iMin, Min( iMax, iMid + pSrcSamples[ iX ] ) );
685    }
686  }
687  // chroma
688  iWidth    >>= 1;
689  iHeight   >>= 1;
690  iSrcStride  = pcPicYuv->getCStride();
691  iDstStride  = m_cTmpPic.getCStride();
692  Pel* pSrcCb = pcPicYuv->getCbAddr ( 0 );
693  Pel* pSrcCr = pcPicYuv->getCrAddr ( 0 );
694  Pel* pDstCb = m_cTmpPic.getCbAddr ( 0 );
695  Pel* pDstCr = m_cTmpPic.getCrAddr ( 0 );
696  for( Int iY = 0; iY < iHeight; iY++, pSrcCb += iSrcStride, pSrcCr += iSrcStride, pDstCb += iDstStride, pDstCr += iDstStride )
697  {
698    for( Int iX = 0; iX < iWidth; iX++ )
699    {
700      pDstCb[ iX ] = Max( iMin, Min( iMax, iMid + pSrcCb[ iX ] ) );
701      pDstCr[ iX ] = Max( iMin, Min( iMax, iMid + pSrcCr[ iX ] ) );
702    }
703  }
704
705  // output
706  Char  acFilename[1024];
707  ::sprintf     ( acFilename, "%s_V%d.yuv", pFilenameBase, uiViewId );
708  m_cTmpPic.dump( acFilename, ( pcPic->getPOC() != 0 )  );
709}
710
711
712#endif // HHI_INTER_VIEW_RESIDUAL_PRED
713
Note: See TracBrowser for help on using the repository browser.