source: 3DVCSoftware/branches/HTM-11.2-dev3-HiSilicon/source/Lib/TLibCommon/TComPrediction.cpp @ 994

Last change on this file since 994 was 994, checked in by hisilicon-htm, 10 years ago

Integration of JCT3V-I0120 Remove "depth_dc_flag" signalling in DMM cases

  • Property svn:eol-style set to native
File size: 71.5 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-2014, 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     TComPrediction.cpp
35    \brief    prediction class
36*/
37
38#include <memory.h>
39#include "TComPrediction.h"
40
41//! \ingroup TLibCommon
42//! \{
43
44// ====================================================================================================================
45// Constructor / destructor / initialize
46// ====================================================================================================================
47
48TComPrediction::TComPrediction()
49: m_pLumaRecBuffer(0)
50, m_iLumaRecStride(0)
51{
52  m_piYuvExt = NULL;
53#if H_3D_VSP
54  m_pDepthBlock = (Int*) malloc(MAX_NUM_SPU_W*MAX_NUM_SPU_W*sizeof(Int));
55  if (m_pDepthBlock == NULL)
56      printf("ERROR: UKTGHU, No memory allocated.\n");
57#endif
58}
59
60TComPrediction::~TComPrediction()
61{
62#if H_3D_VSP
63  if (m_pDepthBlock != NULL)
64      free(m_pDepthBlock);
65  m_cYuvDepthOnVsp.destroy();
66#endif
67
68  delete[] m_piYuvExt;
69
70  m_acYuvPred[0].destroy();
71  m_acYuvPred[1].destroy();
72
73  m_cYuvPredTemp.destroy();
74
75#if H_3D_ARP
76  m_acYuvPredBase[0].destroy();
77  m_acYuvPredBase[1].destroy();
78#endif
79  if( m_pLumaRecBuffer )
80  {
81    delete [] m_pLumaRecBuffer;
82  }
83 
84  Int i, j;
85  for (i = 0; i < 4; i++)
86  {
87    for (j = 0; j < 4; j++)
88    {
89      m_filteredBlock[i][j].destroy();
90    }
91    m_filteredBlockTmp[i].destroy();
92  }
93}
94
95Void TComPrediction::initTempBuff()
96{
97  if( m_piYuvExt == NULL )
98  {
99    Int extWidth  = MAX_CU_SIZE + 16; 
100    Int extHeight = MAX_CU_SIZE + 1;
101    Int i, j;
102    for (i = 0; i < 4; i++)
103    {
104      m_filteredBlockTmp[i].create(extWidth, extHeight + 7);
105      for (j = 0; j < 4; j++)
106      {
107        m_filteredBlock[i][j].create(extWidth, extHeight);
108      }
109    }
110    m_iYuvExtHeight  = ((MAX_CU_SIZE + 2) << 4);
111    m_iYuvExtStride = ((MAX_CU_SIZE  + 8) << 4);
112    m_piYuvExt = new Int[ m_iYuvExtStride * m_iYuvExtHeight ];
113
114    // new structure
115    m_acYuvPred[0] .create( MAX_CU_SIZE, MAX_CU_SIZE );
116    m_acYuvPred[1] .create( MAX_CU_SIZE, MAX_CU_SIZE );
117
118    m_cYuvPredTemp.create( MAX_CU_SIZE, MAX_CU_SIZE );
119#if H_3D_ARP
120    m_acYuvPredBase[0] .create( g_uiMaxCUWidth, g_uiMaxCUHeight );
121    m_acYuvPredBase[1] .create( g_uiMaxCUWidth, g_uiMaxCUHeight );
122#endif
123#if H_3D_VSP
124    m_cYuvDepthOnVsp.create( g_uiMaxCUWidth, g_uiMaxCUHeight );
125#endif
126  }
127
128  if (m_iLumaRecStride != (MAX_CU_SIZE>>1) + 1)
129  {
130    m_iLumaRecStride =  (MAX_CU_SIZE>>1) + 1;
131    if (!m_pLumaRecBuffer)
132    {
133      m_pLumaRecBuffer = new Pel[ m_iLumaRecStride * m_iLumaRecStride ];
134    }
135  }
136#if H_3D_IC
137  m_uiaShift[0] = 0;
138  for( Int i = 1; i < 64; i++ )
139  {
140    m_uiaShift[i] = ( (1 << 15) + i/2 ) / i;
141  }
142#endif
143}
144
145// ====================================================================================================================
146// Public member functions
147// ====================================================================================================================
148
149// Function for calculating DC value of the reference samples used in Intra prediction
150Pel TComPrediction::predIntraGetPredValDC( Int* pSrc, Int iSrcStride, UInt iWidth, UInt iHeight, Bool bAbove, Bool bLeft )
151{
152  assert(iWidth > 0 && iHeight > 0);
153  Int iInd, iSum = 0;
154  Pel pDcVal;
155
156  if (bAbove)
157  {
158    for (iInd = 0;iInd < iWidth;iInd++)
159    {
160      iSum += pSrc[iInd-iSrcStride];
161    }
162  }
163  if (bLeft)
164  {
165    for (iInd = 0;iInd < iHeight;iInd++)
166    {
167      iSum += pSrc[iInd*iSrcStride-1];
168    }
169  }
170
171  if (bAbove && bLeft)
172  {
173    pDcVal = (iSum + iWidth) / (iWidth + iHeight);
174  }
175  else if (bAbove)
176  {
177    pDcVal = (iSum + iWidth/2) / iWidth;
178  }
179  else if (bLeft)
180  {
181    pDcVal = (iSum + iHeight/2) / iHeight;
182  }
183  else
184  {
185    pDcVal = pSrc[-1]; // Default DC value already calculated and placed in the prediction array if no neighbors are available
186  }
187 
188  return pDcVal;
189}
190
191// Function for deriving the angular Intra predictions
192
193/** Function for deriving the simplified angular intra predictions.
194 * \param pSrc pointer to reconstructed sample array
195 * \param srcStride the stride of the reconstructed sample array
196 * \param rpDst reference to pointer for the prediction sample array
197 * \param dstStride the stride of the prediction sample array
198 * \param width the width of the block
199 * \param height the height of the block
200 * \param dirMode the intra prediction mode index
201 * \param blkAboveAvailable boolean indication if the block above is available
202 * \param blkLeftAvailable boolean indication if the block to the left is available
203 *
204 * This function derives the prediction samples for the angular mode based on the prediction direction indicated by
205 * the prediction mode index. The prediction direction is given by the displacement of the bottom row of the block and
206 * the reference row above the block in the case of vertical prediction or displacement of the rightmost column
207 * of the block and reference column left from the block in the case of the horizontal prediction. The displacement
208 * is signalled at 1/32 pixel accuracy. When projection of the predicted pixel falls inbetween reference samples,
209 * the predicted value for the pixel is linearly interpolated from the reference samples. All reference samples are taken
210 * from the extended main reference.
211 */
212Void TComPrediction::xPredIntraAng(Int bitDepth, Int* pSrc, Int srcStride, Pel*& rpDst, Int dstStride, UInt width, UInt height, UInt dirMode, Bool blkAboveAvailable, Bool blkLeftAvailable, Bool bFilter )
213{
214  Int k,l;
215  Int blkSize        = width;
216  Pel* pDst          = rpDst;
217
218  // Map the mode index to main prediction direction and angle
219  assert( dirMode > 0 ); //no planar
220  Bool modeDC        = dirMode < 2;
221  Bool modeHor       = !modeDC && (dirMode < 18);
222  Bool modeVer       = !modeDC && !modeHor;
223  Int intraPredAngle = modeVer ? (Int)dirMode - VER_IDX : modeHor ? -((Int)dirMode - HOR_IDX) : 0;
224  Int absAng         = abs(intraPredAngle);
225  Int signAng        = intraPredAngle < 0 ? -1 : 1;
226
227  // Set bitshifts and scale the angle parameter to block size
228  Int angTable[9]    = {0,    2,    5,   9,  13,  17,  21,  26,  32};
229  Int invAngTable[9] = {0, 4096, 1638, 910, 630, 482, 390, 315, 256}; // (256 * 32) / Angle
230  Int invAngle       = invAngTable[absAng];
231  absAng             = angTable[absAng];
232  intraPredAngle     = signAng * absAng;
233
234  // Do the DC prediction
235  if (modeDC)
236  {
237    Pel dcval = predIntraGetPredValDC(pSrc, srcStride, width, height, blkAboveAvailable, blkLeftAvailable);
238
239    for (k=0;k<blkSize;k++)
240    {
241      for (l=0;l<blkSize;l++)
242      {
243        pDst[k*dstStride+l] = dcval;
244      }
245    }
246  }
247
248  // Do angular predictions
249  else
250  {
251    Pel* refMain;
252    Pel* refSide;
253    Pel  refAbove[2*MAX_CU_SIZE+1];
254    Pel  refLeft[2*MAX_CU_SIZE+1];
255
256    // Initialise the Main and Left reference array.
257    if (intraPredAngle < 0)
258    {
259      for (k=0;k<blkSize+1;k++)
260      {
261        refAbove[k+blkSize-1] = pSrc[k-srcStride-1];
262      }
263      for (k=0;k<blkSize+1;k++)
264      {
265        refLeft[k+blkSize-1] = pSrc[(k-1)*srcStride-1];
266      }
267      refMain = (modeVer ? refAbove : refLeft) + (blkSize-1);
268      refSide = (modeVer ? refLeft : refAbove) + (blkSize-1);
269
270      // Extend the Main reference to the left.
271      Int invAngleSum    = 128;       // rounding for (shift by 8)
272      for (k=-1; k>blkSize*intraPredAngle>>5; k--)
273      {
274        invAngleSum += invAngle;
275        refMain[k] = refSide[invAngleSum>>8];
276      }
277    }
278    else
279    {
280      for (k=0;k<2*blkSize+1;k++)
281      {
282        refAbove[k] = pSrc[k-srcStride-1];
283      }
284      for (k=0;k<2*blkSize+1;k++)
285      {
286        refLeft[k] = pSrc[(k-1)*srcStride-1];
287      }
288      refMain = modeVer ? refAbove : refLeft;
289      refSide = modeVer ? refLeft  : refAbove;
290    }
291
292    if (intraPredAngle == 0)
293    {
294      for (k=0;k<blkSize;k++)
295      {
296        for (l=0;l<blkSize;l++)
297        {
298          pDst[k*dstStride+l] = refMain[l+1];
299        }
300      }
301
302      if ( bFilter )
303      {
304        for (k=0;k<blkSize;k++)
305        {
306          pDst[k*dstStride] = Clip3(0, (1<<bitDepth)-1, pDst[k*dstStride] + (( refSide[k+1] - refSide[0] ) >> 1) );
307        }
308      }
309    }
310    else
311    {
312      Int deltaPos=0;
313      Int deltaInt;
314      Int deltaFract;
315      Int refMainIndex;
316
317      for (k=0;k<blkSize;k++)
318      {
319        deltaPos += intraPredAngle;
320        deltaInt   = deltaPos >> 5;
321        deltaFract = deltaPos & (32 - 1);
322
323        if (deltaFract)
324        {
325          // Do linear filtering
326          for (l=0;l<blkSize;l++)
327          {
328            refMainIndex        = l+deltaInt+1;
329            pDst[k*dstStride+l] = (Pel) ( ((32-deltaFract)*refMain[refMainIndex]+deltaFract*refMain[refMainIndex+1]+16) >> 5 );
330          }
331        }
332        else
333        {
334          // Just copy the integer samples
335          for (l=0;l<blkSize;l++)
336          {
337            pDst[k*dstStride+l] = refMain[l+deltaInt+1];
338          }
339        }
340      }
341    }
342
343    // Flip the block if this is the horizontal mode
344    if (modeHor)
345    {
346      Pel  tmp;
347      for (k=0;k<blkSize-1;k++)
348      {
349        for (l=k+1;l<blkSize;l++)
350        {
351          tmp                 = pDst[k*dstStride+l];
352          pDst[k*dstStride+l] = pDst[l*dstStride+k];
353          pDst[l*dstStride+k] = tmp;
354        }
355      }
356    }
357  }
358}
359
360Void TComPrediction::predIntraLumaAng(TComPattern* pcTComPattern, UInt uiDirMode, Pel* piPred, UInt uiStride, Int iWidth, Int iHeight, Bool bAbove, Bool bLeft )
361{
362  Pel *pDst = piPred;
363  Int *ptrSrc;
364
365  assert( g_aucConvertToBit[ iWidth ] >= 0 ); //   4x  4
366  assert( g_aucConvertToBit[ iWidth ] <= 5 ); // 128x128
367  assert( iWidth == iHeight  );
368
369  ptrSrc = pcTComPattern->getPredictorPtr( uiDirMode, g_aucConvertToBit[ iWidth ] + 2, m_piYuvExt );
370
371  // get starting pixel in block
372  Int sw = 2 * iWidth + 1;
373
374  // Create the prediction
375  if ( uiDirMode == PLANAR_IDX )
376  {
377    xPredIntraPlanar( ptrSrc+sw+1, sw, pDst, uiStride, iWidth, iHeight );
378  }
379  else
380  {
381    if ( (iWidth > 16) || (iHeight > 16) )
382    {
383      xPredIntraAng(g_bitDepthY, ptrSrc+sw+1, sw, pDst, uiStride, iWidth, iHeight, uiDirMode, bAbove, bLeft, false );
384    }
385    else
386    {
387      xPredIntraAng(g_bitDepthY, ptrSrc+sw+1, sw, pDst, uiStride, iWidth, iHeight, uiDirMode, bAbove, bLeft, true );
388
389      if( (uiDirMode == DC_IDX ) && bAbove && bLeft )
390      {
391        xDCPredFiltering( ptrSrc+sw+1, sw, pDst, uiStride, iWidth, iHeight);
392      }
393    }
394  }
395}
396
397// Angular chroma
398Void TComPrediction::predIntraChromaAng( Int* piSrc, UInt uiDirMode, Pel* piPred, UInt uiStride, Int iWidth, Int iHeight, Bool bAbove, Bool bLeft )
399{
400  Pel *pDst = piPred;
401  Int *ptrSrc = piSrc;
402
403  // get starting pixel in block
404  Int sw = 2 * iWidth + 1;
405
406  if ( uiDirMode == PLANAR_IDX )
407  {
408    xPredIntraPlanar( ptrSrc+sw+1, sw, pDst, uiStride, iWidth, iHeight );
409  }
410  else
411  {
412    // Create the prediction
413    xPredIntraAng(g_bitDepthC, ptrSrc+sw+1, sw, pDst, uiStride, iWidth, iHeight, uiDirMode, bAbove, bLeft, false );
414  }
415}
416
417#if H_3D_DIM
418Void TComPrediction::predIntraLumaDepth( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiIntraMode, Pel* piPred, UInt uiStride, Int iWidth, Int iHeight, Bool bFastEnc, TComWedgelet* dmm4Segmentation  )
419{
420  assert( iWidth == iHeight  );
421  assert( iWidth >= DIM_MIN_SIZE && iWidth <= DIM_MAX_SIZE );
422  assert( isDimMode( uiIntraMode ) );
423
424  UInt dimType    = getDimType  ( uiIntraMode );
425#if !HS_DMM_SIGNALLING_I0120
426  Bool dimDeltaDC = isDimDeltaDC( uiIntraMode );
427#endif
428  Bool isDmmMode  = (dimType <  DMM_NUM_TYPE);
429
430  Bool* biSegPattern  = NULL;
431  UInt  patternStride = 0;
432
433  // get partiton
434#if H_3D_DIM_DMM
435  TComWedgelet* dmmSegmentation = NULL;
436  if( isDmmMode )
437  {
438    switch( dimType )
439    {
440    case( DMM1_IDX ): 
441      {
442        dmmSegmentation = &(g_dmmWedgeLists[ g_aucConvertToBit[iWidth] ][ pcCU->getDmmWedgeTabIdx( dimType, uiAbsPartIdx ) ]);
443      } break;
444    case( DMM4_IDX ): 
445      {
446        if( dmm4Segmentation == NULL )
447        { 
448          dmmSegmentation = new TComWedgelet( iWidth, iHeight );
449          xPredContourFromTex( pcCU, uiAbsPartIdx, iWidth, iHeight, dmmSegmentation );
450        }
451        else
452        {
453          xPredContourFromTex( pcCU, uiAbsPartIdx, iWidth, iHeight, dmm4Segmentation );
454          dmmSegmentation = dmm4Segmentation;
455        }
456      } break;
457    default: assert(0);
458    }
459    assert( dmmSegmentation );
460    biSegPattern  = dmmSegmentation->getPattern();
461    patternStride = dmmSegmentation->getStride ();
462  }
463#endif
464
465  // get predicted partition values
466  assert( biSegPattern );
467  Int* piMask = NULL;
468  piMask = pcCU->getPattern()->getAdiOrgBuf( iWidth, iHeight, m_piYuvExt ); // no filtering
469  assert( piMask );
470  Int maskStride = 2*iWidth + 1; 
471  Int* ptrSrc = piMask+maskStride+1;
472  Pel predDC1 = 0; Pel predDC2 = 0;
473  xPredBiSegDCs( ptrSrc, maskStride, biSegPattern, patternStride, predDC1, predDC2 );
474
475  // set segment values with deltaDC offsets
476  Pel segDC1 = 0;
477  Pel segDC2 = 0;
478#if HS_DMM_SIGNALLING_I0120
479  if( !pcCU->getSDCFlag( uiAbsPartIdx ) )
480#else
481  if( dimDeltaDC )
482#endif
483  {
484    Pel deltaDC1 = pcCU->getDimDeltaDC( dimType, 0, uiAbsPartIdx );
485    Pel deltaDC2 = pcCU->getDimDeltaDC( dimType, 1, uiAbsPartIdx );
486#if H_3D_DIM_DMM
487    if( isDmmMode )
488    {
489#if H_3D_DIM_DLT
490      segDC1 = pcCU->getSlice()->getPPS()->getDLT()->idx2DepthValue( pcCU->getSlice()->getLayerIdInVps(), pcCU->getSlice()->getPPS()->getDLT()->depthValue2idx( pcCU->getSlice()->getLayerIdInVps(), predDC1 ) + deltaDC1 );
491      segDC2 = pcCU->getSlice()->getPPS()->getDLT()->idx2DepthValue( pcCU->getSlice()->getLayerIdInVps(), pcCU->getSlice()->getPPS()->getDLT()->depthValue2idx( pcCU->getSlice()->getLayerIdInVps(), predDC2 ) + deltaDC2 );
492#else
493      segDC1 = ClipY( predDC1 + deltaDC1 );
494      segDC2 = ClipY( predDC2 + deltaDC2 );
495#endif
496    }
497#endif
498  }
499  else
500  {
501    segDC1 = predDC1;
502    segDC2 = predDC2;
503  }
504
505  // set prediction signal
506  Pel* pDst = piPred;
507  xAssignBiSegDCs( pDst, uiStride, biSegPattern, patternStride, segDC1, segDC2 );
508  pcCU->setDmmPredictor(segDC1, 0);
509  pcCU->setDmmPredictor(segDC2, 1);
510
511#if H_3D_DIM_DMM
512  if( dimType == DMM4_IDX && dmm4Segmentation == NULL ) { dmmSegmentation->destroy(); delete dmmSegmentation; }
513#endif
514}
515#endif
516
517/** Function for checking identical motion.
518 * \param TComDataCU* pcCU
519 * \param UInt PartAddr
520 */
521Bool TComPrediction::xCheckIdenticalMotion ( TComDataCU* pcCU, UInt PartAddr )
522{
523  if( pcCU->getSlice()->isInterB() && !pcCU->getSlice()->getPPS()->getWPBiPred() )
524  {
525    if( pcCU->getCUMvField(REF_PIC_LIST_0)->getRefIdx(PartAddr) >= 0 && pcCU->getCUMvField(REF_PIC_LIST_1)->getRefIdx(PartAddr) >= 0)
526    {
527      Int RefPOCL0 = pcCU->getSlice()->getRefPic(REF_PIC_LIST_0, pcCU->getCUMvField(REF_PIC_LIST_0)->getRefIdx(PartAddr))->getPOC();
528      Int RefPOCL1 = pcCU->getSlice()->getRefPic(REF_PIC_LIST_1, pcCU->getCUMvField(REF_PIC_LIST_1)->getRefIdx(PartAddr))->getPOC();
529#if H_3D_ARP
530      if(!pcCU->getARPW(PartAddr) && RefPOCL0 == RefPOCL1 && pcCU->getCUMvField(REF_PIC_LIST_0)->getMv(PartAddr) == pcCU->getCUMvField(REF_PIC_LIST_1)->getMv(PartAddr))
531#else
532      if(RefPOCL0 == RefPOCL1 && pcCU->getCUMvField(REF_PIC_LIST_0)->getMv(PartAddr) == pcCU->getCUMvField(REF_PIC_LIST_1)->getMv(PartAddr))
533#endif
534      {
535        return true;
536      }
537    }
538  }
539  return false;
540}
541
542#if H_3D_SPIVMP
543Void TComPrediction::xGetSubPUAddrAndMerge(TComDataCU* pcCU, UInt uiPartAddr, Int iSPWidth, Int iSPHeight, Int iNumSPInOneLine, Int iNumSP, UInt* uiMergedSPW, UInt* uiMergedSPH, UInt* uiSPAddr )
544{
545  for (Int i = 0; i < iNumSP; i++)
546  {
547    uiMergedSPW[i] = iSPWidth;
548    uiMergedSPH[i] = iSPHeight;
549    pcCU->getSPAbsPartIdx(uiPartAddr, iSPWidth, iSPHeight, i, iNumSPInOneLine, uiSPAddr[i]);
550  }
551  // horizontal sub-PU merge
552  for (Int i=0; i<iNumSP; i++)
553  {
554    if (i % iNumSPInOneLine == iNumSPInOneLine - 1 || uiMergedSPW[i]==0 || uiMergedSPH[i]==0)
555    {
556      continue;
557    }
558    for (Int j=i+1; j<i+iNumSPInOneLine-i%iNumSPInOneLine; j++)
559    {
560      if (xCheckTwoSPMotion(pcCU, uiSPAddr[i], uiSPAddr[j]))
561      {
562        uiMergedSPW[i] += iSPWidth;
563        uiMergedSPW[j] = uiMergedSPH[j] = 0;
564      }
565      else
566      {
567        break;
568      }
569    }
570  }
571  //vertical sub-PU merge
572  for (Int i=0; i<iNumSP-iNumSPInOneLine; i++)
573  {
574    if (uiMergedSPW[i]==0 || uiMergedSPH[i]==0)
575    {
576      continue;
577    }
578    for (Int j=i+iNumSPInOneLine; j<iNumSP; j+=iNumSPInOneLine)
579    {
580      if (xCheckTwoSPMotion(pcCU, uiSPAddr[i], uiSPAddr[j]) && uiMergedSPW[i]==uiMergedSPW[j])
581      {
582        uiMergedSPH[i] += iSPHeight;
583        uiMergedSPH[j] = uiMergedSPW[j] = 0;
584      }
585      else
586      {
587        break;
588      }
589    }
590  }
591}
592
593Bool TComPrediction::xCheckTwoSPMotion ( TComDataCU* pcCU, UInt PartAddr0, UInt PartAddr1 )
594{
595  if( pcCU->getCUMvField(REF_PIC_LIST_0)->getRefIdx(PartAddr0) != pcCU->getCUMvField(REF_PIC_LIST_0)->getRefIdx(PartAddr1))
596  {
597    return false;
598  }
599  if( pcCU->getCUMvField(REF_PIC_LIST_1)->getRefIdx(PartAddr0) != pcCU->getCUMvField(REF_PIC_LIST_1)->getRefIdx(PartAddr1))
600  {
601    return false;
602  }
603
604  if (pcCU->getCUMvField(REF_PIC_LIST_0)->getRefIdx(PartAddr0) >= 0)
605  {
606    if (pcCU->getCUMvField(REF_PIC_LIST_0)->getMv(PartAddr0) != pcCU->getCUMvField(REF_PIC_LIST_0)->getMv(PartAddr1))
607    {
608      return false;
609    }
610  }
611
612  if (pcCU->getCUMvField(REF_PIC_LIST_1)->getRefIdx(PartAddr0) >= 0)
613  {
614    if (pcCU->getCUMvField(REF_PIC_LIST_1)->getMv(PartAddr0) != pcCU->getCUMvField(REF_PIC_LIST_1)->getMv(PartAddr1))
615    {
616      return false;
617    }
618  }
619  return true;
620}
621#endif
622
623#if H_3D_DBBP
624PartSize TComPrediction::getPartitionSizeFromDepth(Pel* pDepthPels, UInt uiDepthStride, UInt uiSize)
625{
626  // find virtual partitioning for this CU based on depth block
627  // segmentation of texture block --> mask IDs
628  Pel*  pDepthBlockStart      = pDepthPels;
629 
630  // first compute average of depth block for thresholding
631  Int iSumDepth = 0;
632  Int iSubSample = 4;
633  for (Int y=0; y<uiSize; y+=iSubSample)
634  {
635    for (Int x=0; x<uiSize; x+=iSubSample)
636    {
637      Int depthPel = pDepthPels[x];
638     
639      iSumDepth += depthPel;
640    }
641   
642    // next row
643    pDepthPels += uiDepthStride*iSubSample;
644  }
645 
646  Int iSizeInBits = g_aucConvertToBit[uiSize] - g_aucConvertToBit[iSubSample];  // respect sub-sampling factor
647  Int iMean = iSumDepth >> iSizeInBits*2;       // iMean /= (uiSize*uiSize);
648 
649  // start again for segmentation
650  pDepthPels = pDepthBlockStart;
651 
652  // start mapping process
653  Int matchedPartSum[2][2] = {{0,0},{0,0}}; // counter for each part size and boolean option
654  PartSize virtualPartSizes[2] = { SIZE_Nx2N, SIZE_2NxN};
655 
656  UInt uiHalfSize = uiSize>>1;
657  for (Int y=0; y<uiSize; y+=iSubSample)
658  {
659    for (Int x=0; x<uiSize; x+=iSubSample)
660    {
661      Int depthPel = pDepthPels[x];
662     
663      // decide which segment this pixel belongs to
664      Int ucSegment = (Int)(depthPel>iMean);
665     
666      // Matched Filter to find optimal (conventional) partitioning
667     
668      // SIZE_Nx2N
669      if(x<uiHalfSize)  // left
670      {
671        matchedPartSum[0][ucSegment]++;
672      }
673      else  // right
674      {
675        matchedPartSum[0][1-ucSegment]++;
676      }
677     
678      // SIZE_2NxN
679      if(y<uiHalfSize)  // top
680      {
681        matchedPartSum[1][ucSegment]++;
682      }
683      else  // bottom
684      {
685        matchedPartSum[1][1-ucSegment]++;
686      }
687    }
688   
689    // next row
690    pDepthPels += uiDepthStride*iSubSample;
691  }
692 
693  PartSize matchedPartSize = SIZE_NONE;
694 
695  Int iMaxMatchSum = 0;
696  for(Int p=0; p<2; p++)  // loop over partition
697  {
698    for( Int b=0; b<=1; b++ ) // loop over boolean options
699    {
700      if(matchedPartSum[p][b] > iMaxMatchSum)
701      {
702        iMaxMatchSum = matchedPartSum[p][b];
703        matchedPartSize = virtualPartSizes[p];
704      }
705    }
706  }
707 
708  AOF( matchedPartSize != SIZE_NONE );
709 
710  return matchedPartSize;
711}
712
713Bool TComPrediction::getSegmentMaskFromDepth( Pel* pDepthPels, UInt uiDepthStride, UInt uiWidth, UInt uiHeight, Bool* pMask )
714{
715  // segmentation of texture block --> mask IDs
716  Pel*  pDepthBlockStart      = pDepthPels;
717 
718  // first compute average of depth block for thresholding
719  Int iSumDepth = 0;
720  Int uiMinDepth = MAX_INT;
721  Int uiMaxDepth = 0;
722  for (Int y=0; y<uiHeight; y++)
723  {
724    for (Int x=0; x<uiWidth; x++)
725    {
726      Int depthPel = pDepthPels[x];
727      iSumDepth += depthPel;
728     
729      if( depthPel > uiMaxDepth )
730      {
731        uiMaxDepth = depthPel;
732      }
733      if( depthPel < uiMinDepth )
734      {
735        uiMinDepth = depthPel;
736      }
737    }
738   
739    // next row
740    pDepthPels += uiDepthStride;
741  }
742 
743  // don't generate mask for blocks with small depth range (encoder decision)
744  if( uiMaxDepth - uiMinDepth < 10 )
745  {
746    return false;
747  }
748 
749  AOF(uiWidth==uiHeight);
750  Int iSizeInBits = g_aucConvertToBit[uiWidth]+2;
751  Int iMean = iSumDepth >> iSizeInBits*2;       // iMean /= (uiWidth*uiHeight);
752 
753  // start again for segmentation
754  pDepthPels = pDepthBlockStart;
755 
756  Bool bInvertMask = pDepthPels[0]>iMean; // top-left segment needs to be mapped to partIdx 0
757 
758  // generate mask
759  UInt uiSumPix[2] = {0,0};
760  for (Int y=0; y<uiHeight; y++)
761  {
762    for (Int x=0; x<uiHeight; x++)
763    {
764      Int depthPel = pDepthPels[x];
765     
766      // decide which segment this pixel belongs to
767      Int ucSegment = (Int)(depthPel>iMean);
768     
769      if( bInvertMask )
770      {
771        ucSegment = 1-ucSegment;
772      }
773     
774      // count pixels for each segment
775      uiSumPix[ucSegment]++;
776     
777      // set mask value
778      pMask[x] = (Bool)ucSegment;
779    }
780   
781    // next row
782    pDepthPels += uiDepthStride;
783    pMask += MAX_CU_SIZE;
784  }
785 
786  // don't generate valid mask for tiny segments (encoder decision)
787  // each segment needs to cover at least 1/8th of block
788  UInt uiMinPixPerSegment = (uiWidth*uiHeight) >> 3;
789  if( !( uiSumPix[0] > uiMinPixPerSegment && uiSumPix[1] > uiMinPixPerSegment ) )
790  {
791    return false;
792  }
793 
794  // all good
795  return true;
796}
797
798Void TComPrediction::combineSegmentsWithMask( TComYuv* pInYuv[2], TComYuv* pOutYuv, Bool* pMask, UInt uiWidth, UInt uiHeight, UInt uiPartAddr )
799{
800  Pel*  piSrc[2]    = {pInYuv[0]->getLumaAddr(uiPartAddr), pInYuv[1]->getLumaAddr(uiPartAddr)};
801  UInt  uiSrcStride = pInYuv[0]->getStride();
802  Pel*  piDst       = pOutYuv->getLumaAddr(uiPartAddr);
803  UInt  uiDstStride = pOutYuv->getStride();
804 
805  UInt  uiMaskStride= MAX_CU_SIZE;
806  Pel  filSrc = 0;
807  Pel* tmpTar = 0;
808  tmpTar = (Pel *)xMalloc(Pel, uiWidth*uiHeight);
809 
810  // backup pointer
811  Bool* pMaskStart = pMask;
812 
813  // combine luma first
814  for (Int y=0; y<uiHeight; y++)
815  {
816    for (Int x=0; x<uiWidth; x++)
817    {
818      UChar ucSegment = (UChar)pMask[x];
819      AOF( ucSegment < 2 );
820     
821      // filtering
822      tmpTar[y*uiWidth+x] = piSrc[ucSegment][x];
823    }
824   
825    piSrc[0]  += uiSrcStride;
826    piSrc[1]  += uiSrcStride;
827    pMask     += uiMaskStride;
828  }
829 
830  for (Int y=0; y<uiHeight; y++)
831  {
832    for (Int x=0; x<uiWidth; x++)
833    {
834      Bool t = (y==0)?pMaskStart[y*uiMaskStride+x]:pMaskStart[(y-1)*uiMaskStride+x];
835      Bool l = (x==0)?pMaskStart[y*uiMaskStride+x]:pMaskStart[y*uiMaskStride+x-1];
836      Bool b = (y==uiHeight-1)?pMaskStart[y*uiMaskStride+x]:pMaskStart[(y+1)*uiMaskStride+x];
837      Bool r = (x==uiWidth-1)?pMaskStart[y*uiMaskStride+x]:pMaskStart[y*uiMaskStride+x+1];
838      Bool c =pMaskStart[y*uiMaskStride+x];
839
840      Pel left, right, top, bottom;
841      left   = (x==0)          ? tmpTar[y*uiWidth+x] : tmpTar[y*uiWidth+x-1];
842      right  = (x==uiWidth-1)  ? tmpTar[y*uiWidth+x] : tmpTar[y*uiWidth+x+1];
843      top    = (y==0)          ? tmpTar[y*uiWidth+x] : tmpTar[(y-1)*uiWidth+x];
844      bottom = (y==uiHeight-1) ? tmpTar[y*uiWidth+x] : tmpTar[(y+1)*uiWidth+x];
845
846      if(!((l&&r&&c) || (!l&&!r&&!c)))
847      {
848        filSrc = Clip3( Pel( 0 ), Pel( 255 ), Pel(( left + (tmpTar[y*uiWidth+x] << 1) + right ) >> 2 ));
849      }
850      else
851      {
852        filSrc = tmpTar[y*uiWidth+x];
853      }
854
855      if(!((t&&b&&c) || (!t&&!b&&!c)))
856      {
857        filSrc = Clip3( Pel( 0 ), Pel( 255 ), Pel(( top + (filSrc << 1) + bottom ) >> 2 ));
858      }
859      piDst[x] = filSrc;
860    }
861    piDst     += uiDstStride;
862  }
863  if ( tmpTar    ) { xFree(tmpTar);             tmpTar        = NULL; }
864 
865  // now combine chroma
866  Pel*  piSrcU[2]       = { pInYuv[0]->getCbAddr(uiPartAddr), pInYuv[1]->getCbAddr(uiPartAddr) };
867  Pel*  piSrcV[2]       = { pInYuv[0]->getCrAddr(uiPartAddr), pInYuv[1]->getCrAddr(uiPartAddr) };
868  UInt  uiSrcStrideC    = pInYuv[0]->getCStride();
869  Pel*  piDstU          = pOutYuv->getCbAddr(uiPartAddr);
870  Pel*  piDstV          = pOutYuv->getCrAddr(uiPartAddr);
871  UInt  uiDstStrideC    = pOutYuv->getCStride();
872  UInt  uiWidthC        = uiWidth >> 1;
873  UInt  uiHeightC       = uiHeight >> 1;
874  Pel  filSrcU = 0, filSrcV = 0;
875  Pel* tmpTarU = 0, *tmpTarV = 0;
876  tmpTarU = (Pel *)xMalloc(Pel, uiWidthC*uiHeightC);
877  tmpTarV = (Pel *)xMalloc(Pel, uiWidthC*uiHeightC);
878  pMask = pMaskStart;
879 
880  for (Int y=0; y<uiHeightC; y++)
881  {
882    for (Int x=0; x<uiWidthC; x++)
883    {
884      UChar ucSegment = (UChar)pMask[x*2];
885      AOF( ucSegment < 2 );
886     
887      // filtering
888      tmpTarU[y*uiWidthC+x] = piSrcU[ucSegment][x];
889      tmpTarV[y*uiWidthC+x] = piSrcV[ucSegment][x];
890    }
891   
892    piSrcU[0]   += uiSrcStrideC;
893    piSrcU[1]   += uiSrcStrideC;
894    piSrcV[0]   += uiSrcStrideC;
895    piSrcV[1]   += uiSrcStrideC;
896    pMask       += 2*uiMaskStride;
897  }
898
899  for (Int y=0; y<uiHeightC; y++)
900  {
901    for (Int x=0; x<uiWidthC; x++)
902    {
903      Bool t = (y==0)?pMaskStart[y*2*uiMaskStride+x*2]:pMaskStart[(y-1)*2*uiMaskStride+x*2];
904      Bool l = (x==0)?pMaskStart[y*2*uiMaskStride+x*2]:pMaskStart[y*2*uiMaskStride+(x-1)*2];
905      Bool b = (y==uiHeightC-1)?pMaskStart[y*2*uiMaskStride+x*2]:pMaskStart[(y+1)*2*uiMaskStride+x*2];
906      Bool r = (x==uiWidthC-1)?pMaskStart[y*2*uiMaskStride+x*2]:pMaskStart[y*2*uiMaskStride+(x+1)*2];
907      Bool c =pMaskStart[y*2*uiMaskStride+x*2];
908
909      Pel leftU, rightU, topU, bottomU;
910      leftU   = (x==0)           ? tmpTarU[y*uiWidthC+x] : tmpTarU[y*uiWidthC+x-1];
911      rightU  = (x==uiWidthC-1)  ? tmpTarU[y*uiWidthC+x] : tmpTarU[y*uiWidthC+x+1];
912      topU    = (y==0)           ? tmpTarU[y*uiWidthC+x] : tmpTarU[(y-1)*uiWidthC+x];
913      bottomU = (y==uiHeightC-1) ? tmpTarU[y*uiWidthC+x] : tmpTarU[(y+1)*uiWidthC+x];
914
915      Pel leftV, rightV, topV, bottomV;
916      leftV   = (x==0)           ? tmpTarV[y*uiWidthC+x] : tmpTarV[y*uiWidthC+x-1];
917      rightV  = (x==uiWidthC-1)  ? tmpTarV[y*uiWidthC+x] : tmpTarV[y*uiWidthC+x+1];
918      topV    = (y==0)           ? tmpTarV[y*uiWidthC+x] : tmpTarV[(y-1)*uiWidthC+x];
919      bottomV = (y==uiHeightC-1) ? tmpTarV[y*uiWidthC+x] : tmpTarV[(y+1)*uiWidthC+x];
920
921      if(!((l&&r&&c) || (!l&&!r&&!c)))
922      {
923        filSrcU = Clip3( Pel( 0 ), Pel( 255 ), Pel(( leftU + (tmpTarU[y*uiWidthC+x] << 1) + rightU ) >> 2 ));
924        filSrcV = Clip3( Pel( 0 ), Pel( 255 ), Pel(( leftV + (tmpTarV[y*uiWidthC+x] << 1) + rightV ) >> 2 ));
925      }
926      else
927      {
928        filSrcU = tmpTarU[y*uiWidthC+x];
929        filSrcV = tmpTarV[y*uiWidthC+x];
930      }
931
932      if(!((t&&b&&c) || (!t&&!b&&!c)))
933      {
934        filSrcU = Clip3( Pel( 0 ), Pel( 255 ), Pel(( topU + (filSrcU << 1) + bottomU ) >> 2 ));
935        filSrcV = Clip3( Pel( 0 ), Pel( 255 ), Pel(( topV + (filSrcV << 1) + bottomV ) >> 2 ));
936      }
937
938      piDstU[x] = filSrcU;
939      piDstV[x] = filSrcV;
940    }
941    piDstU      += uiDstStrideC;
942    piDstV      += uiDstStrideC;
943  }
944  if ( tmpTarU    ) { xFree(tmpTarU);             tmpTarU        = NULL; }
945  if ( tmpTarV    ) { xFree(tmpTarV);             tmpTarV        = NULL; }
946}
947#endif
948
949Void TComPrediction::motionCompensation ( TComDataCU* pcCU, TComYuv* pcYuvPred, RefPicList eRefPicList, Int iPartIdx )
950{
951  Int         iWidth;
952  Int         iHeight;
953  UInt        uiPartAddr;
954
955  if ( iPartIdx >= 0 )
956  {
957    pcCU->getPartIndexAndSize( iPartIdx, uiPartAddr, iWidth, iHeight );
958#if H_3D_VSP
959    if ( pcCU->getVSPFlag(uiPartAddr) == 0)
960    {
961#endif
962      if ( eRefPicList != REF_PIC_LIST_X )
963      {
964        if( pcCU->getSlice()->getPPS()->getUseWP())
965        {
966          xPredInterUni (pcCU, uiPartAddr, iWidth, iHeight, eRefPicList, pcYuvPred, true );
967        }
968        else
969        {
970          xPredInterUni (pcCU, uiPartAddr, iWidth, iHeight, eRefPicList, pcYuvPred );
971        }
972        if ( pcCU->getSlice()->getPPS()->getUseWP() )
973        {
974          xWeightedPredictionUni( pcCU, pcYuvPred, uiPartAddr, iWidth, iHeight, eRefPicList, pcYuvPred );
975        }
976      }
977      else
978      {
979#if H_3D_SPIVMP
980        if ( pcCU->getSPIVMPFlag(uiPartAddr)!=0) 
981        {
982          Int iNumSPInOneLine, iNumSP, iSPWidth, iSPHeight;
983
984          pcCU->getSPPara(iWidth, iHeight, iNumSP, iNumSPInOneLine, iSPWidth, iSPHeight);
985
986          UInt uiW[256], uiH[256];
987          UInt uiSPAddr[256];
988
989          xGetSubPUAddrAndMerge(pcCU, uiPartAddr, iSPWidth, iSPHeight, iNumSPInOneLine, iNumSP, uiW, uiH, uiSPAddr);
990
991          //MC
992          for (Int i = 0; i < iNumSP; i++)
993          {
994            if (uiW[i]==0 || uiH[i]==0)
995            {
996              continue;
997            }
998            if( xCheckIdenticalMotion( pcCU, uiSPAddr[i] ))
999            {
1000              xPredInterUni (pcCU, uiSPAddr[i], uiW[i], uiH[i], REF_PIC_LIST_0, pcYuvPred );
1001            }
1002            else
1003            {
1004              xPredInterBi  (pcCU, uiSPAddr[i], uiW[i], uiH[i], pcYuvPred);
1005            }
1006          }
1007        }
1008        else
1009        {
1010#endif
1011          if ( xCheckIdenticalMotion( pcCU, uiPartAddr ) )
1012          {
1013            xPredInterUni (pcCU, uiPartAddr, iWidth, iHeight, REF_PIC_LIST_0, pcYuvPred );
1014          }
1015          else
1016          {
1017            xPredInterBi  (pcCU, uiPartAddr, iWidth, iHeight, pcYuvPred );
1018          }
1019#if H_3D_SPIVMP
1020        }
1021#endif
1022      }
1023#if H_3D_VSP
1024    }
1025    else
1026    {
1027      if ( xCheckIdenticalMotion( pcCU, uiPartAddr ) )
1028      {
1029        xPredInterUniVSP( pcCU, uiPartAddr, iWidth, iHeight, REF_PIC_LIST_0, pcYuvPred );
1030      }
1031      else
1032      {
1033        xPredInterBiVSP ( pcCU, uiPartAddr, iWidth, iHeight, pcYuvPred );
1034      }
1035    }
1036#endif
1037    return;
1038  }
1039
1040  for ( iPartIdx = 0; iPartIdx < pcCU->getNumPartitions(); iPartIdx++ )
1041  {
1042    pcCU->getPartIndexAndSize( iPartIdx, uiPartAddr, iWidth, iHeight );
1043
1044#if H_3D_VSP
1045    if ( pcCU->getVSPFlag(uiPartAddr) == 0 )
1046    {
1047#endif
1048      if ( eRefPicList != REF_PIC_LIST_X )
1049      {
1050        if( pcCU->getSlice()->getPPS()->getUseWP())
1051        {
1052          xPredInterUni (pcCU, uiPartAddr, iWidth, iHeight, eRefPicList, pcYuvPred, true );
1053        }
1054        else
1055        {
1056          xPredInterUni (pcCU, uiPartAddr, iWidth, iHeight, eRefPicList, pcYuvPred );
1057        }
1058        if ( pcCU->getSlice()->getPPS()->getUseWP() )
1059        {
1060          xWeightedPredictionUni( pcCU, pcYuvPred, uiPartAddr, iWidth, iHeight, eRefPicList, pcYuvPred );
1061        }
1062      }
1063      else
1064      {
1065#if H_3D_SPIVMP
1066       if (pcCU->getSPIVMPFlag(uiPartAddr)!=0) 
1067      {
1068        Int iNumSPInOneLine, iNumSP, iSPWidth, iSPHeight;
1069
1070        pcCU->getSPPara(iWidth, iHeight, iNumSP, iNumSPInOneLine, iSPWidth, iSPHeight);
1071
1072        UInt uiW[256], uiH[256];
1073        UInt uiSPAddr[256];
1074
1075        xGetSubPUAddrAndMerge(pcCU, uiPartAddr, iSPWidth, iSPHeight, iNumSPInOneLine, iNumSP, uiW, uiH, uiSPAddr);
1076        //MC
1077        for (Int i = 0; i < iNumSP; i++)
1078        {
1079          if (uiW[i]==0 || uiH[i]==0)
1080          {
1081            continue;
1082          }
1083          if( xCheckIdenticalMotion( pcCU, uiSPAddr[i] ))
1084          {
1085            xPredInterUni (pcCU, uiSPAddr[i], uiW[i], uiH[i], REF_PIC_LIST_0, pcYuvPred );
1086          }
1087          else
1088          {
1089            xPredInterBi  (pcCU, uiSPAddr[i], uiW[i], uiH[i], pcYuvPred);
1090          }
1091        }
1092      }
1093      else
1094      {
1095#endif
1096        if ( xCheckIdenticalMotion( pcCU, uiPartAddr ) )
1097        {
1098          xPredInterUni (pcCU, uiPartAddr, iWidth, iHeight, REF_PIC_LIST_0, pcYuvPred );
1099        }
1100        else
1101        {
1102          xPredInterBi  (pcCU, uiPartAddr, iWidth, iHeight, pcYuvPred );
1103        }
1104#if H_3D_SPIVMP
1105       }
1106#endif
1107      }
1108#if H_3D_VSP
1109    }
1110    else
1111    {
1112      if ( xCheckIdenticalMotion( pcCU, uiPartAddr ) )
1113      {
1114        xPredInterUniVSP( pcCU, uiPartAddr, iWidth, iHeight, REF_PIC_LIST_0, pcYuvPred );
1115      }
1116      else
1117      {
1118        xPredInterBiVSP ( pcCU, uiPartAddr, iWidth, iHeight, pcYuvPred );
1119      }
1120    }
1121#endif
1122  }
1123  return;
1124}
1125
1126Void TComPrediction::xPredInterUni ( TComDataCU* pcCU, UInt uiPartAddr, Int iWidth, Int iHeight, RefPicList eRefPicList, TComYuv*& rpcYuvPred, Bool bi )
1127{
1128  Int         iRefIdx     = pcCU->getCUMvField( eRefPicList )->getRefIdx( uiPartAddr );           assert (iRefIdx >= 0);
1129  TComMv      cMv         = pcCU->getCUMvField( eRefPicList )->getMv( uiPartAddr );
1130  pcCU->clipMv(cMv);
1131
1132#if H_3D_DDD
1133  if( pcCU->getUseDDD( uiPartAddr ) )
1134  {
1135      assert( pcCU->getSPIVMPFlag( uiPartAddr ) == 0 );
1136      assert( pcCU->getSlice()->getViewIndex() != 0 );
1137
1138      Int dstStride = rpcYuvPred->getStride();
1139      Int dstStrideC = rpcYuvPred->getCStride();
1140      Pel *dst      = rpcYuvPred->getLumaAddr( uiPartAddr );
1141      Pel *dstU     = rpcYuvPred->getCbAddr( uiPartAddr );
1142      Pel *dstV     = rpcYuvPred->getCrAddr( uiPartAddr );
1143
1144      Int iWidthC  = iWidth >> 1;
1145      Int iHeightC = iHeight >> 1;
1146      Int DefaultC = 1 << ( g_bitDepthY - 1);
1147      for ( Int i = 0; i < iHeight; i++)
1148      {
1149          for ( Int j = 0; j < iWidth ; j++)
1150          {
1151              dst[j] = pcCU->getDDDepth( uiPartAddr );
1152          }
1153          dst += dstStride;
1154      }
1155      for ( Int i = 0; i < iHeightC; i++)
1156      {
1157          for ( Int j = 0; j < iWidthC; j++)
1158          {
1159              dstU[j] = dstV[j] = DefaultC;
1160          }
1161          dstU += dstStrideC;
1162          dstV += dstStrideC;
1163      }
1164
1165      //return;
1166  } else
1167#endif
1168#if H_3D_ARP
1169  if(pcCU->getARPW( uiPartAddr ) > 0  && pcCU->getSlice()->getRefPic( eRefPicList, iRefIdx )->getPOC()== pcCU->getSlice()->getPOC())
1170  {
1171    xPredInterUniARPviewRef( pcCU , uiPartAddr , iWidth , iHeight , eRefPicList , rpcYuvPred , bi );
1172  }
1173  else
1174  {
1175    if(  pcCU->getARPW( uiPartAddr ) > 0 
1176      && pcCU->getPartitionSize(uiPartAddr)==SIZE_2Nx2N
1177      && pcCU->getSlice()->getRefPic( eRefPicList, iRefIdx )->getPOC()!= pcCU->getSlice()->getPOC() 
1178      )
1179    {
1180      xPredInterUniARP( pcCU, uiPartAddr, iWidth, iHeight, eRefPicList, rpcYuvPred, bi );
1181    }
1182    else
1183    {
1184#endif
1185#if H_3D_IC
1186      Bool bICFlag = pcCU->getICFlag( uiPartAddr ) && ( pcCU->getSlice()->getRefPic( eRefPicList, iRefIdx )->getViewIndex() != pcCU->getSlice()->getViewIndex() );
1187      xPredInterLumaBlk  ( pcCU, pcCU->getSlice()->getRefPic( eRefPicList, iRefIdx )->getPicYuvRec(), uiPartAddr, &cMv, iWidth, iHeight, rpcYuvPred, bi
1188#if H_3D_ARP
1189        , false
1190#endif
1191        , bICFlag );
1192      bICFlag = bICFlag && (iWidth > 8);
1193      xPredInterChromaBlk( pcCU, pcCU->getSlice()->getRefPic( eRefPicList, iRefIdx )->getPicYuvRec(), uiPartAddr, &cMv, iWidth, iHeight, rpcYuvPred, bi
1194#if H_3D_ARP
1195        , false
1196#endif
1197        , bICFlag );
1198#else
1199      xPredInterLumaBlk  ( pcCU, pcCU->getSlice()->getRefPic( eRefPicList, iRefIdx )->getPicYuvRec(), uiPartAddr, &cMv, iWidth, iHeight, rpcYuvPred, bi );
1200      xPredInterChromaBlk( pcCU, pcCU->getSlice()->getRefPic( eRefPicList, iRefIdx )->getPicYuvRec(), uiPartAddr, &cMv, iWidth, iHeight, rpcYuvPred, bi );
1201#endif
1202#if H_3D_ARP
1203    }
1204  }
1205#endif
1206}
1207
1208#if H_3D_VSP
1209Void TComPrediction::xPredInterUniVSP( TComDataCU* pcCU, UInt uiPartAddr, Int iWidth, Int iHeight, RefPicList eRefPicList, TComYuv*& rpcYuvPred, Bool bi )
1210{
1211  Int vspSize = pcCU->getVSPFlag( uiPartAddr ) >> 1;
1212
1213  Int widthSubPU, heightSubPU;
1214  if (vspSize)
1215  {
1216    widthSubPU  = 8;
1217    heightSubPU = 4;
1218  }
1219  else
1220  {
1221    widthSubPU  = 4;
1222    heightSubPU = 8;
1223  }
1224  xPredInterUniSubPU( pcCU, uiPartAddr, iWidth, iHeight, eRefPicList, rpcYuvPred, bi, widthSubPU, heightSubPU );
1225}
1226
1227Void TComPrediction::xPredInterUniSubPU( TComDataCU* pcCU, UInt uiPartAddr, Int iWidth, Int iHeight, RefPicList eRefPicList, TComYuv*& rpcYuvPred, Bool bi, Int widthSubPU, Int heightSubPU )
1228{
1229  UInt numPartsInLine       = pcCU->getPic()->getNumPartInWidth();
1230  UInt horiNumPartsInSubPU  = widthSubPU >> 2;
1231  UInt vertNumPartsInSubPU  = (heightSubPU >> 2) * numPartsInLine;
1232
1233  UInt partAddrRasterLine = g_auiZscanToRaster[ uiPartAddr ];
1234
1235  for( Int posY=0; posY<iHeight; posY+=heightSubPU, partAddrRasterLine+=vertNumPartsInSubPU )
1236  {
1237    UInt partAddrRasterSubPU = partAddrRasterLine;
1238    for( Int posX=0; posX<iWidth; posX+=widthSubPU, partAddrRasterSubPU+=horiNumPartsInSubPU )
1239    {
1240      UInt    partAddrSubPU = g_auiRasterToZscan[ partAddrRasterSubPU ];
1241      Int     refIdx        = pcCU->getCUMvField( eRefPicList )->getRefIdx( partAddrSubPU );           assert (refIdx >= 0);
1242      TComMv  cMv           = pcCU->getCUMvField( eRefPicList )->getMv( partAddrSubPU );
1243      pcCU->clipMv(cMv);
1244
1245      xPredInterLumaBlk  ( pcCU, pcCU->getSlice()->getRefPic( eRefPicList, refIdx )->getPicYuvRec(), partAddrSubPU, &cMv, widthSubPU, heightSubPU, rpcYuvPred, bi );
1246      xPredInterChromaBlk( pcCU, pcCU->getSlice()->getRefPic( eRefPicList, refIdx )->getPicYuvRec(), partAddrSubPU, &cMv, widthSubPU, heightSubPU, rpcYuvPred, bi );
1247
1248    }
1249  }
1250}
1251
1252#endif
1253
1254#if H_3D_ARP
1255Void TComPrediction::xPredInterUniARP( TComDataCU* pcCU, UInt uiPartAddr, Int iWidth, Int iHeight, RefPicList eRefPicList, TComYuv*& rpcYuvPred, Bool bi, TComMvField * pNewMvFiled )
1256{
1257  Int         iRefIdx      = pNewMvFiled ? pNewMvFiled->getRefIdx() : pcCU->getCUMvField( eRefPicList )->getRefIdx( uiPartAddr );           
1258  TComMv      cMv          = pNewMvFiled ? pNewMvFiled->getMv()     : pcCU->getCUMvField( eRefPicList )->getMv( uiPartAddr );
1259  Bool        bTobeScaled  = false;
1260  TComPic* pcPicYuvBaseCol = NULL;
1261  TComPic* pcPicYuvBaseRef = NULL;
1262
1263#if H_3D_NBDV
1264  DisInfo cDistparity;
1265  cDistparity.bDV           = pcCU->getDvInfo(uiPartAddr).bDV;
1266  if( cDistparity.bDV )
1267  {
1268    cDistparity.m_acNBDV = pcCU->getDvInfo(0).m_acNBDV;
1269    assert(pcCU->getDvInfo(uiPartAddr).bDV ==  pcCU->getDvInfo(0).bDV);
1270    cDistparity.m_aVIdxCan = pcCU->getDvInfo(uiPartAddr).m_aVIdxCan;
1271  }
1272#else
1273  assert(0); // ARP can be applied only when a DV is available
1274#endif
1275
1276  UChar dW = cDistparity.bDV ? pcCU->getARPW ( uiPartAddr ) : 0;
1277
1278  if( cDistparity.bDV ) 
1279  {
1280    Int arpRefIdx = pcCU->getSlice()->getFirstTRefIdx(eRefPicList);
1281    if( dW > 0 && pcCU->getSlice()->getRefPic( eRefPicList, arpRefIdx )->getPOC()!= pcCU->getSlice()->getPOC() )
1282    {
1283      bTobeScaled = true;
1284    }
1285
1286    pcPicYuvBaseCol =  pcCU->getSlice()->getBaseViewRefPic( pcCU->getSlice()->getPOC(),                              cDistparity.m_aVIdxCan );
1287
1288    pcPicYuvBaseRef =  pcCU->getSlice()->getBaseViewRefPic( pcCU->getSlice()->getRefPic( eRefPicList, arpRefIdx )->getPOC(), cDistparity.m_aVIdxCan );
1289
1290    if (!pcCU->getSlice()->getArpRefPicAvailable( eRefPicList, cDistparity.m_aVIdxCan))
1291    {
1292      dW = 0;
1293      bTobeScaled = false;
1294    }
1295    else
1296    {
1297      assert( pcPicYuvBaseCol->getPOC() == pcCU->getSlice()->getPOC() && pcPicYuvBaseRef->getPOC() == pcCU->getSlice()->getRefPic( eRefPicList, arpRefIdx )->getPOC() );
1298    }
1299
1300    if(bTobeScaled)
1301    {     
1302      Int iCurrPOC    = pcCU->getSlice()->getPOC();
1303      Int iColRefPOC  = pcCU->getSlice()->getRefPOC( eRefPicList, iRefIdx );
1304      Int iCurrRefPOC = pcCU->getSlice()->getRefPOC( eRefPicList,  0);
1305      Int iScale = pcCU-> xGetDistScaleFactor(iCurrPOC, iCurrRefPOC, iCurrPOC, iColRefPOC);
1306      if ( iScale != 4096 )
1307      {
1308        cMv = cMv.scaleMv( iScale );
1309      }
1310      iRefIdx = 0;
1311    }
1312  }
1313
1314  pcCU->clipMv(cMv);
1315  TComPicYuv* pcPicYuvRef = pcCU->getSlice()->getRefPic( eRefPicList, iRefIdx )->getPicYuvRec();
1316  xPredInterLumaBlk  ( pcCU, pcPicYuvRef, uiPartAddr, &cMv, iWidth, iHeight, rpcYuvPred, bi, true );
1317  xPredInterChromaBlk( pcCU, pcPicYuvRef, uiPartAddr, &cMv, iWidth, iHeight, rpcYuvPred, bi, true );
1318
1319  if( dW > 0 )
1320  {
1321    TComYuv * pYuvB0 = &m_acYuvPredBase[0];
1322    TComYuv * pYuvB1  = &m_acYuvPredBase[1];
1323
1324    TComMv cMVwithDisparity = cMv + cDistparity.m_acNBDV;
1325    pcCU->clipMv(cMVwithDisparity);
1326
1327    assert ( cDistparity.bDV );
1328   
1329#if NTT_BUG_FIX_TK54
1330    TComMv cNBDV = cDistparity.m_acNBDV;
1331    pcCU->clipMv( cNBDV );
1332   
1333    pcPicYuvRef = pcPicYuvBaseCol->getPicYuvRec();
1334    xPredInterLumaBlk  ( pcCU, pcPicYuvRef, uiPartAddr, &cNBDV, iWidth, iHeight, pYuvB0, bi, true );
1335    xPredInterChromaBlk( pcCU, pcPicYuvRef, uiPartAddr, &cNBDV, iWidth, iHeight, pYuvB0, bi, true );
1336#else
1337    pcPicYuvRef = pcPicYuvBaseCol->getPicYuvRec();
1338    xPredInterLumaBlk  ( pcCU, pcPicYuvRef, uiPartAddr, &cDistparity.m_acNBDV, iWidth, iHeight, pYuvB0, bi, true );
1339    xPredInterChromaBlk( pcCU, pcPicYuvRef, uiPartAddr, &cDistparity.m_acNBDV, iWidth, iHeight, pYuvB0, bi, true );
1340#endif
1341   
1342    pcPicYuvRef = pcPicYuvBaseRef->getPicYuvRec();
1343    xPredInterLumaBlk  ( pcCU, pcPicYuvRef, uiPartAddr, &cMVwithDisparity, iWidth, iHeight, pYuvB1, bi, true );
1344    xPredInterChromaBlk( pcCU, pcPicYuvRef, uiPartAddr, &cMVwithDisparity, iWidth, iHeight, pYuvB1, bi, true );
1345
1346    pYuvB0->subtractARP( pYuvB0 , pYuvB1 , uiPartAddr , iWidth , iHeight );
1347
1348    if( 2 == dW )
1349    {
1350      pYuvB0->multiplyARP( uiPartAddr , iWidth , iHeight , dW );
1351    }
1352    rpcYuvPred->addARP( rpcYuvPred , pYuvB0 , uiPartAddr , iWidth , iHeight , !bi );
1353  }
1354}
1355Void TComPrediction::xPredInterUniARPviewRef( TComDataCU* pcCU, UInt uiPartAddr, Int iWidth, Int iHeight, RefPicList eRefPicList, TComYuv*& rpcYuvPred, Bool bi, TComMvField * pNewMvFiled )
1356{
1357  Int         iRefIdx       = pcCU->getCUMvField( eRefPicList )->getRefIdx( uiPartAddr );           
1358  TComMv      cDMv          = pcCU->getCUMvField( eRefPicList )->getMv( uiPartAddr );
1359  TComMv      cTempDMv      = cDMv;
1360  UChar       dW            = pcCU->getARPW ( uiPartAddr );
1361
1362  TComPic* pcPicYuvBaseTRef = NULL;
1363  TComPic* pcPicYuvCurrTRef = NULL;
1364  TComPic* pcPicYuvBaseCol  = pcCU->getSlice()->getRefPic( eRefPicList, iRefIdx ); 
1365  TComPicYuv* pcYuvBaseCol  = pcPicYuvBaseCol->getPicYuvRec();   
1366  Bool bTMVAvai = false;     
1367  TComMv cBaseTMV;
1368  if( pNewMvFiled )
1369  {
1370    iRefIdx = pNewMvFiled->getRefIdx(); 
1371    cDMv = pNewMvFiled->getMv();
1372  }
1373  pcCU->clipMv(cTempDMv);
1374
1375  assert(dW > 0);
1376  if (!pcCU->getSlice()->getArpRefPicAvailable( eRefPicList, pcPicYuvBaseCol->getViewIndex()))
1377  {
1378    dW = 0;
1379  }
1380  Int uiLCUAddr,uiAbsPartAddr;
1381  Int irefPUX = pcCU->getCUPelX() + g_auiRasterToPelX[g_auiZscanToRaster[uiPartAddr]] + iWidth/2  + ((cDMv.getHor() + 2)>>2);
1382  Int irefPUY = pcCU->getCUPelY() + g_auiRasterToPelY[g_auiZscanToRaster[uiPartAddr]] + iHeight/2 + ((cDMv.getVer() + 2)>>2);
1383
1384  irefPUX = (Int)Clip3<Int>(0, pcCU->getSlice()->getSPS()-> getPicWidthInLumaSamples()-1, irefPUX);
1385  irefPUY = (Int)Clip3<Int>(0, pcCU->getSlice()->getSPS()->getPicHeightInLumaSamples()-1, irefPUY); 
1386  pcYuvBaseCol->getCUAddrAndPartIdx( irefPUX, irefPUY, uiLCUAddr, uiAbsPartAddr);
1387  TComDataCU *pColCU = pcPicYuvBaseCol->getCU( uiLCUAddr );
1388
1389  if(!pColCU->isIntra(uiAbsPartAddr))
1390  {
1391    TComMvField puMVField;
1392    for(Int iList = 0; iList < (pColCU->getSlice()->isInterB() ? 2: 1) && !bTMVAvai; iList ++)
1393    {
1394      RefPicList eRefPicListCurr = RefPicList(iList);
1395      Int iRef = pColCU->getCUMvField(eRefPicListCurr)->getRefIdx(uiAbsPartAddr);
1396      if( iRef != -1)
1397      {
1398        pcPicYuvBaseTRef = pColCU->getSlice()->getRefPic(eRefPicListCurr, iRef); 
1399        Int  iCurrPOC    = pColCU->getSlice()->getPOC();
1400        Int  iCurrRefPOC = pcPicYuvBaseTRef->getPOC();
1401        Int  iCurrRef    = pcCU->getSlice()->getFirstTRefIdx(eRefPicListCurr);
1402        if( iCurrRef >= 0)
1403        {
1404          pcPicYuvCurrTRef =  pcCU->getSlice()->getRefPic(eRefPicListCurr,iCurrRef); 
1405          Int iTargetPOC = pcPicYuvCurrTRef->getPOC();
1406          {
1407            pcPicYuvBaseTRef =  pcCU->getSlice()->getBaseViewRefPic(iTargetPOC,  pcPicYuvBaseCol->getViewIndex() ); 
1408            if(pcPicYuvBaseTRef)
1409            {
1410              cBaseTMV = pColCU->getCUMvField(eRefPicListCurr)->getMv(uiAbsPartAddr);
1411              Int iScale = pcCU-> xGetDistScaleFactor(iCurrPOC, iTargetPOC, iCurrPOC, iCurrRefPOC);
1412              if ( iScale != 4096 )
1413                cBaseTMV = cBaseTMV.scaleMv( iScale );                 
1414              bTMVAvai = true;
1415              break;
1416            }
1417          }
1418        }
1419      }
1420    }
1421  }
1422  if (bTMVAvai == false)
1423  { 
1424    bTMVAvai = true;
1425    cBaseTMV.set(0, 0);
1426    pcPicYuvBaseTRef =  pColCU->getSlice()->getRefPic(eRefPicList,  pcCU->getSlice()->getFirstTRefIdx(eRefPicList)); 
1427    pcPicYuvCurrTRef =  pcCU->getSlice()->getRefPic  (eRefPicList,  pcCU->getSlice()->getFirstTRefIdx(eRefPicList));     
1428  }
1429
1430  xPredInterLumaBlk  ( pcCU, pcYuvBaseCol, uiPartAddr, &cTempDMv, iWidth, iHeight, rpcYuvPred, bi,        bTMVAvai);
1431  xPredInterChromaBlk( pcCU, pcYuvBaseCol, uiPartAddr, &cTempDMv, iWidth, iHeight, rpcYuvPred, bi,        bTMVAvai);
1432
1433  if( dW > 0 && bTMVAvai ) 
1434  {
1435    TComYuv*    pYuvCurrTRef    = &m_acYuvPredBase[0];
1436    TComYuv*    pYuvBaseTRef    = &m_acYuvPredBase[1];
1437    TComPicYuv* pcYuvCurrTref   = pcPicYuvCurrTRef->getPicYuvRec();       
1438    TComPicYuv* pcYuvBaseTref   = pcPicYuvBaseTRef->getPicYuvRec(); 
1439    TComMv      cTempMv         = cDMv + cBaseTMV;
1440
1441    pcCU->clipMv(cBaseTMV);
1442    pcCU->clipMv(cTempMv);
1443
1444    xPredInterLumaBlk  ( pcCU, pcYuvCurrTref, uiPartAddr, &cBaseTMV, iWidth, iHeight, pYuvCurrTRef, bi,   true);
1445    xPredInterChromaBlk( pcCU, pcYuvCurrTref, uiPartAddr, &cBaseTMV, iWidth, iHeight, pYuvCurrTRef, bi,   true);
1446    xPredInterLumaBlk  ( pcCU, pcYuvBaseTref, uiPartAddr, &cTempMv,  iWidth, iHeight, pYuvBaseTRef, bi,   true); 
1447    xPredInterChromaBlk( pcCU, pcYuvBaseTref, uiPartAddr, &cTempMv,  iWidth, iHeight, pYuvBaseTRef, bi,   true); 
1448
1449    pYuvCurrTRef->subtractARP( pYuvCurrTRef , pYuvBaseTRef , uiPartAddr , iWidth , iHeight ); 
1450    if(dW == 2)
1451    {
1452      pYuvCurrTRef->multiplyARP( uiPartAddr , iWidth , iHeight , dW );
1453    }
1454    rpcYuvPred->addARP( rpcYuvPred , pYuvCurrTRef , uiPartAddr , iWidth , iHeight , !bi ); 
1455  }
1456}
1457
1458#endif
1459
1460Void TComPrediction::xPredInterBi ( TComDataCU* pcCU, UInt uiPartAddr, Int iWidth, Int iHeight, TComYuv*& rpcYuvPred )
1461{
1462  TComYuv* pcMbYuv;
1463  Int      iRefIdx[2] = {-1, -1};
1464
1465  for ( Int iRefList = 0; iRefList < 2; iRefList++ )
1466  {
1467    RefPicList eRefPicList = (iRefList ? REF_PIC_LIST_1 : REF_PIC_LIST_0);
1468    iRefIdx[iRefList] = pcCU->getCUMvField( eRefPicList )->getRefIdx( uiPartAddr );
1469
1470    if ( iRefIdx[iRefList] < 0 )
1471    {
1472      continue;
1473    }
1474
1475    assert( iRefIdx[iRefList] < pcCU->getSlice()->getNumRefIdx(eRefPicList) );
1476
1477    pcMbYuv = &m_acYuvPred[iRefList];
1478    if( pcCU->getCUMvField( REF_PIC_LIST_0 )->getRefIdx( uiPartAddr ) >= 0 && pcCU->getCUMvField( REF_PIC_LIST_1 )->getRefIdx( uiPartAddr ) >= 0 )
1479    {
1480      xPredInterUni ( pcCU, uiPartAddr, iWidth, iHeight, eRefPicList, pcMbYuv, true );
1481    }
1482    else
1483    {
1484      if ( ( pcCU->getSlice()->getPPS()->getUseWP()       && pcCU->getSlice()->getSliceType() == P_SLICE ) || 
1485           ( pcCU->getSlice()->getPPS()->getWPBiPred() && pcCU->getSlice()->getSliceType() == B_SLICE ) )
1486      {
1487        xPredInterUni ( pcCU, uiPartAddr, iWidth, iHeight, eRefPicList, pcMbYuv, true );
1488      }
1489      else
1490      {
1491        xPredInterUni ( pcCU, uiPartAddr, iWidth, iHeight, eRefPicList, pcMbYuv );
1492      }
1493    }
1494  }
1495
1496  if ( pcCU->getSlice()->getPPS()->getWPBiPred() && pcCU->getSlice()->getSliceType() == B_SLICE  )
1497  {
1498    xWeightedPredictionBi( pcCU, &m_acYuvPred[0], &m_acYuvPred[1], iRefIdx[0], iRefIdx[1], uiPartAddr, iWidth, iHeight, rpcYuvPred );
1499  } 
1500  else if ( pcCU->getSlice()->getPPS()->getUseWP() && pcCU->getSlice()->getSliceType() == P_SLICE )
1501  {
1502    xWeightedPredictionUni( pcCU, &m_acYuvPred[0], uiPartAddr, iWidth, iHeight, REF_PIC_LIST_0, rpcYuvPred ); 
1503  }
1504  else
1505  {
1506    xWeightedAverage( &m_acYuvPred[0], &m_acYuvPred[1], iRefIdx[0], iRefIdx[1], uiPartAddr, iWidth, iHeight, rpcYuvPred );
1507  }
1508}
1509
1510#if H_3D_VSP
1511
1512Void TComPrediction::xPredInterBiVSP( TComDataCU* pcCU, UInt uiPartAddr, Int iWidth, Int iHeight, TComYuv*& rpcYuvPred )
1513{
1514  TComYuv* pcMbYuv;
1515  Int      iRefIdx[2] = {-1, -1};
1516  Bool     bi = (pcCU->getCUMvField( REF_PIC_LIST_0 )->getRefIdx( uiPartAddr ) >= 0 && pcCU->getCUMvField( REF_PIC_LIST_1 )->getRefIdx( uiPartAddr ) >= 0);
1517
1518  for ( Int iRefList = 0; iRefList < 2; iRefList++ )
1519  {
1520    RefPicList eRefPicList = RefPicList(iRefList);
1521    iRefIdx[iRefList] = pcCU->getCUMvField( eRefPicList )->getRefIdx( uiPartAddr );
1522
1523    if ( iRefIdx[iRefList] < 0 )
1524    {
1525      continue;
1526    }
1527    assert( iRefIdx[iRefList] < pcCU->getSlice()->getNumRefIdx(eRefPicList) );
1528
1529    pcMbYuv = &m_acYuvPred[iRefList];
1530    xPredInterUniVSP ( pcCU, uiPartAddr, iWidth, iHeight, eRefPicList, pcMbYuv, bi );
1531  }
1532
1533  xWeightedAverage( &m_acYuvPred[0], &m_acYuvPred[1], iRefIdx[0], iRefIdx[1], uiPartAddr, iWidth, iHeight, rpcYuvPred );
1534}
1535
1536#endif
1537
1538/**
1539 * \brief Generate motion-compensated luma block
1540 *
1541 * \param cu       Pointer to current CU
1542 * \param refPic   Pointer to reference picture
1543 * \param partAddr Address of block within CU
1544 * \param mv       Motion vector
1545 * \param width    Width of block
1546 * \param height   Height of block
1547 * \param dstPic   Pointer to destination picture
1548 * \param bi       Flag indicating whether bipred is used
1549 */
1550Void TComPrediction::xPredInterLumaBlk( TComDataCU *cu, TComPicYuv *refPic, UInt partAddr, TComMv *mv, Int width, Int height, TComYuv *&dstPic, Bool bi
1551#if H_3D_ARP
1552    , Bool filterType
1553#endif
1554#if H_3D_IC
1555    , Bool bICFlag
1556#endif
1557  )
1558{
1559  Int refStride = refPic->getStride(); 
1560  Int refOffset = ( mv->getHor() >> 2 ) + ( mv->getVer() >> 2 ) * refStride;
1561  Pel *ref      = refPic->getLumaAddr( cu->getAddr(), cu->getZorderIdxInCU() + partAddr ) + refOffset;
1562 
1563  Int dstStride = dstPic->getStride();
1564  Pel *dst      = dstPic->getLumaAddr( partAddr );
1565 
1566  Int xFrac = mv->getHor() & 0x3;
1567  Int yFrac = mv->getVer() & 0x3;
1568
1569#if H_3D_IC
1570  if( cu->getSlice()->getIsDepth() )
1571  {
1572    refOffset = mv->getHor() + mv->getVer() * refStride;
1573    ref       = refPic->getLumaAddr( cu->getAddr(), cu->getZorderIdxInCU() + partAddr ) + refOffset;
1574    xFrac     = 0;
1575    yFrac     = 0;
1576  }
1577#endif
1578  if ( yFrac == 0 )
1579  {
1580#if H_3D_IC
1581    m_if.filterHorLuma( ref, refStride, dst, dstStride, width, height, xFrac,       !bi || bICFlag
1582#else
1583    m_if.filterHorLuma( ref, refStride, dst, dstStride, width, height, xFrac,       !bi
1584#endif
1585#if H_3D_ARP
1586    , filterType
1587#endif
1588      );
1589  }
1590  else if ( xFrac == 0 )
1591  {
1592#if H_3D_IC
1593    m_if.filterVerLuma( ref, refStride, dst, dstStride, width, height, yFrac, true, !bi || bICFlag
1594#else
1595    m_if.filterVerLuma( ref, refStride, dst, dstStride, width, height, yFrac, true, !bi
1596#endif
1597#if H_3D_ARP
1598    , filterType
1599#endif
1600      );
1601  }
1602  else
1603  {
1604    Int tmpStride = m_filteredBlockTmp[0].getStride();
1605    Short *tmp    = m_filteredBlockTmp[0].getLumaAddr();
1606
1607    Int filterSize = NTAPS_LUMA;
1608    Int halfFilterSize = ( filterSize >> 1 );
1609
1610    m_if.filterHorLuma(ref - (halfFilterSize-1)*refStride, refStride, tmp, tmpStride, width, height+filterSize-1, xFrac, false     
1611#if H_3D_ARP
1612    , filterType
1613#endif
1614      );
1615#if H_3D_IC
1616    m_if.filterVerLuma(tmp + (halfFilterSize-1)*tmpStride, tmpStride, dst, dstStride, width, height,              yFrac, false, !bi || bICFlag
1617#else
1618    m_if.filterVerLuma(tmp + (halfFilterSize-1)*tmpStride, tmpStride, dst, dstStride, width, height,              yFrac, false, !bi
1619#endif
1620#if H_3D_ARP
1621    , filterType
1622#endif
1623      );   
1624  }
1625
1626#if H_3D_IC
1627  if( bICFlag )
1628  {
1629    Int a, b, i, j;
1630    const Int iShift = IC_CONST_SHIFT;
1631
1632    xGetLLSICPrediction( cu, mv, refPic, a, b, TEXT_LUMA );
1633
1634
1635    for ( i = 0; i < height; i++ )
1636    {
1637      for ( j = 0; j < width; j++ )
1638      {
1639          dst[j] = Clip3( 0, ( 1 << g_bitDepthY ) - 1, ( ( a*dst[j] ) >> iShift ) + b );
1640      }
1641      dst += dstStride;
1642    }
1643
1644    if(bi)
1645    {
1646      Pel *dst2      = dstPic->getLumaAddr( partAddr );
1647      Int shift = IF_INTERNAL_PREC - g_bitDepthY;
1648      for (i = 0; i < height; i++)
1649      {
1650        for (j = 0; j < width; j++)
1651        {
1652          Short val = dst2[j] << shift;
1653          dst2[j] = val - (Short)IF_INTERNAL_OFFS;
1654        }
1655        dst2 += dstStride;
1656      }
1657    }
1658  }
1659#endif
1660}
1661
1662/**
1663 * \brief Generate motion-compensated chroma block
1664 *
1665 * \param cu       Pointer to current CU
1666 * \param refPic   Pointer to reference picture
1667 * \param partAddr Address of block within CU
1668 * \param mv       Motion vector
1669 * \param width    Width of block
1670 * \param height   Height of block
1671 * \param dstPic   Pointer to destination picture
1672 * \param bi       Flag indicating whether bipred is used
1673 */
1674Void TComPrediction::xPredInterChromaBlk( TComDataCU *cu, TComPicYuv *refPic, UInt partAddr, TComMv *mv, Int width, Int height, TComYuv *&dstPic, Bool bi
1675#if H_3D_ARP
1676    , Bool filterType
1677#endif
1678#if H_3D_IC
1679    , Bool bICFlag
1680#endif
1681  )
1682{
1683  Int     refStride  = refPic->getCStride();
1684  Int     dstStride  = dstPic->getCStride();
1685 
1686  Int     refOffset  = (mv->getHor() >> 3) + (mv->getVer() >> 3) * refStride;
1687 
1688  Pel*    refCb     = refPic->getCbAddr( cu->getAddr(), cu->getZorderIdxInCU() + partAddr ) + refOffset;
1689  Pel*    refCr     = refPic->getCrAddr( cu->getAddr(), cu->getZorderIdxInCU() + partAddr ) + refOffset;
1690 
1691  Pel* dstCb = dstPic->getCbAddr( partAddr );
1692  Pel* dstCr = dstPic->getCrAddr( partAddr );
1693 
1694  Int     xFrac  = mv->getHor() & 0x7;
1695  Int     yFrac  = mv->getVer() & 0x7;
1696  UInt    cxWidth  = width  >> 1;
1697  UInt    cxHeight = height >> 1;
1698 
1699  Int     extStride = m_filteredBlockTmp[0].getStride();
1700  Short*  extY      = m_filteredBlockTmp[0].getLumaAddr();
1701 
1702  Int filterSize = NTAPS_CHROMA;
1703 
1704  Int halfFilterSize = (filterSize>>1);
1705 
1706  if ( yFrac == 0 )
1707  {
1708#if H_3D_IC
1709    m_if.filterHorChroma(refCb, refStride, dstCb,  dstStride, cxWidth, cxHeight, xFrac, !bi || bICFlag
1710#else
1711    m_if.filterHorChroma(refCb, refStride, dstCb,  dstStride, cxWidth, cxHeight, xFrac, !bi
1712#endif
1713#if H_3D_ARP
1714    , filterType
1715#endif
1716    );   
1717#if H_3D_IC
1718    m_if.filterHorChroma(refCr, refStride, dstCr,  dstStride, cxWidth, cxHeight, xFrac, !bi || bICFlag
1719#else
1720    m_if.filterHorChroma(refCr, refStride, dstCr,  dstStride, cxWidth, cxHeight, xFrac, !bi
1721#endif
1722#if H_3D_ARP
1723    , filterType
1724#endif
1725    );
1726  }
1727  else if ( xFrac == 0 )
1728  {
1729#if H_3D_IC
1730    m_if.filterVerChroma(refCb, refStride, dstCb, dstStride, cxWidth, cxHeight, yFrac, true, !bi || bICFlag
1731#else
1732    m_if.filterVerChroma(refCb, refStride, dstCb, dstStride, cxWidth, cxHeight, yFrac, true, !bi
1733#endif
1734#if H_3D_ARP
1735    , filterType
1736#endif
1737    );
1738#if H_3D_IC
1739    m_if.filterVerChroma(refCr, refStride, dstCr, dstStride, cxWidth, cxHeight, yFrac, true, !bi || bICFlag
1740#else
1741    m_if.filterVerChroma(refCr, refStride, dstCr, dstStride, cxWidth, cxHeight, yFrac, true, !bi
1742#endif
1743#if H_3D_ARP
1744    , filterType
1745#endif
1746    );
1747  }
1748  else
1749  {
1750    m_if.filterHorChroma(refCb - (halfFilterSize-1)*refStride, refStride, extY,  extStride, cxWidth, cxHeight+filterSize-1, xFrac, false
1751#if H_3D_ARP
1752    , filterType
1753#endif 
1754      );
1755#if H_3D_IC
1756    m_if.filterVerChroma(extY  + (halfFilterSize-1)*extStride, extStride, dstCb, dstStride, cxWidth, cxHeight  , yFrac, false, !bi || bICFlag
1757#else
1758    m_if.filterVerChroma(extY  + (halfFilterSize-1)*extStride, extStride, dstCb, dstStride, cxWidth, cxHeight  , yFrac, false, !bi
1759#endif
1760#if H_3D_ARP
1761    , filterType
1762#endif
1763      );
1764   
1765    m_if.filterHorChroma(refCr - (halfFilterSize-1)*refStride, refStride, extY,  extStride, cxWidth, cxHeight+filterSize-1, xFrac, false
1766#if H_3D_ARP
1767    , filterType
1768#endif
1769      );
1770#if H_3D_IC
1771    m_if.filterVerChroma(extY  + (halfFilterSize-1)*extStride, extStride, dstCr, dstStride, cxWidth, cxHeight  , yFrac, false, !bi || bICFlag
1772#else
1773    m_if.filterVerChroma(extY  + (halfFilterSize-1)*extStride, extStride, dstCr, dstStride, cxWidth, cxHeight  , yFrac, false, !bi
1774#endif
1775#if H_3D_ARP
1776    , filterType
1777#endif
1778      );   
1779  }
1780
1781#if H_3D_IC
1782  if( bICFlag )
1783  {
1784    Int a, b, i, j;
1785    const Int iShift = IC_CONST_SHIFT;
1786    xGetLLSICPrediction( cu, mv, refPic, a, b, TEXT_CHROMA_U ); // Cb
1787    for ( i = 0; i < cxHeight; i++ )
1788    {
1789      for ( j = 0; j < cxWidth; j++ )
1790      {
1791          dstCb[j] = Clip3(  0, ( 1 << g_bitDepthC ) - 1, ( ( a*dstCb[j] ) >> iShift ) + b );
1792      }
1793      dstCb += dstStride;
1794    }
1795    xGetLLSICPrediction( cu, mv, refPic, a, b, TEXT_CHROMA_V ); // Cr
1796    for ( i = 0; i < cxHeight; i++ )
1797    {
1798      for ( j = 0; j < cxWidth; j++ )
1799      {
1800          dstCr[j] = Clip3( 0, ( 1 << g_bitDepthC ) - 1, ( ( a*dstCr[j] ) >> iShift ) + b );
1801      }
1802      dstCr += dstStride;
1803    }
1804
1805    if(bi)
1806    {
1807      Pel* dstCb2 = dstPic->getCbAddr( partAddr );
1808      Pel* dstCr2 = dstPic->getCrAddr( partAddr );
1809      Int shift = IF_INTERNAL_PREC - g_bitDepthC;
1810      for (i = 0; i < cxHeight; i++)
1811      {
1812        for (j = 0; j < cxWidth; j++)
1813        {
1814          Short val = dstCb2[j] << shift;
1815          dstCb2[j] = val - (Short)IF_INTERNAL_OFFS;
1816
1817          val = dstCr2[j] << shift;
1818          dstCr2[j] = val - (Short)IF_INTERNAL_OFFS;
1819        }
1820        dstCb2 += dstStride;
1821        dstCr2 += dstStride;
1822      }
1823    }
1824  }
1825#endif
1826}
1827
1828Void TComPrediction::xWeightedAverage( TComYuv* pcYuvSrc0, TComYuv* pcYuvSrc1, Int iRefIdx0, Int iRefIdx1, UInt uiPartIdx, Int iWidth, Int iHeight, TComYuv*& rpcYuvDst )
1829{
1830  if( iRefIdx0 >= 0 && iRefIdx1 >= 0 )
1831  {
1832    rpcYuvDst->addAvg( pcYuvSrc0, pcYuvSrc1, uiPartIdx, iWidth, iHeight );
1833  }
1834  else if ( iRefIdx0 >= 0 && iRefIdx1 <  0 )
1835  {
1836    pcYuvSrc0->copyPartToPartYuv( rpcYuvDst, uiPartIdx, iWidth, iHeight );
1837  }
1838  else if ( iRefIdx0 <  0 && iRefIdx1 >= 0 )
1839  {
1840    pcYuvSrc1->copyPartToPartYuv( rpcYuvDst, uiPartIdx, iWidth, iHeight );
1841  }
1842}
1843
1844// AMVP
1845Void TComPrediction::getMvPredAMVP( TComDataCU* pcCU, UInt uiPartIdx, UInt uiPartAddr, RefPicList eRefPicList, TComMv& rcMvPred )
1846{
1847  AMVPInfo* pcAMVPInfo = pcCU->getCUMvField(eRefPicList)->getAMVPInfo();
1848  if( pcAMVPInfo->iN <= 1 )
1849  {
1850    rcMvPred = pcAMVPInfo->m_acMvCand[0];
1851
1852    pcCU->setMVPIdxSubParts( 0, eRefPicList, uiPartAddr, uiPartIdx, pcCU->getDepth(uiPartAddr));
1853    pcCU->setMVPNumSubParts( pcAMVPInfo->iN, eRefPicList, uiPartAddr, uiPartIdx, pcCU->getDepth(uiPartAddr));
1854    return;
1855  }
1856
1857  assert(pcCU->getMVPIdx(eRefPicList,uiPartAddr) >= 0);
1858  rcMvPred = pcAMVPInfo->m_acMvCand[pcCU->getMVPIdx(eRefPicList,uiPartAddr)];
1859  return;
1860}
1861
1862/** Function for deriving planar intra prediction.
1863 * \param pSrc pointer to reconstructed sample array
1864 * \param srcStride the stride of the reconstructed sample array
1865 * \param rpDst reference to pointer for the prediction sample array
1866 * \param dstStride the stride of the prediction sample array
1867 * \param width the width of the block
1868 * \param height the height of the block
1869 *
1870 * This function derives the prediction samples for planar mode (intra coding).
1871 */
1872Void TComPrediction::xPredIntraPlanar( Int* pSrc, Int srcStride, Pel* rpDst, Int dstStride, UInt width, UInt height )
1873{
1874  assert(width == height);
1875
1876  Int k, l, bottomLeft, topRight;
1877  Int horPred;
1878  Int leftColumn[MAX_CU_SIZE+1], topRow[MAX_CU_SIZE+1], bottomRow[MAX_CU_SIZE], rightColumn[MAX_CU_SIZE];
1879  UInt blkSize = width;
1880  UInt offset2D = width;
1881  UInt shift1D = g_aucConvertToBit[ width ] + 2;
1882  UInt shift2D = shift1D + 1;
1883
1884  // Get left and above reference column and row
1885  for(k=0;k<blkSize+1;k++)
1886  {
1887    topRow[k] = pSrc[k-srcStride];
1888    leftColumn[k] = pSrc[k*srcStride-1];
1889  }
1890
1891  // Prepare intermediate variables used in interpolation
1892  bottomLeft = leftColumn[blkSize];
1893  topRight   = topRow[blkSize];
1894  for (k=0;k<blkSize;k++)
1895  {
1896    bottomRow[k]   = bottomLeft - topRow[k];
1897    rightColumn[k] = topRight   - leftColumn[k];
1898    topRow[k]      <<= shift1D;
1899    leftColumn[k]  <<= shift1D;
1900  }
1901
1902  // Generate prediction signal
1903  for (k=0;k<blkSize;k++)
1904  {
1905    horPred = leftColumn[k] + offset2D;
1906    for (l=0;l<blkSize;l++)
1907    {
1908      horPred += rightColumn[k];
1909      topRow[l] += bottomRow[l];
1910      rpDst[k*dstStride+l] = ( (horPred + topRow[l]) >> shift2D );
1911    }
1912  }
1913}
1914
1915/** Function for filtering intra DC predictor.
1916 * \param pSrc pointer to reconstructed sample array
1917 * \param iSrcStride the stride of the reconstructed sample array
1918 * \param rpDst reference to pointer for the prediction sample array
1919 * \param iDstStride the stride of the prediction sample array
1920 * \param iWidth the width of the block
1921 * \param iHeight the height of the block
1922 *
1923 * This function performs filtering left and top edges of the prediction samples for DC mode (intra coding).
1924 */
1925Void TComPrediction::xDCPredFiltering( Int* pSrc, Int iSrcStride, Pel*& rpDst, Int iDstStride, Int iWidth, Int iHeight )
1926{
1927  Pel* pDst = rpDst;
1928  Int x, y, iDstStride2, iSrcStride2;
1929
1930  // boundary pixels processing
1931  pDst[0] = (Pel)((pSrc[-iSrcStride] + pSrc[-1] + 2 * pDst[0] + 2) >> 2);
1932
1933  for ( x = 1; x < iWidth; x++ )
1934  {
1935    pDst[x] = (Pel)((pSrc[x - iSrcStride] +  3 * pDst[x] + 2) >> 2);
1936  }
1937
1938  for ( y = 1, iDstStride2 = iDstStride, iSrcStride2 = iSrcStride-1; y < iHeight; y++, iDstStride2+=iDstStride, iSrcStride2+=iSrcStride )
1939  {
1940    pDst[iDstStride2] = (Pel)((pSrc[iSrcStride2] + 3 * pDst[iDstStride2] + 2) >> 2);
1941  }
1942
1943  return;
1944}
1945#if H_3D_IC
1946/** Function for deriving the position of first non-zero binary bit of a value
1947 * \param x input value
1948 *
1949 * This function derives the position of first non-zero binary bit of a value
1950 */
1951Int GetMSB( UInt x )
1952{
1953  Int iMSB = 0, bits = ( sizeof( Int ) << 3 ), y = 1;
1954
1955  while( x > 1 )
1956  {
1957    bits >>= 1;
1958    y = x >> bits;
1959
1960    if( y )
1961    {
1962      x = y;
1963      iMSB += bits;
1964    }
1965  }
1966
1967  iMSB+=y;
1968
1969  return iMSB;
1970}
1971
1972
1973/** Function for deriving LM illumination compensation.
1974 */
1975Void TComPrediction::xGetLLSICPrediction( TComDataCU* pcCU, TComMv *pMv, TComPicYuv *pRefPic, Int &a, Int &b, TextType eType )
1976{
1977  TComPicYuv *pRecPic = pcCU->getPic()->getPicYuvRec();
1978  Pel *pRec = NULL, *pRef = NULL;
1979  UInt uiWidth, uiHeight, uiTmpPartIdx;
1980  Int iRecStride = ( eType == TEXT_LUMA ) ? pRecPic->getStride() : pRecPic->getCStride();
1981  Int iRefStride = ( eType == TEXT_LUMA ) ? pRefPic->getStride() : pRefPic->getCStride();
1982  Int iCUPelX, iCUPelY, iRefX, iRefY, iRefOffset, iHor, iVer;
1983
1984  iCUPelX = pcCU->getCUPelX() + g_auiRasterToPelX[g_auiZscanToRaster[pcCU->getZorderIdxInCU()]];
1985  iCUPelY = pcCU->getCUPelY() + g_auiRasterToPelY[g_auiZscanToRaster[pcCU->getZorderIdxInCU()]];
1986  iHor = pcCU->getSlice()->getIsDepth() ? pMv->getHor() : ( ( pMv->getHor() + 2 ) >> 2 );
1987  iVer = pcCU->getSlice()->getIsDepth() ? pMv->getVer() : ( ( pMv->getVer() + 2 ) >> 2 );
1988  iRefX   = iCUPelX + iHor;
1989  iRefY   = iCUPelY + iVer;
1990  if( eType != TEXT_LUMA )
1991  {
1992    iHor = pcCU->getSlice()->getIsDepth() ? ( ( pMv->getHor() + 1 ) >> 1 ) : ( ( pMv->getHor() + 4 ) >> 3 );
1993    iVer = pcCU->getSlice()->getIsDepth() ? ( ( pMv->getVer() + 1 ) >> 1 ) : ( ( pMv->getVer() + 4 ) >> 3 );
1994  }
1995  uiWidth  = ( eType == TEXT_LUMA ) ? pcCU->getWidth( 0 )  : ( pcCU->getWidth( 0 )  >> 1 );
1996  uiHeight = ( eType == TEXT_LUMA ) ? pcCU->getHeight( 0 ) : ( pcCU->getHeight( 0 ) >> 1 );
1997
1998  Int i, j, iCountShift = 0;
1999
2000  // LLS parameters estimation -->
2001
2002  Int x = 0, y = 0, xx = 0, xy = 0;
2003  Int precShift = std::max(0, (( eType == TEXT_LUMA ) ? g_bitDepthY : g_bitDepthC) - 12);
2004
2005  if( pcCU->getPUAbove( uiTmpPartIdx, pcCU->getZorderIdxInCU() ) && iCUPelY > 0 && iRefY > 0 )
2006  {
2007    iRefOffset = iHor + iVer * iRefStride - iRefStride;
2008    if( eType == TEXT_LUMA )
2009    {
2010      pRef = pRefPic->getLumaAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() ) + iRefOffset;
2011      pRec = pRecPic->getLumaAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() ) - iRecStride;
2012    }
2013    else if( eType == TEXT_CHROMA_U )
2014    {
2015      pRef = pRefPic->getCbAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() ) + iRefOffset;
2016      pRec = pRecPic->getCbAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() ) - iRecStride;
2017    }
2018    else
2019    {
2020      assert( eType == TEXT_CHROMA_V );
2021      pRef = pRefPic->getCrAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() ) + iRefOffset;
2022      pRec = pRecPic->getCrAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() ) - iRecStride;
2023    }
2024
2025    for( j = 0; j < uiWidth; j+=2 )
2026    {
2027      x += pRef[j];
2028      y += pRec[j];
2029      xx += (pRef[j] * pRef[j])>>precShift;
2030      xy += (pRef[j] * pRec[j])>>precShift;
2031    }
2032    iCountShift += g_aucConvertToBit[ uiWidth ] + 1;
2033  }
2034
2035
2036  if( pcCU->getPULeft( uiTmpPartIdx, pcCU->getZorderIdxInCU() ) && iCUPelX > 0 && iRefX > 0 )
2037  {
2038    iRefOffset = iHor + iVer * iRefStride - 1;
2039    if( eType == TEXT_LUMA )
2040    {
2041      pRef = pRefPic->getLumaAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() ) + iRefOffset;
2042      pRec = pRecPic->getLumaAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() ) - 1;
2043    }
2044    else if( eType == TEXT_CHROMA_U )
2045    {
2046      pRef = pRefPic->getCbAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() ) + iRefOffset;
2047      pRec = pRecPic->getCbAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() ) - 1;
2048    }
2049    else
2050    {
2051      assert( eType == TEXT_CHROMA_V );
2052      pRef = pRefPic->getCrAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() ) + iRefOffset;
2053      pRec = pRecPic->getCrAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() ) - 1;
2054    }
2055
2056    for( i = 0; i < uiHeight; i+=2 )
2057    {
2058      x += pRef[0];
2059      y += pRec[0];
2060
2061      xx += (pRef[0] * pRef[0])>>precShift;
2062      xy += (pRef[0] * pRec[0])>>precShift;
2063
2064      pRef += iRefStride*2;
2065      pRec += iRecStride*2;
2066    }
2067    iCountShift += iCountShift > 0 ? 1 : ( g_aucConvertToBit[ uiWidth ] + 1 );
2068  }
2069
2070  xy += xx >> IC_REG_COST_SHIFT;
2071  xx += xx >> IC_REG_COST_SHIFT;
2072  Int a1 = ( xy << iCountShift ) - ((y * x) >> precShift);
2073  Int a2 = ( xx << iCountShift ) - ((x * x) >> precShift);
2074  const Int iShift = IC_CONST_SHIFT;
2075  {
2076    {
2077      const Int iShiftA2 = 6;
2078      const Int iAccuracyShift = 15;
2079
2080      Int iScaleShiftA2 = 0;
2081      Int iScaleShiftA1 = 0;
2082      Int a1s = a1;
2083      Int a2s = a2;
2084
2085      a1 = Clip3(0, 2*a2, a1);
2086      iScaleShiftA2 = GetMSB( abs( a2 ) ) - iShiftA2;
2087      iScaleShiftA1 = iScaleShiftA2 - IC_SHIFT_DIFF;
2088
2089      if( iScaleShiftA1 < 0 )
2090      {
2091        iScaleShiftA1 = 0;
2092      }
2093
2094      if( iScaleShiftA2 < 0 )
2095      {
2096        iScaleShiftA2 = 0;
2097      }
2098
2099      Int iScaleShiftA = iScaleShiftA2 + iAccuracyShift - iShift - iScaleShiftA1;
2100
2101
2102      a2s = a2 >> iScaleShiftA2;
2103
2104      a1s = a1 >> iScaleShiftA1;
2105
2106      a = a1s * m_uiaShift[ a2s ];
2107      a = a >> iScaleShiftA;
2108      b = (  y - ( ( a * x ) >> iShift ) + ( 1 << ( iCountShift - 1 ) ) ) >> iCountShift;
2109    }
2110  }   
2111}
2112#endif
2113
2114#if H_3D_DIM
2115Void TComPrediction::xPredBiSegDCs( Int* ptrSrc, UInt srcStride, Bool* biSegPattern, Int patternStride, Pel& predDC1, Pel& predDC2 )
2116{
2117  Int  refDC1, refDC2;
2118  const Int  iTR = (   patternStride - 1        ) - srcStride;
2119  const Int  iTM = ( ( patternStride - 1 ) >> 1 ) - srcStride;
2120  const Int  iLB = (   patternStride - 1        ) * srcStride - 1;
2121  const Int  iLM = ( ( patternStride - 1 ) >> 1 ) * srcStride - 1;
2122
2123  Bool bL = ( biSegPattern[0] != biSegPattern[(patternStride-1)*patternStride] );
2124  Bool bT = ( biSegPattern[0] != biSegPattern[(patternStride-1)]               );
2125
2126  if( bL == bT )
2127  {
2128    const Int  iTRR = ( patternStride * 2 - 1  ) - srcStride; 
2129    const Int  iLBB = ( patternStride * 2 - 1  ) * srcStride - 1;
2130    refDC1 = bL ? ( ptrSrc[iTR] + ptrSrc[iLB] )>>1 : (abs(ptrSrc[iTRR] - ptrSrc[-(Int)srcStride]) > abs(ptrSrc[iLBB] - ptrSrc[ -1]) ? ptrSrc[iTRR] : ptrSrc[iLBB]);
2131    refDC2 =      ( ptrSrc[ -1] + ptrSrc[-(Int)srcStride] )>>1;
2132  }
2133  else
2134  {
2135    refDC1 = bL ? ptrSrc[iLB] : ptrSrc[iTR];
2136    refDC2 = bL ? ptrSrc[iTM] : ptrSrc[iLM];
2137  }
2138
2139  predDC1 = biSegPattern[0] ? refDC1 : refDC2;
2140  predDC2 = biSegPattern[0] ? refDC2 : refDC1;
2141}
2142
2143Void TComPrediction::xAssignBiSegDCs( Pel* ptrDst, UInt dstStride, Bool* biSegPattern, Int patternStride, Pel valDC1, Pel valDC2 )
2144{
2145  if( dstStride == patternStride )
2146  {
2147    for( UInt k = 0; k < (patternStride * patternStride); k++ )
2148    {
2149      if( true == biSegPattern[k] ) { ptrDst[k] = valDC2; }
2150      else                          { ptrDst[k] = valDC1; }
2151    }
2152  }
2153  else
2154  {
2155    Pel* piTemp = ptrDst;
2156    for( UInt uiY = 0; uiY < patternStride; uiY++ )
2157    {
2158      for( UInt uiX = 0; uiX < patternStride; uiX++ )
2159      {
2160        if( true == biSegPattern[uiX] ) { piTemp[uiX] = valDC2; }
2161        else                            { piTemp[uiX] = valDC1; }
2162      }
2163      piTemp       += dstStride;
2164      biSegPattern += patternStride;
2165    }
2166  }
2167}
2168
2169#if H_3D_DIM_DMM
2170
2171Void TComPrediction::xPredContourFromTex( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiWidth, UInt uiHeight, TComWedgelet* pcContourWedge )
2172{
2173  pcContourWedge->clear();
2174
2175  // get copy of co-located texture luma block
2176  TComYuv cTempYuv;
2177  cTempYuv.create( uiWidth, uiHeight ); 
2178  cTempYuv.clear();
2179  Pel* piRefBlkY = cTempYuv.getLumaAddr();
2180  xCopyTextureLumaBlock( pcCU, uiAbsPartIdx, piRefBlkY, uiWidth, uiHeight );
2181  piRefBlkY = cTempYuv.getLumaAddr();
2182
2183  // find contour for texture luma block
2184  UInt iDC = 0;
2185  for( UInt k = 0; k < (uiWidth*uiHeight); k++ ) 
2186  { 
2187    iDC += piRefBlkY[k]; 
2188  }
2189
2190  Int cuMaxLog2Size = g_aucConvertToBit[g_uiMaxCUWidth]+2;   //
2191  iDC = iDC >> (cuMaxLog2Size - pcCU->getDepth(0))*2;        //  iDC /= (uiWidth*uiHeight);
2192
2193  piRefBlkY = cTempYuv.getLumaAddr();
2194
2195  Bool* pabContourPattern = pcContourWedge->getPattern();
2196  for( UInt k = 0; k < (uiWidth*uiHeight); k++ ) 
2197  { 
2198    pabContourPattern[k] = (piRefBlkY[k] > iDC) ? true : false;
2199  }
2200
2201  cTempYuv.destroy();
2202}
2203
2204
2205Void TComPrediction::xCopyTextureLumaBlock( TComDataCU* pcCU, UInt uiAbsPartIdx, Pel* piDestBlockY, UInt uiWidth, UInt uiHeight )
2206{
2207  TComPicYuv* pcPicYuvRef = pcCU->getSlice()->getTexturePic()->getPicYuvRec();
2208  assert( pcPicYuvRef != NULL );
2209  Int         iRefStride = pcPicYuvRef->getStride();
2210  Pel*        piRefY = pcPicYuvRef->getLumaAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() + uiAbsPartIdx );
2211
2212  for ( Int y = 0; y < uiHeight; y++ )
2213  {
2214    ::memcpy(piDestBlockY, piRefY, sizeof(Pel)*uiWidth);
2215    piDestBlockY += uiWidth;
2216    piRefY += iRefStride;
2217  }
2218}
2219#endif
2220
2221
2222#if H_3D_DIM_SDC
2223Void TComPrediction::analyzeSegmentsSDC( Pel* pOrig, UInt uiStride, UInt uiSize, Pel* rpSegMeans, UInt uiNumSegments, Bool* pMask, UInt uiMaskStride
2224                                         ,UInt uiIntraMode
2225                                         ,Bool orgDC
2226                                        )
2227{
2228  Int iSumDepth[2];
2229  memset(iSumDepth, 0, sizeof(Int)*2);
2230  Int iSumPix[2];
2231  memset(iSumPix, 0, sizeof(Int)*2);
2232  for( Int i = 0; i < uiNumSegments; i++ )
2233  {
2234    rpSegMeans[i] = 0;
2235  }
2236  if (orgDC == false)
2237  {
2238    Pel* pLeftTop = pOrig;
2239    Pel* pRightTop = pOrig + (uiSize-1);
2240    Pel* pLeftBottom = (pOrig+ (uiStride*(uiSize-1)));
2241    Pel* pRightBottom = (pOrig+ (uiStride*(uiSize-1)) + (uiSize-1));
2242
2243    rpSegMeans[0] = (*pLeftTop + *pRightTop + *pLeftBottom + *pRightBottom + 2)>>2;
2244    return;
2245  }
2246
2247  Int subSamplePix;
2248  if ( uiSize == 64 || uiSize == 32 )
2249  {
2250    subSamplePix = 2;
2251  }
2252  else
2253  {
2254    subSamplePix = 1;
2255  }
2256  for (Int y=0; y<uiSize; y+=subSamplePix)
2257  {
2258    for (Int x=0; x<uiSize; x+=subSamplePix)
2259    {
2260      UChar ucSegment = pMask?(UChar)pMask[x]:0;
2261      assert( ucSegment < uiNumSegments );
2262     
2263      iSumDepth[ucSegment] += pOrig[x];
2264      iSumPix[ucSegment]   += 1;
2265    }
2266   
2267    pOrig  += uiStride*subSamplePix;
2268    pMask  += uiMaskStride*subSamplePix;
2269  }
2270 
2271  // compute mean for each segment
2272  for( UChar ucSeg = 0; ucSeg < uiNumSegments; ucSeg++ )
2273  {
2274    if( iSumPix[ucSeg] > 0 )
2275      rpSegMeans[ucSeg] = iSumDepth[ucSeg] / iSumPix[ucSeg];
2276    else
2277      rpSegMeans[ucSeg] = 0;  // this happens for zero-segments
2278  }
2279}
2280#endif // H_3D_DIM_SDC
2281#endif
2282//! \}
Note: See TracBrowser for help on using the repository browser.