source: 3DVCSoftware/branches/HTM-13.1-dev2-HHI/source/Lib/TLibCommon/TComPrediction.cpp

Last change on this file was 1158, checked in by sony, 10 years ago

Fix for SONY_MV_V_CONST_C0078
1) search range limit to consider sub-pel search
2) added disparity vector check module

ohji.nakagami@…

  • Property svn:eol-style set to native
File size: 82.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  Bool isDmmMode  = (dimType <  DMM_NUM_TYPE);
426
427  Bool* biSegPattern  = NULL;
428  UInt  patternStride = 0;
429
430  // get partiton
431#if H_3D_DIM_DMM
432  TComWedgelet* dmmSegmentation = NULL;
433  if( isDmmMode )
434  {
435    switch( dimType )
436    {
437    case( DMM1_IDX ): 
438      {
439        dmmSegmentation = pcCU->isDMM1UpscaleMode((UInt)iWidth) ? 
440            &(g_dmmWedgeLists[ g_aucConvertToBit[pcCU->getDMM1BasePatternWidth((UInt)iWidth)] ][ pcCU->getDmmWedgeTabIdx( dimType, uiAbsPartIdx ) ]) : 
441            &(g_dmmWedgeLists[ g_aucConvertToBit[iWidth] ][ pcCU->getDmmWedgeTabIdx( dimType, uiAbsPartIdx ) ]);
442      } break;
443    case( DMM4_IDX ): 
444      {
445        if( dmm4Segmentation == NULL )
446        { 
447          dmmSegmentation = new TComWedgelet( iWidth, iHeight );
448          xPredContourFromTex( pcCU, uiAbsPartIdx, iWidth, iHeight, dmmSegmentation );
449        }
450        else
451        {
452          xPredContourFromTex( pcCU, uiAbsPartIdx, iWidth, iHeight, dmm4Segmentation );
453          dmmSegmentation = dmm4Segmentation;
454        }
455      } break;
456    default: assert(0);
457    }
458    assert( dmmSegmentation );
459    if( dimType == DMM1_IDX && pcCU->isDMM1UpscaleMode((UInt)iWidth) ) 
460    {
461        biSegPattern = dmmSegmentation->getScaledPattern((UInt)iWidth);
462        patternStride = iWidth;
463    } 
464    else 
465    { 
466        biSegPattern  = dmmSegmentation->getPattern();
467        patternStride = dmmSegmentation->getStride ();
468    }
469  }
470#endif
471
472  // get predicted partition values
473  assert( biSegPattern );
474  Int* piMask = NULL;
475  piMask = pcCU->getPattern()->getAdiOrgBuf( iWidth, iHeight, m_piYuvExt ); // no filtering
476  assert( piMask );
477  Int maskStride = 2*iWidth + 1; 
478  Int* ptrSrc = piMask+maskStride+1;
479  Pel predDC1 = 0; Pel predDC2 = 0;
480  xPredBiSegDCs( ptrSrc, maskStride, biSegPattern, patternStride, predDC1, predDC2 );
481
482  // set segment values with deltaDC offsets
483  Pel segDC1 = 0;
484  Pel segDC2 = 0;
485  if( !pcCU->getSDCFlag( uiAbsPartIdx ) )
486  {
487    Pel deltaDC1 = pcCU->getDimDeltaDC( dimType, 0, uiAbsPartIdx );
488    Pel deltaDC2 = pcCU->getDimDeltaDC( dimType, 1, uiAbsPartIdx );
489#if H_3D_DIM_DMM
490    if( isDmmMode )
491    {
492#if H_3D_DIM_DLT
493      segDC1 = pcCU->getSlice()->getPPS()->getDLT()->idx2DepthValue( pcCU->getSlice()->getLayerIdInVps(), pcCU->getSlice()->getPPS()->getDLT()->depthValue2idx( pcCU->getSlice()->getLayerIdInVps(), predDC1 ) + deltaDC1 );
494      segDC2 = pcCU->getSlice()->getPPS()->getDLT()->idx2DepthValue( pcCU->getSlice()->getLayerIdInVps(), pcCU->getSlice()->getPPS()->getDLT()->depthValue2idx( pcCU->getSlice()->getLayerIdInVps(), predDC2 ) + deltaDC2 );
495#else
496      segDC1 = ClipY( predDC1 + deltaDC1 );
497      segDC2 = ClipY( predDC2 + deltaDC2 );
498#endif
499    }
500#endif
501  }
502  else
503  {
504    segDC1 = predDC1;
505    segDC2 = predDC2;
506  }
507
508  // set prediction signal
509  Pel* pDst = piPred;
510  xAssignBiSegDCs( pDst, uiStride, biSegPattern, patternStride, segDC1, segDC2 );
511  pcCU->setDmmPredictor(segDC1, 0);
512  pcCU->setDmmPredictor(segDC2, 1);
513
514#if H_3D_DIM_DMM
515  if( dimType == DMM4_IDX && dmm4Segmentation == NULL ) { dmmSegmentation->destroy(); delete dmmSegmentation; }
516#endif
517}
518#endif
519
520/** Function for checking identical motion.
521 * \param TComDataCU* pcCU
522 * \param UInt PartAddr
523 */
524Bool TComPrediction::xCheckIdenticalMotion ( TComDataCU* pcCU, UInt PartAddr )
525{
526  if( pcCU->getSlice()->isInterB() && !pcCU->getSlice()->getPPS()->getWPBiPred() )
527  {
528    if( pcCU->getCUMvField(REF_PIC_LIST_0)->getRefIdx(PartAddr) >= 0 && pcCU->getCUMvField(REF_PIC_LIST_1)->getRefIdx(PartAddr) >= 0)
529    {
530      Int RefPOCL0 = pcCU->getSlice()->getRefPic(REF_PIC_LIST_0, pcCU->getCUMvField(REF_PIC_LIST_0)->getRefIdx(PartAddr))->getPOC();
531      Int RefPOCL1 = pcCU->getSlice()->getRefPic(REF_PIC_LIST_1, pcCU->getCUMvField(REF_PIC_LIST_1)->getRefIdx(PartAddr))->getPOC();
532#if H_3D_ARP
533      if(!pcCU->getARPW(PartAddr) && RefPOCL0 == RefPOCL1 && pcCU->getCUMvField(REF_PIC_LIST_0)->getMv(PartAddr) == pcCU->getCUMvField(REF_PIC_LIST_1)->getMv(PartAddr))
534#else
535      if(RefPOCL0 == RefPOCL1 && pcCU->getCUMvField(REF_PIC_LIST_0)->getMv(PartAddr) == pcCU->getCUMvField(REF_PIC_LIST_1)->getMv(PartAddr))
536#endif
537      {
538        return true;
539      }
540    }
541  }
542  return false;
543}
544
545#if H_3D_SPIVMP
546Void TComPrediction::xGetSubPUAddrAndMerge(TComDataCU* pcCU, UInt uiPartAddr, Int iSPWidth, Int iSPHeight, Int iNumSPInOneLine, Int iNumSP, UInt* uiMergedSPW, UInt* uiMergedSPH, UInt* uiSPAddr )
547{
548  for (Int i = 0; i < iNumSP; i++)
549  {
550    uiMergedSPW[i] = iSPWidth;
551    uiMergedSPH[i] = iSPHeight;
552    pcCU->getSPAbsPartIdx(uiPartAddr, iSPWidth, iSPHeight, i, iNumSPInOneLine, uiSPAddr[i]);
553  }
554  if( pcCU->getARPW( uiPartAddr ) != 0 )
555  {
556    return;
557  }
558
559  // horizontal sub-PU merge
560  for (Int i=0; i<iNumSP; i++)
561  {
562    if (i % iNumSPInOneLine == iNumSPInOneLine - 1 || uiMergedSPW[i]==0 || uiMergedSPH[i]==0)
563    {
564      continue;
565    }
566    for (Int j=i+1; j<i+iNumSPInOneLine-i%iNumSPInOneLine; j++)
567    {
568      if (xCheckTwoSPMotion(pcCU, uiSPAddr[i], uiSPAddr[j]))
569      {
570        uiMergedSPW[i] += iSPWidth;
571        uiMergedSPW[j] = uiMergedSPH[j] = 0;
572      }
573      else
574      {
575        break;
576      }
577    }
578  }
579  //vertical sub-PU merge
580  for (Int i=0; i<iNumSP-iNumSPInOneLine; i++)
581  {
582    if (uiMergedSPW[i]==0 || uiMergedSPH[i]==0)
583    {
584      continue;
585    }
586    for (Int j=i+iNumSPInOneLine; j<iNumSP; j+=iNumSPInOneLine)
587    {
588      if (xCheckTwoSPMotion(pcCU, uiSPAddr[i], uiSPAddr[j]) && uiMergedSPW[i]==uiMergedSPW[j])
589      {
590        uiMergedSPH[i] += iSPHeight;
591        uiMergedSPH[j] = uiMergedSPW[j] = 0;
592      }
593      else
594      {
595        break;
596      }
597    }
598  }
599}
600
601Bool TComPrediction::xCheckTwoSPMotion ( TComDataCU* pcCU, UInt PartAddr0, UInt PartAddr1 )
602{
603  if( pcCU->getCUMvField(REF_PIC_LIST_0)->getRefIdx(PartAddr0) != pcCU->getCUMvField(REF_PIC_LIST_0)->getRefIdx(PartAddr1))
604  {
605    return false;
606  }
607  if( pcCU->getCUMvField(REF_PIC_LIST_1)->getRefIdx(PartAddr0) != pcCU->getCUMvField(REF_PIC_LIST_1)->getRefIdx(PartAddr1))
608  {
609    return false;
610  }
611
612  if (pcCU->getCUMvField(REF_PIC_LIST_0)->getRefIdx(PartAddr0) >= 0)
613  {
614    if (pcCU->getCUMvField(REF_PIC_LIST_0)->getMv(PartAddr0) != pcCU->getCUMvField(REF_PIC_LIST_0)->getMv(PartAddr1))
615    {
616      return false;
617    }
618  }
619
620  if (pcCU->getCUMvField(REF_PIC_LIST_1)->getRefIdx(PartAddr0) >= 0)
621  {
622    if (pcCU->getCUMvField(REF_PIC_LIST_1)->getMv(PartAddr0) != pcCU->getCUMvField(REF_PIC_LIST_1)->getMv(PartAddr1))
623    {
624      return false;
625    }
626  }
627  return true;
628}
629#endif
630
631#if H_3D_DBBP
632#if HS_DBBP_CLEAN_K0048
633PartSize TComPrediction::getPartitionSizeFromDepth(Pel* pDepthPels, UInt uiDepthStride, UInt uiSize, TComDataCU*& pcCU)
634#else
635PartSize TComPrediction::getPartitionSizeFromDepth(Pel* pDepthPels, UInt uiDepthStride, UInt uiSize)
636#endif
637{
638  // find virtual partitioning for this CU based on depth block
639  // segmentation of texture block --> mask IDs
640  Pel*  pDepthBlockStart    = pDepthPels;
641 
642  // first compute average of depth block for thresholding
643  Int iSumDepth = 0;
644  Int iSubSample = 4;
645#if HS_DBBP_CLEAN_K0048
646  Int iPictureWidth = pcCU->getSlice()->getIvPic (true, pcCU->getDvInfo(0).m_aVIdxCan)->getPicYuvRec()->getWidth();
647  Int iPictureHeight = pcCU->getSlice()->getIvPic (true, pcCU->getDvInfo(0).m_aVIdxCan)->getPicYuvRec()->getHeight();
648  TComMv cDv = pcCU->getSlice()->getDepthRefinementFlag(  ) ? pcCU->getDvInfo(0).m_acDoNBDV : pcCU->getDvInfo(0).m_acNBDV;
649  if( pcCU->getSlice()->getDepthRefinementFlag(  ) )
650  {
651    cDv.setVer(0);
652  }
653  Int iBlkX = ( pcCU->getAddr() % pcCU->getSlice()->getIvPic (true, pcCU->getDvInfo(0).m_aVIdxCan)->getFrameWidthInCU() ) * g_uiMaxCUWidth  + g_auiRasterToPelX[ g_auiZscanToRaster[ pcCU->getZorderIdxInCU() ] ]+ ((cDv.getHor()+2)>>2);
654  Int iBlkY = ( pcCU->getAddr() / pcCU->getSlice()->getIvPic (true, pcCU->getDvInfo(0).m_aVIdxCan)->getFrameWidthInCU() ) * g_uiMaxCUHeight + g_auiRasterToPelY[ g_auiZscanToRaster[ pcCU->getZorderIdxInCU() ] ]+ ((cDv.getVer()+2)>>2);
655  UInt t=0;
656
657  for (Int y=0; y<uiSize; y+=iSubSample)
658   {
659    for (Int x=0; x<uiSize; x+=iSubSample)
660   {
661if (iBlkX+x>iPictureWidth)
662{
663    Int depthPel = pDepthPels[t];
664    iSumDepth += depthPel;
665} 
666else
667{
668    Int depthPel = pDepthPels[x];
669    t=x;
670    iSumDepth += depthPel;
671}
672   }
673   
674    // next row
675    if (!(iBlkY+y+4>iPictureHeight))
676    pDepthPels += uiDepthStride*iSubSample;
677#else
678  for (Int y=0; y<uiSize; y+=iSubSample)
679  {
680     for (Int x=0; x<uiSize; x+=iSubSample)
681        {
682                  Int depthPel = pDepthPels[x];
683
684                  iSumDepth += depthPel;
685        }
686
687          // next row
688          pDepthPels += uiDepthStride*iSubSample;
689#endif
690  }
691 
692  Int iSizeInBits = g_aucConvertToBit[uiSize] - g_aucConvertToBit[iSubSample];  // respect sub-sampling factor
693  Int iMean = iSumDepth >> iSizeInBits*2;       // iMean /= (uiSize*uiSize);
694 
695  // start again for segmentation
696  pDepthPels = pDepthBlockStart;
697 
698  // start mapping process
699  Int matchedPartSum[2][2] = {{0,0},{0,0}}; // counter for each part size and boolean option
700  PartSize virtualPartSizes[2] = { SIZE_Nx2N, SIZE_2NxN};
701 
702  UInt uiHalfSize = uiSize>>1;
703  for (Int y=0; y<uiSize; y+=iSubSample)
704  {
705    for (Int x=0; x<uiSize; x+=iSubSample)
706    {
707#if HS_DBBP_CLEAN_K0048
708      Int depthPel = 0;
709if (iBlkX+x>iPictureWidth)
710{
711    depthPel = pDepthPels[t];
712}
713else
714{ 
715    depthPel = pDepthPels[x];
716     t=x;
717}
718#else
719            Int depthPel = pDepthPels[x];
720#endif
721     
722      // decide which segment this pixel belongs to
723      Int ucSegment = (Int)(depthPel>iMean);
724     
725      // Matched Filter to find optimal (conventional) partitioning
726     
727      // SIZE_Nx2N
728      if(x<uiHalfSize)  // left
729      {
730        matchedPartSum[0][ucSegment]++;
731      }
732      else  // right
733      {
734        matchedPartSum[0][1-ucSegment]++;
735      }
736     
737      // SIZE_2NxN
738      if(y<uiHalfSize)  // top
739      {
740        matchedPartSum[1][ucSegment]++;
741      }
742      else  // bottom
743      {
744        matchedPartSum[1][1-ucSegment]++;
745      }
746    }
747   
748    // next row
749#if HS_DBBP_CLEAN_K0048
750    if (!(iBlkY+y+4>iPictureHeight))
751#endif
752    pDepthPels += uiDepthStride*iSubSample;
753  }
754 
755  PartSize matchedPartSize = SIZE_NONE;
756 
757  Int iMaxMatchSum = 0;
758  for(Int p=0; p<2; p++)  // loop over partition
759  {
760    for( Int b=0; b<=1; b++ ) // loop over boolean options
761    {
762      if(matchedPartSum[p][b] > iMaxMatchSum)
763      {
764        iMaxMatchSum = matchedPartSum[p][b];
765        matchedPartSize = virtualPartSizes[p];
766      }
767    }
768  }
769 
770  AOF( matchedPartSize != SIZE_NONE );
771 
772  return matchedPartSize;
773}
774
775#if HS_DBBP_CLEAN_K0048
776Bool TComPrediction::getSegmentMaskFromDepth( Pel* pDepthPels, UInt uiDepthStride, UInt uiWidth, UInt uiHeight, Bool* pMask, TComDataCU*& pcCU)
777#else
778Bool TComPrediction::getSegmentMaskFromDepth( Pel* pDepthPels, UInt uiDepthStride, UInt uiWidth, UInt uiHeight, Bool* pMask)
779#endif
780{
781  // segmentation of texture block --> mask IDs
782  Pel*  pDepthBlockStart      = pDepthPels;
783 
784  // first compute average of depth block for thresholding
785  Int iSumDepth = 0;
786  Int uiMinDepth = MAX_INT;
787  Int uiMaxDepth = 0;
788#if HS_DBBP_CLEAN_K0048
789  uiMinDepth = pDepthPels[ 0 ];
790  uiMaxDepth = pDepthPels[ 0 ];
791  iSumDepth  = pDepthPels[ 0 ];
792    UInt t=0;
793  Int iPictureWidth = pcCU->getSlice()->getIvPic (true, pcCU->getDvInfo(0).m_aVIdxCan)->getPicYuvRec()->getWidth();
794  Int iPictureHeight = pcCU->getSlice()->getIvPic (true, pcCU->getDvInfo(0).m_aVIdxCan)->getPicYuvRec()->getHeight(); 
795  TComMv cDv = pcCU->getSlice()->getDepthRefinementFlag(  ) ? pcCU->getDvInfo(0).m_acDoNBDV : pcCU->getDvInfo(0).m_acNBDV;
796  if( pcCU->getSlice()->getDepthRefinementFlag(  ) )
797  {
798      cDv.setVer(0);
799  }
800  Int iBlkX = ( pcCU->getAddr() % pcCU->getSlice()->getIvPic (true, pcCU->getDvInfo(0).m_aVIdxCan)->getFrameWidthInCU() ) * g_uiMaxCUWidth  + g_auiRasterToPelX[ g_auiZscanToRaster[ pcCU->getZorderIdxInCU() ] ]+ ((cDv.getHor()+2)>>2);
801  Int iBlkY = ( pcCU->getAddr() / pcCU->getSlice()->getIvPic (true, pcCU->getDvInfo(0).m_aVIdxCan)->getFrameWidthInCU() ) * g_uiMaxCUHeight + g_auiRasterToPelY[ g_auiZscanToRaster[ pcCU->getZorderIdxInCU() ] ]+ ((cDv.getVer()+2)>>2);
802if (iBlkX>(Int)(iPictureWidth - uiWidth))
803{
804  iSumDepth += pDepthPels[ iPictureWidth - iBlkX - 1 ];
805  uiMinDepth = std::min( uiMinDepth, (Int)pDepthPels[ iPictureWidth - iBlkX - 1 ]);
806  uiMaxDepth = std::max( uiMaxDepth, (Int)pDepthPels[ iPictureWidth - iBlkX - 1 ]);
807}
808else
809{
810  iSumDepth += pDepthPels[ uiWidth - 1 ];
811  uiMinDepth = std::min( uiMinDepth, (Int)pDepthPels[ uiWidth - 1 ]);
812  uiMaxDepth = std::max( uiMaxDepth, (Int)pDepthPels[ uiWidth - 1 ]);
813}
814if (iBlkY>(Int)(iPictureHeight - uiHeight))
815{
816  iSumDepth += pDepthPels[ uiDepthStride * (iPictureHeight - iBlkY - 1) ];
817  uiMinDepth = std::min( uiMinDepth, (Int)pDepthPels[ uiDepthStride * (iPictureHeight - iBlkY - 1) ]);
818  uiMaxDepth = std::max( uiMaxDepth, (Int)pDepthPels[ uiDepthStride * (iPictureHeight - iBlkY - 1) ]);
819}
820else
821{
822  iSumDepth += pDepthPels[ uiDepthStride * (uiHeight - 1) ];
823  uiMinDepth = std::min( uiMinDepth, (Int)pDepthPels[ uiDepthStride * (uiHeight - 1) ]);
824  uiMaxDepth = std::max( uiMaxDepth, (Int)pDepthPels[ uiDepthStride * (uiHeight - 1) ]);
825}
826if (iBlkY>(Int)(iPictureHeight - uiHeight) && iBlkX>(Int)(iPictureWidth - uiWidth))
827{
828  iSumDepth += pDepthPels[ uiDepthStride * (iPictureHeight - iBlkY - 1) + iPictureWidth - iBlkX - 1 ];
829  uiMinDepth = std::min( uiMinDepth, (Int)pDepthPels[ uiDepthStride * (iPictureHeight - iBlkY - 1) + iPictureWidth - iBlkX - 1 ]);
830  uiMaxDepth = std::max( uiMaxDepth, (Int)pDepthPels[ uiDepthStride * (iPictureHeight - iBlkY - 1) + iPictureWidth - iBlkX - 1 ]);
831}
832else if (iBlkY>(Int)(iPictureHeight - uiHeight))
833{
834  iSumDepth += pDepthPels[ uiDepthStride * (iPictureHeight - iBlkY - 1) + uiWidth - 1 ];
835  uiMinDepth = std::min( uiMinDepth, (Int)pDepthPels[ uiDepthStride * (iPictureHeight - iBlkY - 1) + uiWidth - 1 ]);
836  uiMaxDepth = std::max( uiMaxDepth, (Int)pDepthPels[ uiDepthStride * (iPictureHeight - iBlkY - 1) + uiWidth - 1 ]);
837}
838else if (iBlkX>(Int)(iPictureWidth - uiWidth))
839{
840  iSumDepth += pDepthPels[ uiDepthStride * (uiHeight - 1) + iPictureWidth - iBlkX - 1 ];
841  uiMinDepth = std::min( uiMinDepth, (Int)pDepthPels[ uiDepthStride * (uiHeight - 1) + iPictureWidth - iBlkX - 1 ]);
842  uiMaxDepth = std::max( uiMaxDepth, (Int)pDepthPels[ uiDepthStride * (uiHeight - 1) + iPictureWidth - iBlkX - 1 ]);
843}
844else
845{
846  iSumDepth += pDepthPels[ uiDepthStride * (uiHeight - 1) + uiWidth - 1 ];
847  uiMinDepth = std::min( uiMinDepth, (Int)pDepthPels[ uiDepthStride * (uiHeight - 1) + uiWidth - 1 ]);
848  uiMaxDepth = std::max( uiMaxDepth, (Int)pDepthPels[ uiDepthStride * (uiHeight - 1) + uiWidth - 1 ]);
849}
850#else
851  iSumDepth  = pDepthPels[ 0 ];
852  iSumDepth += pDepthPels[ uiWidth - 1 ];
853  iSumDepth += pDepthPels[ uiDepthStride * (uiHeight - 1) ];
854  iSumDepth += pDepthPels[ uiDepthStride * (uiHeight - 1) + uiWidth - 1 ];
855
856  uiMinDepth = pDepthPels[ 0 ];
857  uiMinDepth = std::min( uiMinDepth, (Int)pDepthPels[ uiWidth - 1 ]);
858  uiMinDepth = std::min( uiMinDepth, (Int)pDepthPels[ uiDepthStride * (uiHeight - 1) ]);
859  uiMinDepth = std::min( uiMinDepth, (Int)pDepthPels[ uiDepthStride * (uiHeight - 1) + uiWidth - 1 ]);
860
861  uiMaxDepth = pDepthPels[ 0 ];
862  uiMaxDepth = std::max( uiMaxDepth, (Int)pDepthPels[ uiWidth - 1 ]);
863  uiMaxDepth = std::max( uiMaxDepth, (Int)pDepthPels[ uiDepthStride * (uiHeight - 1) ]);
864  uiMaxDepth = std::max( uiMaxDepth, (Int)pDepthPels[ uiDepthStride * (uiHeight - 1) + uiWidth - 1 ]);
865#endif
866 
867  // don't generate mask for blocks with small depth range (encoder decision)
868  if( uiMaxDepth - uiMinDepth < 10 )
869  {
870    return false;
871  }
872 
873  AOF(uiWidth==uiHeight);
874  Int iMean = iSumDepth >> 2;
875 
876  // start again for segmentation
877  pDepthPels = pDepthBlockStart;
878 
879  Bool bInvertMask = pDepthPels[0]>iMean; // top-left segment needs to be mapped to partIdx 0
880 
881  // generate mask
882  UInt uiSumPix[2] = {0,0};
883  for (Int y=0; y<uiHeight; y++)
884  {
885    for (Int x=0; x<uiHeight; x++)
886    {
887#if HS_DBBP_CLEAN_K0048
888      Int depthPel = 0;
889      if (iBlkX+x>iPictureWidth)
890      {
891        depthPel = pDepthPels[t];
892      }
893      else
894      {
895        depthPel = pDepthPels[x];
896         t=x;
897      }
898#else
899      Int depthPel = pDepthPels[x];
900#endif
901     
902      // decide which segment this pixel belongs to
903      Int ucSegment = (Int)(depthPel>iMean);
904     
905      if( bInvertMask )
906      {
907        ucSegment = 1-ucSegment;
908      }
909     
910      // count pixels for each segment
911      uiSumPix[ucSegment]++;
912     
913      // set mask value
914      pMask[x] = (Bool)ucSegment;
915    }
916   
917    // next row
918#if HS_DBBP_CLEAN_K0048
919    if (!(iBlkY+y+1>iPictureHeight))
920#endif
921    pDepthPels += uiDepthStride;
922    pMask += MAX_CU_SIZE;
923  }
924 
925  // don't generate valid mask for tiny segments (encoder decision)
926  // each segment needs to cover at least 1/8th of block
927  UInt uiMinPixPerSegment = (uiWidth*uiHeight) >> 3;
928  if( !( uiSumPix[0] > uiMinPixPerSegment && uiSumPix[1] > uiMinPixPerSegment ) )
929  {
930    return false;
931  }
932 
933  // all good
934  return true;
935}
936
937Void TComPrediction::combineSegmentsWithMask( TComYuv* pInYuv[2], TComYuv* pOutYuv, Bool* pMask, UInt uiWidth, UInt uiHeight, UInt uiPartAddr, UInt partSize )
938{
939  Pel*  piSrc[2]    = {pInYuv[0]->getLumaAddr(uiPartAddr), pInYuv[1]->getLumaAddr(uiPartAddr)};
940  UInt  uiSrcStride = pInYuv[0]->getStride();
941  Pel*  piDst       = pOutYuv->getLumaAddr(uiPartAddr);
942  UInt  uiDstStride = pOutYuv->getStride();
943 
944  UInt  uiMaskStride= MAX_CU_SIZE;
945  Pel* tmpTar = 0;
946  tmpTar = (Pel *)xMalloc(Pel, uiWidth*uiHeight);
947 
948  // backup pointer
949  Bool* pMaskStart = pMask;
950 
951  // combine luma first
952  for (Int y=0; y<uiHeight; y++)
953  {
954    for (Int x=0; x<uiWidth; x++)
955    {
956      UChar ucSegment = (UChar)pMask[x];
957      AOF( ucSegment < 2 );
958     
959      // filtering
960      tmpTar[y*uiWidth+x] = piSrc[ucSegment][x];
961    }
962   
963    piSrc[0]  += uiSrcStride;
964    piSrc[1]  += uiSrcStride;
965    pMask     += uiMaskStride;
966  }
967 
968  if (partSize == SIZE_Nx2N)
969  {
970    for (Int y=0; y<uiHeight; y++)
971    {
972      for (Int x=0; x<uiWidth; x++)
973      {
974        Bool l = (x==0)?pMaskStart[y*uiMaskStride+x]:pMaskStart[y*uiMaskStride+x-1];
975        Bool r = (x==uiWidth-1)?pMaskStart[y*uiMaskStride+x]:pMaskStart[y*uiMaskStride+x+1];
976       
977        Pel left, right;
978        left   = (x==0)          ? tmpTar[y*uiWidth+x] : tmpTar[y*uiWidth+x-1];
979        right  = (x==uiWidth-1)  ? tmpTar[y*uiWidth+x] : tmpTar[y*uiWidth+x+1];
980       
981        piDst[x] = (l!=r) ? ClipY( Pel(( left + (tmpTar[y*uiWidth+x] << 1) + right ) >> 2 )) : tmpTar[y*uiWidth+x]; 
982      }
983      piDst     += uiDstStride;
984    }
985  }
986  else // SIZE_2NxN
987  {
988    for (Int y=0; y<uiHeight; y++)
989    {
990      for (Int x=0; x<uiWidth; x++)
991      {
992        Bool t = (y==0)?pMaskStart[y*uiMaskStride+x]:pMaskStart[(y-1)*uiMaskStride+x];
993        Bool b = (y==uiHeight-1)?pMaskStart[y*uiMaskStride+x]:pMaskStart[(y+1)*uiMaskStride+x];
994       
995        Pel top, bottom;
996        top    = (y==0)          ? tmpTar[y*uiWidth+x] : tmpTar[(y-1)*uiWidth+x];
997        bottom = (y==uiHeight-1) ? tmpTar[y*uiWidth+x] : tmpTar[(y+1)*uiWidth+x];
998       
999        piDst[x] = (t!=b) ? ClipY( Pel(( top + (tmpTar[y*uiWidth+x] << 1) + bottom ) >> 2 )) : tmpTar[y*uiWidth+x];
1000      }
1001      piDst     += uiDstStride;
1002    }
1003  }
1004
1005  if ( tmpTar    ) { xFree(tmpTar);             tmpTar        = NULL; }
1006 
1007  // now combine chroma
1008  Pel*  piSrcU[2]       = { pInYuv[0]->getCbAddr(uiPartAddr), pInYuv[1]->getCbAddr(uiPartAddr) };
1009  Pel*  piSrcV[2]       = { pInYuv[0]->getCrAddr(uiPartAddr), pInYuv[1]->getCrAddr(uiPartAddr) };
1010  UInt  uiSrcStrideC    = pInYuv[0]->getCStride();
1011  Pel*  piDstU          = pOutYuv->getCbAddr(uiPartAddr);
1012  Pel*  piDstV          = pOutYuv->getCrAddr(uiPartAddr);
1013  UInt  uiDstStrideC    = pOutYuv->getCStride();
1014  UInt  uiWidthC        = uiWidth >> 1;
1015  UInt  uiHeightC       = uiHeight >> 1;
1016  Pel  filSrcU = 0, filSrcV = 0;
1017  Pel* tmpTarU = 0, *tmpTarV = 0;
1018  tmpTarU = (Pel *)xMalloc(Pel, uiWidthC*uiHeightC);
1019  tmpTarV = (Pel *)xMalloc(Pel, uiWidthC*uiHeightC);
1020  pMask = pMaskStart;
1021 
1022  for (Int y=0; y<uiHeightC; y++)
1023  {
1024    for (Int x=0; x<uiWidthC; x++)
1025    {
1026      UChar ucSegment = (UChar)pMask[x*2];
1027      AOF( ucSegment < 2 );
1028     
1029      // filtering
1030      tmpTarU[y*uiWidthC+x] = piSrcU[ucSegment][x];
1031      tmpTarV[y*uiWidthC+x] = piSrcV[ucSegment][x];
1032    }
1033   
1034    piSrcU[0]   += uiSrcStrideC;
1035    piSrcU[1]   += uiSrcStrideC;
1036    piSrcV[0]   += uiSrcStrideC;
1037    piSrcV[1]   += uiSrcStrideC;
1038    pMask       += 2*uiMaskStride;
1039  }
1040
1041  if (partSize == SIZE_Nx2N)
1042  {
1043    for (Int y=0; y<uiHeightC; y++)
1044    {
1045      for (Int x=0; x<uiWidthC; x++)
1046      {
1047        Bool l = (x==0)?pMaskStart[y*2*uiMaskStride+x*2]:pMaskStart[y*2*uiMaskStride+(x-1)*2];
1048        Bool r = (x==uiWidthC-1)?pMaskStart[y*2*uiMaskStride+x*2]:pMaskStart[y*2*uiMaskStride+(x+1)*2];
1049
1050        Pel leftU, rightU;
1051        leftU   = (x==0)           ? tmpTarU[y*uiWidthC+x] : tmpTarU[y*uiWidthC+x-1];
1052        rightU  = (x==uiWidthC-1)  ? tmpTarU[y*uiWidthC+x] : tmpTarU[y*uiWidthC+x+1];
1053        Pel leftV, rightV;
1054        leftV   = (x==0)           ? tmpTarV[y*uiWidthC+x] : tmpTarV[y*uiWidthC+x-1];
1055        rightV  = (x==uiWidthC-1)  ? tmpTarV[y*uiWidthC+x] : tmpTarV[y*uiWidthC+x+1];
1056
1057        if (l!=r)
1058        {
1059          filSrcU = ClipC( Pel(( leftU + (tmpTarU[y*uiWidthC+x] << 1) + rightU ) >> 2 ));
1060          filSrcV = ClipC( Pel(( leftV + (tmpTarV[y*uiWidthC+x] << 1) + rightV ) >> 2 ));
1061        }
1062        else
1063        {
1064          filSrcU = tmpTarU[y*uiWidthC+x];
1065          filSrcV = tmpTarV[y*uiWidthC+x];
1066        }
1067        piDstU[x] = filSrcU;
1068        piDstV[x] = filSrcV;
1069      }
1070      piDstU      += uiDstStrideC;
1071      piDstV      += uiDstStrideC;
1072    }
1073  }
1074  else
1075  {
1076    for (Int y=0; y<uiHeightC; y++)
1077    {
1078      for (Int x=0; x<uiWidthC; x++)
1079      {
1080        Bool t = (y==0)?pMaskStart[y*2*uiMaskStride+x*2]:pMaskStart[(y-1)*2*uiMaskStride+x*2];
1081        Bool b = (y==uiHeightC-1)?pMaskStart[y*2*uiMaskStride+x*2]:pMaskStart[(y+1)*2*uiMaskStride+x*2];
1082
1083        Pel topU, bottomU;
1084        topU    = (y==0)           ? tmpTarU[y*uiWidthC+x] : tmpTarU[(y-1)*uiWidthC+x];
1085        bottomU = (y==uiHeightC-1) ? tmpTarU[y*uiWidthC+x] : tmpTarU[(y+1)*uiWidthC+x];
1086        Pel topV, bottomV;
1087        topV    = (y==0)           ? tmpTarV[y*uiWidthC+x] : tmpTarV[(y-1)*uiWidthC+x];
1088        bottomV = (y==uiHeightC-1) ? tmpTarV[y*uiWidthC+x] : tmpTarV[(y+1)*uiWidthC+x];
1089
1090        if (t!=b)
1091        {
1092          filSrcU = ClipC( Pel(( topU + (tmpTarU[y*uiWidthC+x] << 1) + bottomU ) >> 2 ));
1093          filSrcV = ClipC( Pel(( topV + (tmpTarV[y*uiWidthC+x] << 1) + bottomV ) >> 2 ));
1094        }
1095        else
1096        {
1097          filSrcU = tmpTarU[y*uiWidthC+x];
1098          filSrcV = tmpTarV[y*uiWidthC+x];
1099        }
1100        piDstU[x] = filSrcU;
1101        piDstV[x] = filSrcV;
1102      }
1103      piDstU      += uiDstStrideC;
1104      piDstV      += uiDstStrideC;
1105    }
1106  }
1107
1108  if ( tmpTarU    ) { xFree(tmpTarU);             tmpTarU        = NULL; }
1109  if ( tmpTarV    ) { xFree(tmpTarV);             tmpTarV        = NULL; }
1110}
1111#endif
1112
1113Void TComPrediction::motionCompensation ( TComDataCU* pcCU, TComYuv* pcYuvPred, RefPicList eRefPicList, Int iPartIdx )
1114{
1115  Int         iWidth;
1116  Int         iHeight;
1117  UInt        uiPartAddr;
1118
1119  if ( iPartIdx >= 0 )
1120  {
1121    pcCU->getPartIndexAndSize( iPartIdx, uiPartAddr, iWidth, iHeight );
1122#if H_3D_VSP
1123    if ( pcCU->getVSPFlag(uiPartAddr) == 0)
1124    {
1125#endif
1126      if ( eRefPicList != REF_PIC_LIST_X )
1127      {
1128        if( pcCU->getSlice()->getPPS()->getUseWP())
1129        {
1130          xPredInterUni (pcCU, uiPartAddr, iWidth, iHeight, eRefPicList, pcYuvPred, true );
1131        }
1132        else
1133        {
1134          xPredInterUni (pcCU, uiPartAddr, iWidth, iHeight, eRefPicList, pcYuvPred );
1135        }
1136        if ( pcCU->getSlice()->getPPS()->getUseWP() )
1137        {
1138          xWeightedPredictionUni( pcCU, pcYuvPred, uiPartAddr, iWidth, iHeight, eRefPicList, pcYuvPred );
1139        }
1140      }
1141      else
1142      {
1143#if H_3D_SPIVMP
1144        if ( pcCU->getSPIVMPFlag(uiPartAddr)!=0) 
1145        {
1146          Int iNumSPInOneLine, iNumSP, iSPWidth, iSPHeight;
1147
1148          pcCU->getSPPara(iWidth, iHeight, iNumSP, iNumSPInOneLine, iSPWidth, iSPHeight);
1149
1150          UInt uiW[256], uiH[256];
1151          UInt uiSPAddr[256];
1152
1153          xGetSubPUAddrAndMerge(pcCU, uiPartAddr, iSPWidth, iSPHeight, iNumSPInOneLine, iNumSP, uiW, uiH, uiSPAddr);
1154
1155          //MC
1156          for (Int i = 0; i < iNumSP; i++)
1157          {
1158            if (uiW[i]==0 || uiH[i]==0)
1159            {
1160              continue;
1161            }
1162            if( xCheckIdenticalMotion( pcCU, uiSPAddr[i] ))
1163            {
1164              xPredInterUni (pcCU, uiSPAddr[i], uiW[i], uiH[i], REF_PIC_LIST_0, pcYuvPred );
1165            }
1166            else
1167            {
1168              xPredInterBi  (pcCU, uiSPAddr[i], uiW[i], uiH[i], pcYuvPred);
1169            }
1170          }
1171        }
1172        else
1173        {
1174#endif
1175          if ( xCheckIdenticalMotion( pcCU, uiPartAddr ) )
1176          {
1177            xPredInterUni (pcCU, uiPartAddr, iWidth, iHeight, REF_PIC_LIST_0, pcYuvPred );
1178          }
1179          else
1180          {
1181            xPredInterBi  (pcCU, uiPartAddr, iWidth, iHeight, pcYuvPred );
1182          }
1183#if H_3D_SPIVMP
1184        }
1185#endif
1186      }
1187#if H_3D_VSP
1188    }
1189    else
1190    {
1191      if ( xCheckIdenticalMotion( pcCU, uiPartAddr ) )
1192      {
1193        xPredInterUniVSP( pcCU, uiPartAddr, iWidth, iHeight, REF_PIC_LIST_0, pcYuvPred );
1194      }
1195      else
1196      {
1197        xPredInterBiVSP ( pcCU, uiPartAddr, iWidth, iHeight, pcYuvPred );
1198      }
1199    }
1200#endif
1201    return;
1202  }
1203
1204  for ( iPartIdx = 0; iPartIdx < pcCU->getNumPartitions(); iPartIdx++ )
1205  {
1206    pcCU->getPartIndexAndSize( iPartIdx, uiPartAddr, iWidth, iHeight );
1207
1208#if H_3D_VSP
1209    if ( pcCU->getVSPFlag(uiPartAddr) == 0 )
1210    {
1211#endif
1212      if ( eRefPicList != REF_PIC_LIST_X )
1213      {
1214        if( pcCU->getSlice()->getPPS()->getUseWP())
1215        {
1216          xPredInterUni (pcCU, uiPartAddr, iWidth, iHeight, eRefPicList, pcYuvPred, true );
1217        }
1218        else
1219        {
1220          xPredInterUni (pcCU, uiPartAddr, iWidth, iHeight, eRefPicList, pcYuvPred );
1221        }
1222        if ( pcCU->getSlice()->getPPS()->getUseWP() )
1223        {
1224          xWeightedPredictionUni( pcCU, pcYuvPred, uiPartAddr, iWidth, iHeight, eRefPicList, pcYuvPred );
1225        }
1226      }
1227      else
1228      {
1229#if H_3D_SPIVMP
1230       if (pcCU->getSPIVMPFlag(uiPartAddr)!=0) 
1231      {
1232        Int iNumSPInOneLine, iNumSP, iSPWidth, iSPHeight;
1233
1234        pcCU->getSPPara(iWidth, iHeight, iNumSP, iNumSPInOneLine, iSPWidth, iSPHeight);
1235
1236        UInt uiW[256], uiH[256];
1237        UInt uiSPAddr[256];
1238
1239        xGetSubPUAddrAndMerge(pcCU, uiPartAddr, iSPWidth, iSPHeight, iNumSPInOneLine, iNumSP, uiW, uiH, uiSPAddr);
1240        //MC
1241        for (Int i = 0; i < iNumSP; i++)
1242        {
1243          if (uiW[i]==0 || uiH[i]==0)
1244          {
1245            continue;
1246          }
1247          if( xCheckIdenticalMotion( pcCU, uiSPAddr[i] ))
1248          {
1249            xPredInterUni (pcCU, uiSPAddr[i], uiW[i], uiH[i], REF_PIC_LIST_0, pcYuvPred );
1250          }
1251          else
1252          {
1253            xPredInterBi  (pcCU, uiSPAddr[i], uiW[i], uiH[i], pcYuvPred);
1254          }
1255        }
1256      }
1257      else
1258      {
1259#endif
1260        if ( xCheckIdenticalMotion( pcCU, uiPartAddr ) )
1261        {
1262          xPredInterUni (pcCU, uiPartAddr, iWidth, iHeight, REF_PIC_LIST_0, pcYuvPred );
1263        }
1264        else
1265        {
1266          xPredInterBi  (pcCU, uiPartAddr, iWidth, iHeight, pcYuvPred );
1267        }
1268#if H_3D_SPIVMP
1269       }
1270#endif
1271      }
1272#if H_3D_VSP
1273    }
1274    else
1275    {
1276      if ( xCheckIdenticalMotion( pcCU, uiPartAddr ) )
1277      {
1278        xPredInterUniVSP( pcCU, uiPartAddr, iWidth, iHeight, REF_PIC_LIST_0, pcYuvPred );
1279      }
1280      else
1281      {
1282        xPredInterBiVSP ( pcCU, uiPartAddr, iWidth, iHeight, pcYuvPred );
1283      }
1284    }
1285#endif
1286  }
1287  return;
1288}
1289
1290Void TComPrediction::xPredInterUni ( TComDataCU* pcCU, UInt uiPartAddr, Int iWidth, Int iHeight, RefPicList eRefPicList, TComYuv*& rpcYuvPred, Bool bi )
1291{
1292  Int         iRefIdx     = pcCU->getCUMvField( eRefPicList )->getRefIdx( uiPartAddr );           assert (iRefIdx >= 0);
1293  TComMv      cMv         = pcCU->getCUMvField( eRefPicList )->getMv( uiPartAddr );
1294  pcCU->clipMv(cMv);
1295#if SONY_MV_V_CONST_C0078
1296  pcCU->checkMV_V(cMv, eRefPicList, iRefIdx );
1297#endif
1298#if H_3D_ARP
1299  if(pcCU->getARPW( uiPartAddr ) > 0  && pcCU->getSlice()->getRefPic( eRefPicList, iRefIdx )->getPOC()== pcCU->getSlice()->getPOC())
1300  {
1301    xPredInterUniARPviewRef( pcCU , uiPartAddr , iWidth , iHeight , eRefPicList , rpcYuvPred , bi );
1302  }
1303  else
1304  {
1305    if(  pcCU->getARPW( uiPartAddr ) > 0 
1306      && pcCU->getPartitionSize(uiPartAddr)==SIZE_2Nx2N
1307      && pcCU->getSlice()->getRefPic( eRefPicList, iRefIdx )->getPOC()!= pcCU->getSlice()->getPOC() 
1308      )
1309    {
1310      xPredInterUniARP( pcCU, uiPartAddr, iWidth, iHeight, eRefPicList, rpcYuvPred, bi );
1311    }
1312    else
1313    {
1314#endif
1315#if H_3D_IC
1316      Bool bICFlag = pcCU->getICFlag( uiPartAddr ) && ( pcCU->getSlice()->getRefPic( eRefPicList, iRefIdx )->getViewIndex() != pcCU->getSlice()->getViewIndex() );
1317      xPredInterLumaBlk  ( pcCU, pcCU->getSlice()->getRefPic( eRefPicList, iRefIdx )->getPicYuvRec(), uiPartAddr, &cMv, iWidth, iHeight, rpcYuvPred, bi
1318#if H_3D_ARP
1319        , false
1320#endif
1321        , bICFlag );
1322      bICFlag = bICFlag && (iWidth > 8);
1323      xPredInterChromaBlk( pcCU, pcCU->getSlice()->getRefPic( eRefPicList, iRefIdx )->getPicYuvRec(), uiPartAddr, &cMv, iWidth, iHeight, rpcYuvPred, bi
1324#if H_3D_ARP
1325        , false
1326#endif
1327        , bICFlag );
1328#else
1329      xPredInterLumaBlk  ( pcCU, pcCU->getSlice()->getRefPic( eRefPicList, iRefIdx )->getPicYuvRec(), uiPartAddr, &cMv, iWidth, iHeight, rpcYuvPred, bi );
1330      xPredInterChromaBlk( pcCU, pcCU->getSlice()->getRefPic( eRefPicList, iRefIdx )->getPicYuvRec(), uiPartAddr, &cMv, iWidth, iHeight, rpcYuvPred, bi );
1331#endif
1332#if H_3D_ARP
1333    }
1334  }
1335#endif
1336}
1337
1338#if H_3D_VSP
1339Void TComPrediction::xPredInterUniVSP( TComDataCU* pcCU, UInt uiPartAddr, Int iWidth, Int iHeight, RefPicList eRefPicList, TComYuv*& rpcYuvPred, Bool bi )
1340{
1341  Int vspSize = pcCU->getVSPFlag( uiPartAddr ) >> 1;
1342
1343  Int widthSubPU, heightSubPU;
1344  if (vspSize)
1345  {
1346    widthSubPU  = 8;
1347    heightSubPU = 4;
1348  }
1349  else
1350  {
1351    widthSubPU  = 4;
1352    heightSubPU = 8;
1353  }
1354  xPredInterUniSubPU( pcCU, uiPartAddr, iWidth, iHeight, eRefPicList, rpcYuvPred, bi, widthSubPU, heightSubPU );
1355}
1356
1357Void TComPrediction::xPredInterUniSubPU( TComDataCU* pcCU, UInt uiPartAddr, Int iWidth, Int iHeight, RefPicList eRefPicList, TComYuv*& rpcYuvPred, Bool bi, Int widthSubPU, Int heightSubPU )
1358{
1359  UInt numPartsInLine       = pcCU->getPic()->getNumPartInWidth();
1360  UInt horiNumPartsInSubPU  = widthSubPU >> 2;
1361  UInt vertNumPartsInSubPU  = (heightSubPU >> 2) * numPartsInLine;
1362
1363  UInt partAddrRasterLine = g_auiZscanToRaster[ uiPartAddr ];
1364
1365  for( Int posY=0; posY<iHeight; posY+=heightSubPU, partAddrRasterLine+=vertNumPartsInSubPU )
1366  {
1367    UInt partAddrRasterSubPU = partAddrRasterLine;
1368    for( Int posX=0; posX<iWidth; posX+=widthSubPU, partAddrRasterSubPU+=horiNumPartsInSubPU )
1369    {
1370      UInt    partAddrSubPU = g_auiRasterToZscan[ partAddrRasterSubPU ];
1371      Int     refIdx        = pcCU->getCUMvField( eRefPicList )->getRefIdx( partAddrSubPU );           assert (refIdx >= 0);
1372      TComMv  cMv           = pcCU->getCUMvField( eRefPicList )->getMv( partAddrSubPU );
1373      pcCU->clipMv(cMv);
1374
1375      xPredInterLumaBlk  ( pcCU, pcCU->getSlice()->getRefPic( eRefPicList, refIdx )->getPicYuvRec(), partAddrSubPU, &cMv, widthSubPU, heightSubPU, rpcYuvPred, bi );
1376      xPredInterChromaBlk( pcCU, pcCU->getSlice()->getRefPic( eRefPicList, refIdx )->getPicYuvRec(), partAddrSubPU, &cMv, widthSubPU, heightSubPU, rpcYuvPred, bi );
1377
1378    }
1379  }
1380}
1381
1382#endif
1383
1384#if H_3D_ARP
1385Void TComPrediction::xPredInterUniARP( TComDataCU* pcCU, UInt uiPartAddr, Int iWidth, Int iHeight, RefPicList eRefPicList, TComYuv*& rpcYuvPred, Bool bi, TComMvField * pNewMvFiled )
1386{
1387  Int         iRefIdx      = pNewMvFiled ? pNewMvFiled->getRefIdx() : pcCU->getCUMvField( eRefPicList )->getRefIdx( uiPartAddr );           
1388  TComMv      cMv          = pNewMvFiled ? pNewMvFiled->getMv()     : pcCU->getCUMvField( eRefPicList )->getMv( uiPartAddr );
1389  Bool        bTobeScaled  = false;
1390  TComPic* pcPicYuvBaseCol = NULL;
1391  TComPic* pcPicYuvBaseRef = NULL;
1392
1393#if H_3D_NBDV
1394  DisInfo cDistparity;
1395  cDistparity.bDV           = pcCU->getDvInfo(uiPartAddr).bDV;
1396  if( cDistparity.bDV )
1397  {
1398    cDistparity.m_acNBDV = pcCU->getDvInfo(0).m_acNBDV;
1399    assert(pcCU->getDvInfo(uiPartAddr).bDV ==  pcCU->getDvInfo(0).bDV);
1400    cDistparity.m_aVIdxCan = pcCU->getDvInfo(uiPartAddr).m_aVIdxCan;
1401  }
1402#else
1403  assert(0); // ARP can be applied only when a DV is available
1404#endif
1405
1406  UChar dW = cDistparity.bDV ? pcCU->getARPW ( uiPartAddr ) : 0;
1407
1408  if( cDistparity.bDV ) 
1409  {
1410    Int arpRefIdx = pcCU->getSlice()->getFirstTRefIdx(eRefPicList);
1411    if( dW > 0 && pcCU->getSlice()->getRefPic( eRefPicList, arpRefIdx )->getPOC()!= pcCU->getSlice()->getPOC() )
1412    {
1413      bTobeScaled = true;
1414    }
1415
1416    pcPicYuvBaseCol =  pcCU->getSlice()->getBaseViewRefPic( pcCU->getSlice()->getPOC(),                              cDistparity.m_aVIdxCan );
1417
1418    pcPicYuvBaseRef =  pcCU->getSlice()->getBaseViewRefPic( pcCU->getSlice()->getRefPic( eRefPicList, arpRefIdx )->getPOC(), cDistparity.m_aVIdxCan );
1419
1420    if (!pcCU->getSlice()->getArpRefPicAvailable( eRefPicList, cDistparity.m_aVIdxCan))
1421    {
1422      dW = 0;
1423      bTobeScaled = false;
1424    }
1425    else
1426    {
1427      assert( pcPicYuvBaseCol->getPOC() == pcCU->getSlice()->getPOC() && pcPicYuvBaseRef->getPOC() == pcCU->getSlice()->getRefPic( eRefPicList, arpRefIdx )->getPOC() );
1428    }
1429
1430    if(bTobeScaled)
1431    {     
1432      Int iCurrPOC    = pcCU->getSlice()->getPOC();
1433      Int iColRefPOC  = pcCU->getSlice()->getRefPOC( eRefPicList, iRefIdx );
1434      Int iCurrRefPOC = pcCU->getSlice()->getRefPOC( eRefPicList,  0);
1435      Int iScale = pcCU-> xGetDistScaleFactor(iCurrPOC, iCurrRefPOC, iCurrPOC, iColRefPOC);
1436      if ( iScale != 4096 )
1437      {
1438        cMv = cMv.scaleMv( iScale );
1439      }
1440      iRefIdx = 0;
1441    }
1442  }
1443
1444  pcCU->clipMv(cMv);
1445  TComPicYuv* pcPicYuvRef = pcCU->getSlice()->getRefPic( eRefPicList, iRefIdx )->getPicYuvRec();
1446  xPredInterLumaBlk  ( pcCU, pcPicYuvRef, uiPartAddr, &cMv, iWidth, iHeight, rpcYuvPred, bi || ( dW > 0 ), true );
1447  xPredInterChromaBlk( pcCU, pcPicYuvRef, uiPartAddr, &cMv, iWidth, iHeight, rpcYuvPred, bi || ( dW > 0 ), true );
1448
1449  if( dW > 0 )
1450  {
1451    TComYuv * pYuvB0 = &m_acYuvPredBase[0];
1452    TComYuv * pYuvB1  = &m_acYuvPredBase[1];
1453
1454    TComMv cMVwithDisparity = cMv + cDistparity.m_acNBDV;
1455    pcCU->clipMv(cMVwithDisparity);
1456    if (iWidth <= 8)
1457    {
1458      pYuvB0->clear(); pYuvB1->clear();
1459    }
1460
1461    assert ( cDistparity.bDV );
1462   
1463    TComMv cNBDV = cDistparity.m_acNBDV;
1464    pcCU->clipMv( cNBDV );
1465   
1466    pcPicYuvRef = pcPicYuvBaseCol->getPicYuvRec();
1467    xPredInterLumaBlk  ( pcCU, pcPicYuvRef, uiPartAddr, &cNBDV, iWidth, iHeight, pYuvB0, true, true );
1468    if (iWidth > 8)
1469      xPredInterChromaBlk( pcCU, pcPicYuvRef, uiPartAddr, &cNBDV, iWidth, iHeight, pYuvB0, true, true );
1470   
1471    pcPicYuvRef = pcPicYuvBaseRef->getPicYuvRec();
1472    xPredInterLumaBlk  ( pcCU, pcPicYuvRef, uiPartAddr, &cMVwithDisparity, iWidth, iHeight, pYuvB1, true, true );
1473 
1474    if (iWidth > 8)
1475      xPredInterChromaBlk( pcCU, pcPicYuvRef, uiPartAddr, &cMVwithDisparity, iWidth, iHeight, pYuvB1, true, true );
1476   
1477    pYuvB0->subtractARP( pYuvB0 , pYuvB1 , uiPartAddr , iWidth , iHeight );
1478
1479    if( 2 == dW )
1480    {
1481      pYuvB0->multiplyARP( uiPartAddr , iWidth , iHeight , dW );
1482    }
1483    rpcYuvPred->addARP( rpcYuvPred , pYuvB0 , uiPartAddr , iWidth , iHeight , !bi );
1484  }
1485}
1486
1487Bool TComPrediction::xCheckBiInterviewARP( TComDataCU* pcCU, UInt uiPartAddr, Int iWidth, Int iHeight, RefPicList eBaseRefPicList, TComPic*& pcPicYuvCurrTRef, TComMv& cBaseTMV, Int& iCurrTRefPoc )
1488{
1489  Int         iRefIdx       = pcCU->getCUMvField( eBaseRefPicList )->getRefIdx( uiPartAddr );
1490  TComMv      cDMv          = pcCU->getCUMvField( eBaseRefPicList )->getMv( uiPartAddr );
1491  TComPic* pcPicYuvBaseCol  = pcCU->getSlice()->getRefPic( eBaseRefPicList, iRefIdx ); 
1492  TComPicYuv* pcYuvBaseCol  = pcPicYuvBaseCol->getPicYuvRec();
1493  Int uiLCUAddr,uiAbsPartAddr;
1494  Int irefPUX = pcCU->getCUPelX() + g_auiRasterToPelX[g_auiZscanToRaster[uiPartAddr]] + iWidth/2  + ((cDMv.getHor() + 2)>>2);
1495  Int irefPUY = pcCU->getCUPelY() + g_auiRasterToPelY[g_auiZscanToRaster[uiPartAddr]] + iHeight/2 + ((cDMv.getVer() + 2)>>2);
1496
1497  irefPUX = (Int)Clip3<Int>(0, pcCU->getSlice()->getSPS()-> getPicWidthInLumaSamples()-1, irefPUX);
1498  irefPUY = (Int)Clip3<Int>(0, pcCU->getSlice()->getSPS()->getPicHeightInLumaSamples()-1, irefPUY); 
1499  pcYuvBaseCol->getCUAddrAndPartIdx( irefPUX, irefPUY, uiLCUAddr, uiAbsPartAddr);
1500  TComDataCU *pColCU = pcPicYuvBaseCol->getCU( uiLCUAddr );
1501
1502  TComPic* pcPicYuvBaseTRef = NULL;
1503  pcPicYuvCurrTRef = NULL;
1504
1505  //If there is available motion in base reference list, use it
1506  if(!pColCU->isIntra(uiAbsPartAddr))
1507  {
1508    for(Int iList = 0; iList < (pColCU->getSlice()->isInterB() ? 2: 1); iList ++)
1509    {
1510      RefPicList eRefPicListCurr = RefPicList(iList);
1511      Int iRef = pColCU->getCUMvField(eRefPicListCurr)->getRefIdx(uiAbsPartAddr);
1512      if( iRef != -1)
1513      {
1514        pcPicYuvBaseTRef = pColCU->getSlice()->getRefPic(eRefPicListCurr, iRef); 
1515        Int  iCurrPOC    = pColCU->getSlice()->getPOC();
1516        Int  iCurrRefPOC = pcPicYuvBaseTRef->getPOC();
1517        Int  iCurrRef    = pcCU->getSlice()->getFirstTRefIdx(eRefPicListCurr);
1518
1519        if( iCurrRef >= 0 && iCurrPOC != iCurrRefPOC)
1520        {
1521          pcPicYuvCurrTRef =  pcCU->getSlice()->getRefPic(eRefPicListCurr,iCurrRef); 
1522          Int iTargetPOC = pcPicYuvCurrTRef->getPOC();
1523          pcPicYuvBaseTRef =  pcCU->getSlice()->getBaseViewRefPic(iTargetPOC,  pcPicYuvBaseCol->getViewIndex() ); 
1524          if(pcPicYuvBaseTRef)
1525          {
1526            cBaseTMV = pColCU->getCUMvField(eRefPicListCurr)->getMv(uiAbsPartAddr);
1527            Int iScale = pcCU-> xGetDistScaleFactor(iCurrPOC, iTargetPOC, iCurrPOC, iCurrRefPOC);
1528            if ( iScale != 4096 )
1529            {
1530              cBaseTMV = cBaseTMV.scaleMv( iScale );
1531            }
1532            iCurrTRefPoc = iTargetPOC;
1533            return true;
1534          }
1535        }
1536      }
1537    }
1538  }
1539
1540  //If there is no available motion in base reference list, use ( 0, 0 )
1541  if( pcCU->getSlice()->getFirstTRefIdx( eBaseRefPicList ) >= 0 )
1542  {
1543    cBaseTMV.set( 0, 0 );
1544    pcPicYuvCurrTRef = pcCU->getSlice()->getRefPic( eBaseRefPicList,  pcCU->getSlice()->getFirstTRefIdx( eBaseRefPicList ) );
1545    iCurrTRefPoc = pcPicYuvCurrTRef->getPOC();
1546    return true;
1547  }
1548
1549  return false;
1550}
1551
1552Void TComPrediction::xPredInterUniARPviewRef( TComDataCU* pcCU, UInt uiPartAddr, Int iWidth, Int iHeight, RefPicList eRefPicList, TComYuv*& rpcYuvPred, Bool bi, TComMvField * pNewMvFiled )
1553{
1554  Int         iRefIdx       = pcCU->getCUMvField( eRefPicList )->getRefIdx( uiPartAddr );           
1555  TComMv      cDMv          = pcCU->getCUMvField( eRefPicList )->getMv( uiPartAddr );
1556  TComMv      cTempDMv      = cDMv;
1557  UChar       dW            = pcCU->getARPW ( uiPartAddr );
1558
1559  TComPic* pcPicYuvBaseTRef = NULL;
1560  TComPic* pcPicYuvCurrTRef = NULL;
1561  TComPic* pcPicYuvBaseCol  = pcCU->getSlice()->getRefPic( eRefPicList, iRefIdx ); 
1562  TComPicYuv* pcYuvBaseCol  = pcPicYuvBaseCol->getPicYuvRec();   
1563  Bool bTMVAvai = false;     
1564  TComMv cBaseTMV;
1565  if( pNewMvFiled )
1566  {
1567    iRefIdx = pNewMvFiled->getRefIdx(); 
1568    cDMv = pNewMvFiled->getMv();
1569  }
1570  pcCU->clipMv(cTempDMv);
1571
1572  assert(dW > 0);
1573  if (!pcCU->getSlice()->getArpRefPicAvailable( eRefPicList, pcPicYuvBaseCol->getViewIndex()))
1574  {
1575    dW = 0;
1576  }
1577  Int uiLCUAddr,uiAbsPartAddr;
1578  Int irefPUX = pcCU->getCUPelX() + g_auiRasterToPelX[g_auiZscanToRaster[uiPartAddr]] + iWidth/2  + ((cDMv.getHor() + 2)>>2);
1579  Int irefPUY = pcCU->getCUPelY() + g_auiRasterToPelY[g_auiZscanToRaster[uiPartAddr]] + iHeight/2 + ((cDMv.getVer() + 2)>>2);
1580
1581  irefPUX = (Int)Clip3<Int>(0, pcCU->getSlice()->getSPS()-> getPicWidthInLumaSamples()-1, irefPUX);
1582  irefPUY = (Int)Clip3<Int>(0, pcCU->getSlice()->getSPS()->getPicHeightInLumaSamples()-1, irefPUY); 
1583  pcYuvBaseCol->getCUAddrAndPartIdx( irefPUX, irefPUY, uiLCUAddr, uiAbsPartAddr);
1584  TComDataCU *pColCU = pcPicYuvBaseCol->getCU( uiLCUAddr );
1585  if( pcCU->getSlice()->isInterB() && !pcCU->getSlice()->getIsDepth() )
1586  {
1587    RefPicList eOtherRefList = ( eRefPicList == REF_PIC_LIST_0 ) ? REF_PIC_LIST_1 : REF_PIC_LIST_0;
1588    Int iOtherRefIdx = pcCU->getCUMvField( eOtherRefList )->getRefIdx( uiPartAddr );
1589    //The other prediction direction is temporal ARP
1590    if( iOtherRefIdx >= 0 && pcCU->getSlice()->getViewIndex() == pcCU->getSlice()->getRefPic( eOtherRefList, iOtherRefIdx )->getViewIndex() )
1591    {
1592      bTMVAvai = true;
1593      pcPicYuvBaseTRef = pcCU->getSlice()->getRefPic( eOtherRefList, iOtherRefIdx );
1594      Int  iCurrPOC    = pcCU->getSlice()->getPOC();
1595      Int  iCurrRefPOC = pcPicYuvBaseTRef->getPOC();
1596      Int  iCurrRef    = pcCU->getSlice()->getFirstTRefIdx( eOtherRefList );
1597     
1598      if( iCurrRef >= 0 )
1599      {
1600        pcPicYuvCurrTRef =  pcCU->getSlice()->getRefPic( eOtherRefList,iCurrRef ); 
1601        Int iTargetPOC = pcPicYuvCurrTRef->getPOC();
1602        pcPicYuvBaseTRef =  pcCU->getSlice()->getBaseViewRefPic( iTargetPOC,  pcPicYuvBaseCol->getViewIndex() );
1603        if( pcPicYuvBaseTRef )
1604        {
1605          cBaseTMV = pcCU->getCUMvField( eOtherRefList )->getMv( uiPartAddr );
1606          Int iScale = pcCU-> xGetDistScaleFactor( iCurrPOC, iTargetPOC, iCurrPOC, iCurrRefPOC );
1607          if ( iScale != 4096 )
1608          {
1609            cBaseTMV = cBaseTMV.scaleMv( iScale );
1610          }
1611        }
1612        else
1613        {
1614          dW = 0;
1615        }
1616      }
1617      else
1618      {
1619        dW = 0;
1620      }
1621    }
1622
1623    //Both prediction directions are inter-view ARP
1624    if ( iOtherRefIdx >= 0 && !bTMVAvai )
1625    {
1626      RefPicList eBaseList = REF_PIC_LIST_0;
1627      Int iCurrTRefPoc;
1628      bTMVAvai = ( eBaseList != eRefPicList ) && ( pcCU->getSlice()->getViewIndex() != pcCU->getSlice()->getRefPic( eOtherRefList, iOtherRefIdx )->getViewIndex() );
1629
1630      if ( bTMVAvai )
1631      {
1632        if( xCheckBiInterviewARP( pcCU, uiPartAddr, iWidth, iHeight, eBaseList, pcPicYuvCurrTRef, cBaseTMV, iCurrTRefPoc ) )
1633        {
1634          pcPicYuvBaseTRef = pcCU->getSlice()->getBaseViewRefPic( iCurrTRefPoc,  pcPicYuvBaseCol->getViewIndex() );
1635          if ( pcPicYuvBaseTRef == NULL )
1636          {
1637            dW = 0;
1638          }
1639        }
1640        else
1641        {
1642          dW = 0;
1643        }
1644      }
1645    }
1646  }
1647
1648  if( !pColCU->isIntra( uiAbsPartAddr ) && !bTMVAvai )
1649  {
1650    TComMvField puMVField;
1651    for(Int iList = 0; iList < (pColCU->getSlice()->isInterB() ? 2: 1) && !bTMVAvai; iList ++)
1652    {
1653      RefPicList eRefPicListCurr = RefPicList(iList);
1654      Int iRef = pColCU->getCUMvField(eRefPicListCurr)->getRefIdx(uiAbsPartAddr);
1655      if( iRef != -1)
1656      {
1657        pcPicYuvBaseTRef = pColCU->getSlice()->getRefPic(eRefPicListCurr, iRef); 
1658        Int  iCurrPOC    = pColCU->getSlice()->getPOC();
1659        Int  iCurrRefPOC = pcPicYuvBaseTRef->getPOC();
1660        Int  iCurrRef    = pcCU->getSlice()->getFirstTRefIdx(eRefPicListCurr);
1661        if (iCurrRef >= 0 && iCurrRefPOC != iCurrPOC)
1662        {
1663          pcPicYuvCurrTRef =  pcCU->getSlice()->getRefPic(eRefPicListCurr,iCurrRef); 
1664          Int iTargetPOC = pcPicYuvCurrTRef->getPOC();
1665          {
1666            pcPicYuvBaseTRef =  pcCU->getSlice()->getBaseViewRefPic(iTargetPOC,  pcPicYuvBaseCol->getViewIndex() ); 
1667            if(pcPicYuvBaseTRef)
1668            {
1669              cBaseTMV = pColCU->getCUMvField(eRefPicListCurr)->getMv(uiAbsPartAddr);
1670              Int iScale = pcCU-> xGetDistScaleFactor(iCurrPOC, iTargetPOC, iCurrPOC, iCurrRefPOC);
1671              if ( iScale != 4096 )
1672                cBaseTMV = cBaseTMV.scaleMv( iScale );                 
1673              bTMVAvai = true;
1674              break;
1675            }
1676          }
1677        }
1678      }
1679    }
1680  }
1681  if (bTMVAvai == false)
1682  { 
1683    bTMVAvai = true;
1684    cBaseTMV.set(0, 0);
1685    pcPicYuvBaseTRef =  pColCU->getSlice()->getRefPic(eRefPicList,  pcCU->getSlice()->getFirstTRefIdx(eRefPicList)); 
1686    pcPicYuvCurrTRef =  pcCU->getSlice()->getRefPic  (eRefPicList,  pcCU->getSlice()->getFirstTRefIdx(eRefPicList));     
1687  }
1688
1689  xPredInterLumaBlk  ( pcCU, pcYuvBaseCol, uiPartAddr, &cTempDMv, iWidth, iHeight, rpcYuvPred, bi || ( dW > 0 && bTMVAvai ),        bTMVAvai);
1690  xPredInterChromaBlk( pcCU, pcYuvBaseCol, uiPartAddr, &cTempDMv, iWidth, iHeight, rpcYuvPred, bi || ( dW > 0 && bTMVAvai ),        bTMVAvai);
1691
1692  if( dW > 0 && bTMVAvai ) 
1693  {
1694    TComYuv*    pYuvCurrTRef    = &m_acYuvPredBase[0];
1695    TComYuv*    pYuvBaseTRef    = &m_acYuvPredBase[1];
1696    TComPicYuv* pcYuvCurrTref   = pcPicYuvCurrTRef->getPicYuvRec();       
1697    TComPicYuv* pcYuvBaseTref   = pcPicYuvBaseTRef->getPicYuvRec(); 
1698    TComMv      cTempMv         = cDMv + cBaseTMV;
1699
1700    pcCU->clipMv(cBaseTMV);
1701    pcCU->clipMv(cTempMv);
1702
1703    if (iWidth <= 8)
1704    {
1705      pYuvCurrTRef->clear(); pYuvBaseTRef->clear();
1706    }
1707    xPredInterLumaBlk  ( pcCU, pcYuvCurrTref, uiPartAddr, &cBaseTMV, iWidth, iHeight, pYuvCurrTRef, true,   true);
1708
1709    if (iWidth > 8)
1710      xPredInterChromaBlk( pcCU, pcYuvCurrTref, uiPartAddr, &cBaseTMV, iWidth, iHeight, pYuvCurrTRef, true,   true);
1711
1712    xPredInterLumaBlk  ( pcCU, pcYuvBaseTref, uiPartAddr, &cTempMv,  iWidth, iHeight, pYuvBaseTRef, true,   true); 
1713
1714    if (iWidth > 8)
1715      xPredInterChromaBlk( pcCU, pcYuvBaseTref, uiPartAddr, &cTempMv,  iWidth, iHeight, pYuvBaseTRef, true,   true); 
1716
1717    pYuvCurrTRef->subtractARP( pYuvCurrTRef , pYuvBaseTRef , uiPartAddr , iWidth , iHeight ); 
1718    if(dW == 2)
1719    {
1720      pYuvCurrTRef->multiplyARP( uiPartAddr , iWidth , iHeight , dW );
1721    }
1722    rpcYuvPred->addARP( rpcYuvPred , pYuvCurrTRef , uiPartAddr , iWidth , iHeight , !bi ); 
1723  }
1724}
1725#endif
1726
1727Void TComPrediction::xPredInterBi ( TComDataCU* pcCU, UInt uiPartAddr, Int iWidth, Int iHeight, TComYuv*& rpcYuvPred )
1728{
1729  TComYuv* pcMbYuv;
1730  Int      iRefIdx[2] = {-1, -1};
1731
1732  for ( Int iRefList = 0; iRefList < 2; iRefList++ )
1733  {
1734    RefPicList eRefPicList = (iRefList ? REF_PIC_LIST_1 : REF_PIC_LIST_0);
1735    iRefIdx[iRefList] = pcCU->getCUMvField( eRefPicList )->getRefIdx( uiPartAddr );
1736
1737    if ( iRefIdx[iRefList] < 0 )
1738    {
1739      continue;
1740    }
1741
1742    assert( iRefIdx[iRefList] < pcCU->getSlice()->getNumRefIdx(eRefPicList) );
1743
1744    pcMbYuv = &m_acYuvPred[iRefList];
1745    if( pcCU->getCUMvField( REF_PIC_LIST_0 )->getRefIdx( uiPartAddr ) >= 0 && pcCU->getCUMvField( REF_PIC_LIST_1 )->getRefIdx( uiPartAddr ) >= 0 )
1746    {
1747      xPredInterUni ( pcCU, uiPartAddr, iWidth, iHeight, eRefPicList, pcMbYuv, true );
1748    }
1749    else
1750    {
1751      if ( ( pcCU->getSlice()->getPPS()->getUseWP()       && pcCU->getSlice()->getSliceType() == P_SLICE ) || 
1752           ( pcCU->getSlice()->getPPS()->getWPBiPred() && pcCU->getSlice()->getSliceType() == B_SLICE ) )
1753      {
1754        xPredInterUni ( pcCU, uiPartAddr, iWidth, iHeight, eRefPicList, pcMbYuv, true );
1755      }
1756      else
1757      {
1758        xPredInterUni ( pcCU, uiPartAddr, iWidth, iHeight, eRefPicList, pcMbYuv );
1759      }
1760    }
1761  }
1762
1763  if ( pcCU->getSlice()->getPPS()->getWPBiPred() && pcCU->getSlice()->getSliceType() == B_SLICE  )
1764  {
1765    xWeightedPredictionBi( pcCU, &m_acYuvPred[0], &m_acYuvPred[1], iRefIdx[0], iRefIdx[1], uiPartAddr, iWidth, iHeight, rpcYuvPred );
1766  } 
1767  else if ( pcCU->getSlice()->getPPS()->getUseWP() && pcCU->getSlice()->getSliceType() == P_SLICE )
1768  {
1769    xWeightedPredictionUni( pcCU, &m_acYuvPred[0], uiPartAddr, iWidth, iHeight, REF_PIC_LIST_0, rpcYuvPred ); 
1770  }
1771  else
1772  {
1773    xWeightedAverage( &m_acYuvPred[0], &m_acYuvPred[1], iRefIdx[0], iRefIdx[1], uiPartAddr, iWidth, iHeight, rpcYuvPred );
1774  }
1775}
1776
1777#if H_3D_VSP
1778
1779Void TComPrediction::xPredInterBiVSP( TComDataCU* pcCU, UInt uiPartAddr, Int iWidth, Int iHeight, TComYuv*& rpcYuvPred )
1780{
1781  TComYuv* pcMbYuv;
1782  Int      iRefIdx[2] = {-1, -1};
1783  Bool     bi = (pcCU->getCUMvField( REF_PIC_LIST_0 )->getRefIdx( uiPartAddr ) >= 0 && pcCU->getCUMvField( REF_PIC_LIST_1 )->getRefIdx( uiPartAddr ) >= 0);
1784
1785  for ( Int iRefList = 0; iRefList < 2; iRefList++ )
1786  {
1787    RefPicList eRefPicList = RefPicList(iRefList);
1788    iRefIdx[iRefList] = pcCU->getCUMvField( eRefPicList )->getRefIdx( uiPartAddr );
1789
1790    if ( iRefIdx[iRefList] < 0 )
1791    {
1792      continue;
1793    }
1794    assert( iRefIdx[iRefList] < pcCU->getSlice()->getNumRefIdx(eRefPicList) );
1795
1796    pcMbYuv = &m_acYuvPred[iRefList];
1797    xPredInterUniVSP ( pcCU, uiPartAddr, iWidth, iHeight, eRefPicList, pcMbYuv, bi );
1798  }
1799
1800  xWeightedAverage( &m_acYuvPred[0], &m_acYuvPred[1], iRefIdx[0], iRefIdx[1], uiPartAddr, iWidth, iHeight, rpcYuvPred );
1801}
1802
1803#endif
1804
1805/**
1806 * \brief Generate motion-compensated luma block
1807 *
1808 * \param cu       Pointer to current CU
1809 * \param refPic   Pointer to reference picture
1810 * \param partAddr Address of block within CU
1811 * \param mv       Motion vector
1812 * \param width    Width of block
1813 * \param height   Height of block
1814 * \param dstPic   Pointer to destination picture
1815 * \param bi       Flag indicating whether bipred is used
1816 */
1817Void TComPrediction::xPredInterLumaBlk( TComDataCU *cu, TComPicYuv *refPic, UInt partAddr, TComMv *mv, Int width, Int height, TComYuv *&dstPic, Bool bi
1818#if H_3D_ARP
1819    , Bool filterType
1820#endif
1821#if H_3D_IC
1822    , Bool bICFlag
1823#endif
1824  )
1825{
1826  Int refStride = refPic->getStride(); 
1827  Int refOffset = ( mv->getHor() >> 2 ) + ( mv->getVer() >> 2 ) * refStride;
1828  Pel *ref      = refPic->getLumaAddr( cu->getAddr(), cu->getZorderIdxInCU() + partAddr ) + refOffset;
1829 
1830  Int dstStride = dstPic->getStride();
1831  Pel *dst      = dstPic->getLumaAddr( partAddr );
1832 
1833  Int xFrac = mv->getHor() & 0x3;
1834  Int yFrac = mv->getVer() & 0x3;
1835
1836#if H_3D_IC
1837  if( cu->getSlice()->getIsDepth() )
1838  {
1839    refOffset = mv->getHor() + mv->getVer() * refStride;
1840    ref       = refPic->getLumaAddr( cu->getAddr(), cu->getZorderIdxInCU() + partAddr ) + refOffset;
1841    xFrac     = 0;
1842    yFrac     = 0;
1843  }
1844#endif
1845  if ( yFrac == 0 )
1846  {
1847#if H_3D_IC
1848    m_if.filterHorLuma( ref, refStride, dst, dstStride, width, height, xFrac,       !bi || bICFlag
1849#else
1850    m_if.filterHorLuma( ref, refStride, dst, dstStride, width, height, xFrac,       !bi
1851#endif
1852#if H_3D_ARP
1853    , filterType
1854#endif
1855      );
1856  }
1857  else if ( xFrac == 0 )
1858  {
1859#if H_3D_IC
1860    m_if.filterVerLuma( ref, refStride, dst, dstStride, width, height, yFrac, true, !bi || bICFlag
1861#else
1862    m_if.filterVerLuma( ref, refStride, dst, dstStride, width, height, yFrac, true, !bi
1863#endif
1864#if H_3D_ARP
1865    , filterType
1866#endif
1867      );
1868  }
1869  else
1870  {
1871    Int tmpStride = m_filteredBlockTmp[0].getStride();
1872    Short *tmp    = m_filteredBlockTmp[0].getLumaAddr();
1873
1874    Int filterSize = NTAPS_LUMA;
1875    Int halfFilterSize = ( filterSize >> 1 );
1876
1877    m_if.filterHorLuma(ref - (halfFilterSize-1)*refStride, refStride, tmp, tmpStride, width, height+filterSize-1, xFrac, false     
1878#if H_3D_ARP
1879    , filterType
1880#endif
1881      );
1882#if H_3D_IC
1883    m_if.filterVerLuma(tmp + (halfFilterSize-1)*tmpStride, tmpStride, dst, dstStride, width, height,              yFrac, false, !bi || bICFlag
1884#else
1885    m_if.filterVerLuma(tmp + (halfFilterSize-1)*tmpStride, tmpStride, dst, dstStride, width, height,              yFrac, false, !bi
1886#endif
1887#if H_3D_ARP
1888    , filterType
1889#endif
1890      );   
1891  }
1892
1893#if H_3D_IC
1894  if( bICFlag )
1895  {
1896    Int a, b, i, j;
1897    const Int iShift = IC_CONST_SHIFT;
1898
1899    xGetLLSICPrediction( cu, mv, refPic, a, b, TEXT_LUMA );
1900
1901
1902    for ( i = 0; i < height; i++ )
1903    {
1904      for ( j = 0; j < width; j++ )
1905      {
1906          dst[j] = Clip3( 0, ( 1 << g_bitDepthY ) - 1, ( ( a*dst[j] ) >> iShift ) + b );
1907      }
1908      dst += dstStride;
1909    }
1910
1911    if(bi)
1912    {
1913      Pel *dst2      = dstPic->getLumaAddr( partAddr );
1914      Int shift = IF_INTERNAL_PREC - g_bitDepthY;
1915      for (i = 0; i < height; i++)
1916      {
1917        for (j = 0; j < width; j++)
1918        {
1919          Short val = dst2[j] << shift;
1920          dst2[j] = val - (Short)IF_INTERNAL_OFFS;
1921        }
1922        dst2 += dstStride;
1923      }
1924    }
1925  }
1926#endif
1927}
1928
1929/**
1930 * \brief Generate motion-compensated chroma block
1931 *
1932 * \param cu       Pointer to current CU
1933 * \param refPic   Pointer to reference picture
1934 * \param partAddr Address of block within CU
1935 * \param mv       Motion vector
1936 * \param width    Width of block
1937 * \param height   Height of block
1938 * \param dstPic   Pointer to destination picture
1939 * \param bi       Flag indicating whether bipred is used
1940 */
1941Void TComPrediction::xPredInterChromaBlk( TComDataCU *cu, TComPicYuv *refPic, UInt partAddr, TComMv *mv, Int width, Int height, TComYuv *&dstPic, Bool bi
1942#if H_3D_ARP
1943    , Bool filterType
1944#endif
1945#if H_3D_IC
1946    , Bool bICFlag
1947#endif
1948  )
1949{
1950  Int     refStride  = refPic->getCStride();
1951  Int     dstStride  = dstPic->getCStride();
1952 
1953  Int     refOffset  = (mv->getHor() >> 3) + (mv->getVer() >> 3) * refStride;
1954 
1955  Pel*    refCb     = refPic->getCbAddr( cu->getAddr(), cu->getZorderIdxInCU() + partAddr ) + refOffset;
1956  Pel*    refCr     = refPic->getCrAddr( cu->getAddr(), cu->getZorderIdxInCU() + partAddr ) + refOffset;
1957 
1958  Pel* dstCb = dstPic->getCbAddr( partAddr );
1959  Pel* dstCr = dstPic->getCrAddr( partAddr );
1960 
1961  Int     xFrac  = mv->getHor() & 0x7;
1962  Int     yFrac  = mv->getVer() & 0x7;
1963  UInt    cxWidth  = width  >> 1;
1964  UInt    cxHeight = height >> 1;
1965 
1966  Int     extStride = m_filteredBlockTmp[0].getStride();
1967  Short*  extY      = m_filteredBlockTmp[0].getLumaAddr();
1968 
1969  Int filterSize = NTAPS_CHROMA;
1970 
1971  Int halfFilterSize = (filterSize>>1);
1972 
1973  if ( yFrac == 0 )
1974  {
1975#if H_3D_IC
1976    m_if.filterHorChroma(refCb, refStride, dstCb,  dstStride, cxWidth, cxHeight, xFrac, !bi || bICFlag
1977#else
1978    m_if.filterHorChroma(refCb, refStride, dstCb,  dstStride, cxWidth, cxHeight, xFrac, !bi
1979#endif
1980#if H_3D_ARP
1981    , filterType
1982#endif
1983    );   
1984#if H_3D_IC
1985    m_if.filterHorChroma(refCr, refStride, dstCr,  dstStride, cxWidth, cxHeight, xFrac, !bi || bICFlag
1986#else
1987    m_if.filterHorChroma(refCr, refStride, dstCr,  dstStride, cxWidth, cxHeight, xFrac, !bi
1988#endif
1989#if H_3D_ARP
1990    , filterType
1991#endif
1992    );
1993  }
1994  else if ( xFrac == 0 )
1995  {
1996#if H_3D_IC
1997    m_if.filterVerChroma(refCb, refStride, dstCb, dstStride, cxWidth, cxHeight, yFrac, true, !bi || bICFlag
1998#else
1999    m_if.filterVerChroma(refCb, refStride, dstCb, dstStride, cxWidth, cxHeight, yFrac, true, !bi
2000#endif
2001#if H_3D_ARP
2002    , filterType
2003#endif
2004    );
2005#if H_3D_IC
2006    m_if.filterVerChroma(refCr, refStride, dstCr, dstStride, cxWidth, cxHeight, yFrac, true, !bi || bICFlag
2007#else
2008    m_if.filterVerChroma(refCr, refStride, dstCr, dstStride, cxWidth, cxHeight, yFrac, true, !bi
2009#endif
2010#if H_3D_ARP
2011    , filterType
2012#endif
2013    );
2014  }
2015  else
2016  {
2017    m_if.filterHorChroma(refCb - (halfFilterSize-1)*refStride, refStride, extY,  extStride, cxWidth, cxHeight+filterSize-1, xFrac, false
2018#if H_3D_ARP
2019    , filterType
2020#endif 
2021      );
2022#if H_3D_IC
2023    m_if.filterVerChroma(extY  + (halfFilterSize-1)*extStride, extStride, dstCb, dstStride, cxWidth, cxHeight  , yFrac, false, !bi || bICFlag
2024#else
2025    m_if.filterVerChroma(extY  + (halfFilterSize-1)*extStride, extStride, dstCb, dstStride, cxWidth, cxHeight  , yFrac, false, !bi
2026#endif
2027#if H_3D_ARP
2028    , filterType
2029#endif
2030      );
2031   
2032    m_if.filterHorChroma(refCr - (halfFilterSize-1)*refStride, refStride, extY,  extStride, cxWidth, cxHeight+filterSize-1, xFrac, false
2033#if H_3D_ARP
2034    , filterType
2035#endif
2036      );
2037#if H_3D_IC
2038    m_if.filterVerChroma(extY  + (halfFilterSize-1)*extStride, extStride, dstCr, dstStride, cxWidth, cxHeight  , yFrac, false, !bi || bICFlag
2039#else
2040    m_if.filterVerChroma(extY  + (halfFilterSize-1)*extStride, extStride, dstCr, dstStride, cxWidth, cxHeight  , yFrac, false, !bi
2041#endif
2042#if H_3D_ARP
2043    , filterType
2044#endif
2045      );   
2046  }
2047
2048#if H_3D_IC
2049  if( bICFlag )
2050  {
2051    Int a, b, i, j;
2052    const Int iShift = IC_CONST_SHIFT;
2053
2054    xGetLLSICPrediction( cu, mv, refPic, a, b, TEXT_CHROMA_U ); // Cb
2055    for ( i = 0; i < cxHeight; i++ )
2056    {
2057      for ( j = 0; j < cxWidth; j++ )
2058      {
2059          dstCb[j] = Clip3(  0, ( 1 << g_bitDepthC ) - 1, ( ( a*dstCb[j] ) >> iShift ) + b );
2060      }
2061      dstCb += dstStride;
2062    }
2063    xGetLLSICPrediction( cu, mv, refPic, a, b, TEXT_CHROMA_V ); // Cr
2064    for ( i = 0; i < cxHeight; i++ )
2065    {
2066      for ( j = 0; j < cxWidth; j++ )
2067      {
2068          dstCr[j] = Clip3( 0, ( 1 << g_bitDepthC ) - 1, ( ( a*dstCr[j] ) >> iShift ) + b );
2069      }
2070      dstCr += dstStride;
2071    }
2072
2073    if(bi)
2074    {
2075      Pel* dstCb2 = dstPic->getCbAddr( partAddr );
2076      Pel* dstCr2 = dstPic->getCrAddr( partAddr );
2077      Int shift = IF_INTERNAL_PREC - g_bitDepthC;
2078      for (i = 0; i < cxHeight; i++)
2079      {
2080        for (j = 0; j < cxWidth; j++)
2081        {
2082          Short val = dstCb2[j] << shift;
2083          dstCb2[j] = val - (Short)IF_INTERNAL_OFFS;
2084
2085          val = dstCr2[j] << shift;
2086          dstCr2[j] = val - (Short)IF_INTERNAL_OFFS;
2087        }
2088        dstCb2 += dstStride;
2089        dstCr2 += dstStride;
2090      }
2091    }
2092  }
2093#endif
2094}
2095
2096Void TComPrediction::xWeightedAverage( TComYuv* pcYuvSrc0, TComYuv* pcYuvSrc1, Int iRefIdx0, Int iRefIdx1, UInt uiPartIdx, Int iWidth, Int iHeight, TComYuv*& rpcYuvDst )
2097{
2098  if( iRefIdx0 >= 0 && iRefIdx1 >= 0 )
2099  {
2100    rpcYuvDst->addAvg( pcYuvSrc0, pcYuvSrc1, uiPartIdx, iWidth, iHeight );
2101  }
2102  else if ( iRefIdx0 >= 0 && iRefIdx1 <  0 )
2103  {
2104    pcYuvSrc0->copyPartToPartYuv( rpcYuvDst, uiPartIdx, iWidth, iHeight );
2105  }
2106  else if ( iRefIdx0 <  0 && iRefIdx1 >= 0 )
2107  {
2108    pcYuvSrc1->copyPartToPartYuv( rpcYuvDst, uiPartIdx, iWidth, iHeight );
2109  }
2110}
2111
2112// AMVP
2113Void TComPrediction::getMvPredAMVP( TComDataCU* pcCU, UInt uiPartIdx, UInt uiPartAddr, RefPicList eRefPicList, TComMv& rcMvPred )
2114{
2115  AMVPInfo* pcAMVPInfo = pcCU->getCUMvField(eRefPicList)->getAMVPInfo();
2116  if( pcAMVPInfo->iN <= 1 )
2117  {
2118    rcMvPred = pcAMVPInfo->m_acMvCand[0];
2119
2120    pcCU->setMVPIdxSubParts( 0, eRefPicList, uiPartAddr, uiPartIdx, pcCU->getDepth(uiPartAddr));
2121    pcCU->setMVPNumSubParts( pcAMVPInfo->iN, eRefPicList, uiPartAddr, uiPartIdx, pcCU->getDepth(uiPartAddr));
2122    return;
2123  }
2124
2125  assert(pcCU->getMVPIdx(eRefPicList,uiPartAddr) >= 0);
2126  rcMvPred = pcAMVPInfo->m_acMvCand[pcCU->getMVPIdx(eRefPicList,uiPartAddr)];
2127  return;
2128}
2129
2130/** Function for deriving planar intra prediction.
2131 * \param pSrc pointer to reconstructed sample array
2132 * \param srcStride the stride of the reconstructed sample array
2133 * \param rpDst reference to pointer for the prediction sample array
2134 * \param dstStride the stride of the prediction sample array
2135 * \param width the width of the block
2136 * \param height the height of the block
2137 *
2138 * This function derives the prediction samples for planar mode (intra coding).
2139 */
2140Void TComPrediction::xPredIntraPlanar( Int* pSrc, Int srcStride, Pel* rpDst, Int dstStride, UInt width, UInt height )
2141{
2142  assert(width == height);
2143
2144  Int k, l, bottomLeft, topRight;
2145  Int horPred;
2146  Int leftColumn[MAX_CU_SIZE+1], topRow[MAX_CU_SIZE+1], bottomRow[MAX_CU_SIZE], rightColumn[MAX_CU_SIZE];
2147  UInt blkSize = width;
2148  UInt offset2D = width;
2149  UInt shift1D = g_aucConvertToBit[ width ] + 2;
2150  UInt shift2D = shift1D + 1;
2151
2152  // Get left and above reference column and row
2153  for(k=0;k<blkSize+1;k++)
2154  {
2155    topRow[k] = pSrc[k-srcStride];
2156    leftColumn[k] = pSrc[k*srcStride-1];
2157  }
2158
2159  // Prepare intermediate variables used in interpolation
2160  bottomLeft = leftColumn[blkSize];
2161  topRight   = topRow[blkSize];
2162  for (k=0;k<blkSize;k++)
2163  {
2164    bottomRow[k]   = bottomLeft - topRow[k];
2165    rightColumn[k] = topRight   - leftColumn[k];
2166    topRow[k]      <<= shift1D;
2167    leftColumn[k]  <<= shift1D;
2168  }
2169
2170  // Generate prediction signal
2171  for (k=0;k<blkSize;k++)
2172  {
2173    horPred = leftColumn[k] + offset2D;
2174    for (l=0;l<blkSize;l++)
2175    {
2176      horPred += rightColumn[k];
2177      topRow[l] += bottomRow[l];
2178      rpDst[k*dstStride+l] = ( (horPred + topRow[l]) >> shift2D );
2179    }
2180  }
2181}
2182
2183/** Function for filtering intra DC predictor.
2184 * \param pSrc pointer to reconstructed sample array
2185 * \param iSrcStride the stride of the reconstructed sample array
2186 * \param rpDst reference to pointer for the prediction sample array
2187 * \param iDstStride the stride of the prediction sample array
2188 * \param iWidth the width of the block
2189 * \param iHeight the height of the block
2190 *
2191 * This function performs filtering left and top edges of the prediction samples for DC mode (intra coding).
2192 */
2193Void TComPrediction::xDCPredFiltering( Int* pSrc, Int iSrcStride, Pel*& rpDst, Int iDstStride, Int iWidth, Int iHeight )
2194{
2195  Pel* pDst = rpDst;
2196  Int x, y, iDstStride2, iSrcStride2;
2197
2198  // boundary pixels processing
2199  pDst[0] = (Pel)((pSrc[-iSrcStride] + pSrc[-1] + 2 * pDst[0] + 2) >> 2);
2200
2201  for ( x = 1; x < iWidth; x++ )
2202  {
2203    pDst[x] = (Pel)((pSrc[x - iSrcStride] +  3 * pDst[x] + 2) >> 2);
2204  }
2205
2206  for ( y = 1, iDstStride2 = iDstStride, iSrcStride2 = iSrcStride-1; y < iHeight; y++, iDstStride2+=iDstStride, iSrcStride2+=iSrcStride )
2207  {
2208    pDst[iDstStride2] = (Pel)((pSrc[iSrcStride2] + 3 * pDst[iDstStride2] + 2) >> 2);
2209  }
2210
2211  return;
2212}
2213#if H_3D_IC
2214/** Function for deriving the position of first non-zero binary bit of a value
2215 * \param x input value
2216 *
2217 * This function derives the position of first non-zero binary bit of a value
2218 */
2219Int GetMSB( UInt x )
2220{
2221  Int iMSB = 0, bits = ( sizeof( Int ) << 3 ), y = 1;
2222
2223  while( x > 1 )
2224  {
2225    bits >>= 1;
2226    y = x >> bits;
2227
2228    if( y )
2229    {
2230      x = y;
2231      iMSB += bits;
2232    }
2233  }
2234
2235  iMSB+=y;
2236
2237  return iMSB;
2238}
2239
2240
2241/** Function for deriving LM illumination compensation.
2242 */
2243Void TComPrediction::xGetLLSICPrediction( TComDataCU* pcCU, TComMv *pMv, TComPicYuv *pRefPic, Int &a, Int &b, TextType eType )
2244{
2245  TComPicYuv *pRecPic = pcCU->getPic()->getPicYuvRec();
2246  Pel *pRec = NULL, *pRef = NULL;
2247  UInt uiWidth, uiHeight, uiTmpPartIdx;
2248  Int iRecStride = ( eType == TEXT_LUMA ) ? pRecPic->getStride() : pRecPic->getCStride();
2249  Int iRefStride = ( eType == TEXT_LUMA ) ? pRefPic->getStride() : pRefPic->getCStride();
2250  Int iRefOffset, iHor, iVer;
2251  iHor = pcCU->getSlice()->getIsDepth() ? pMv->getHor() : ( ( pMv->getHor() + 2 ) >> 2 );
2252  iVer = pcCU->getSlice()->getIsDepth() ? pMv->getVer() : ( ( pMv->getVer() + 2 ) >> 2 );
2253  if( eType != TEXT_LUMA )
2254  {
2255    iHor = pcCU->getSlice()->getIsDepth() ? ( ( pMv->getHor() + 1 ) >> 1 ) : ( ( pMv->getHor() + 4 ) >> 3 );
2256    iVer = pcCU->getSlice()->getIsDepth() ? ( ( pMv->getVer() + 1 ) >> 1 ) : ( ( pMv->getVer() + 4 ) >> 3 );
2257  }
2258  uiWidth  = ( eType == TEXT_LUMA ) ? pcCU->getWidth( 0 )  : ( pcCU->getWidth( 0 )  >> 1 );
2259  uiHeight = ( eType == TEXT_LUMA ) ? pcCU->getHeight( 0 ) : ( pcCU->getHeight( 0 ) >> 1 );
2260
2261  Int i, j, iCountShift = 0;
2262
2263  // LLS parameters estimation -->
2264
2265  Int x = 0, y = 0, xx = 0, xy = 0;
2266  Int precShift = std::max(0, (( eType == TEXT_LUMA ) ? g_bitDepthY : g_bitDepthC) - 12);
2267
2268  if( pcCU->getPUAbove( uiTmpPartIdx, pcCU->getZorderIdxInCU() ) )
2269  {
2270    iRefOffset = iHor + iVer * iRefStride - iRefStride;
2271    if( eType == TEXT_LUMA )
2272    {
2273      pRef = pRefPic->getLumaAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() ) + iRefOffset;
2274      pRec = pRecPic->getLumaAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() ) - iRecStride;
2275    }
2276    else if( eType == TEXT_CHROMA_U )
2277    {
2278      pRef = pRefPic->getCbAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() ) + iRefOffset;
2279      pRec = pRecPic->getCbAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() ) - iRecStride;
2280    }
2281    else
2282    {
2283      assert( eType == TEXT_CHROMA_V );
2284      pRef = pRefPic->getCrAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() ) + iRefOffset;
2285      pRec = pRecPic->getCrAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() ) - iRecStride;
2286    }
2287
2288    for( j = 0; j < uiWidth; j+=2 )
2289    {
2290      x += pRef[j];
2291      y += pRec[j];
2292      if ( eType == TEXT_LUMA )
2293      {
2294        xx += (pRef[j] * pRef[j])>>precShift;
2295        xy += (pRef[j] * pRec[j])>>precShift;
2296      }
2297    }
2298    iCountShift += g_aucConvertToBit[ uiWidth ] + 1;
2299  }
2300
2301  if( pcCU->getPULeft( uiTmpPartIdx, pcCU->getZorderIdxInCU() ) )
2302  {
2303    iRefOffset = iHor + iVer * iRefStride - 1;
2304    if( eType == TEXT_LUMA )
2305    {
2306      pRef = pRefPic->getLumaAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() ) + iRefOffset;
2307      pRec = pRecPic->getLumaAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() ) - 1;
2308    }
2309    else if( eType == TEXT_CHROMA_U )
2310    {
2311      pRef = pRefPic->getCbAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() ) + iRefOffset;
2312      pRec = pRecPic->getCbAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() ) - 1;
2313    }
2314    else
2315    {
2316      assert( eType == TEXT_CHROMA_V );
2317      pRef = pRefPic->getCrAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() ) + iRefOffset;
2318      pRec = pRecPic->getCrAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() ) - 1;
2319    }
2320
2321    for( i = 0; i < uiHeight; i+=2 )
2322    {
2323      x += pRef[0];
2324      y += pRec[0];
2325      if ( eType == TEXT_LUMA )
2326      {
2327        xx += (pRef[0] * pRef[0])>>precShift;
2328        xy += (pRef[0] * pRec[0])>>precShift;
2329      }
2330      pRef += iRefStride*2;
2331      pRec += iRecStride*2;
2332    }
2333    iCountShift += iCountShift > 0 ? 1 : ( g_aucConvertToBit[ uiWidth ] + 1 );
2334  }
2335
2336  if( iCountShift == 0 )
2337  {
2338    a = ( 1 << IC_CONST_SHIFT );
2339    b = 0;
2340    return;
2341  }
2342
2343  if (  eType != TEXT_LUMA )
2344  {
2345    a = 32;
2346    b = (  y - x + ( 1 << ( iCountShift - 1 ) ) ) >> iCountShift;
2347  }
2348  else
2349  {
2350  xy += xx >> IC_REG_COST_SHIFT;
2351  xx += xx >> IC_REG_COST_SHIFT;
2352  Int a1 = ( xy << iCountShift ) - ((y * x) >> precShift);
2353  Int a2 = ( xx << iCountShift ) - ((x * x) >> precShift);
2354  const Int iShift = IC_CONST_SHIFT;
2355  {
2356    {
2357      const Int iShiftA2 = 6;
2358      const Int iAccuracyShift = 15;
2359
2360      Int iScaleShiftA2 = 0;
2361      Int iScaleShiftA1 = 0;
2362      Int a1s = a1;
2363      Int a2s = a2;
2364
2365      a1 = Clip3(0, 2*a2, a1);
2366      iScaleShiftA2 = GetMSB( abs( a2 ) ) - iShiftA2;
2367      iScaleShiftA1 = iScaleShiftA2 - IC_SHIFT_DIFF;
2368
2369      if( iScaleShiftA1 < 0 )
2370      {
2371        iScaleShiftA1 = 0;
2372      }
2373
2374      if( iScaleShiftA2 < 0 )
2375      {
2376        iScaleShiftA2 = 0;
2377      }
2378
2379      Int iScaleShiftA = iScaleShiftA2 + iAccuracyShift - iShift - iScaleShiftA1;
2380
2381
2382      a2s = a2 >> iScaleShiftA2;
2383
2384      a1s = a1 >> iScaleShiftA1;
2385
2386      a = a1s * m_uiaShift[ a2s ];
2387      a = a >> iScaleShiftA;
2388      b = (  y - ( ( a * x ) >> iShift ) + ( 1 << ( iCountShift - 1 ) ) ) >> iCountShift;
2389    }
2390  }   
2391  }
2392}
2393#endif
2394
2395#if H_3D_DIM
2396Void TComPrediction::xPredBiSegDCs( Int* ptrSrc, UInt srcStride, Bool* biSegPattern, Int patternStride, Pel& predDC1, Pel& predDC2 )
2397{
2398  Int  refDC1, refDC2;
2399  const Int  iTR = (   patternStride - 1        ) - srcStride;
2400  const Int  iTM = ( ( patternStride - 1 ) >> 1 ) - srcStride;
2401  const Int  iLB = (   patternStride - 1        ) * srcStride - 1;
2402  const Int  iLM = ( ( patternStride - 1 ) >> 1 ) * srcStride - 1;
2403
2404  Bool bL = ( biSegPattern[0] != biSegPattern[(patternStride-1)*patternStride] );
2405  Bool bT = ( biSegPattern[0] != biSegPattern[(patternStride-1)]               );
2406
2407  if( bL == bT )
2408  {
2409    const Int  iTRR = ( patternStride * 2 - 1  ) - srcStride; 
2410    const Int  iLBB = ( patternStride * 2 - 1  ) * srcStride - 1;
2411    refDC1 = bL ? ( ptrSrc[iTR] + ptrSrc[iLB] )>>1 : (abs(ptrSrc[iTRR] - ptrSrc[-(Int)srcStride]) > abs(ptrSrc[iLBB] - ptrSrc[ -1]) ? ptrSrc[iTRR] : ptrSrc[iLBB]);
2412    refDC2 =      ( ptrSrc[ -1] + ptrSrc[-(Int)srcStride] )>>1;
2413  }
2414  else
2415  {
2416    refDC1 = bL ? ptrSrc[iLB] : ptrSrc[iTR];
2417    refDC2 = bL ? ptrSrc[iTM] : ptrSrc[iLM];
2418  }
2419
2420  predDC1 = biSegPattern[0] ? refDC1 : refDC2;
2421  predDC2 = biSegPattern[0] ? refDC2 : refDC1;
2422}
2423
2424Void TComPrediction::xAssignBiSegDCs( Pel* ptrDst, UInt dstStride, Bool* biSegPattern, Int patternStride, Pel valDC1, Pel valDC2 )
2425{
2426  if( dstStride == patternStride )
2427  {
2428    for( UInt k = 0; k < (patternStride * patternStride); k++ )
2429    {
2430      if( true == biSegPattern[k] ) { ptrDst[k] = valDC2; }
2431      else                          { ptrDst[k] = valDC1; }
2432    }
2433  }
2434  else
2435  {
2436    Pel* piTemp = ptrDst;
2437    for( UInt uiY = 0; uiY < patternStride; uiY++ )
2438    {
2439      for( UInt uiX = 0; uiX < patternStride; uiX++ )
2440      {
2441        if( true == biSegPattern[uiX] ) { piTemp[uiX] = valDC2; }
2442        else                            { piTemp[uiX] = valDC1; }
2443      }
2444      piTemp       += dstStride;
2445      biSegPattern += patternStride;
2446    }
2447  }
2448}
2449
2450#if H_3D_DIM_DMM
2451
2452Void TComPrediction::xPredContourFromTex( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiWidth, UInt uiHeight, TComWedgelet* pcContourWedge )
2453{
2454  pcContourWedge->clear();
2455
2456  // get copy of co-located texture luma block
2457  TComYuv cTempYuv;
2458  cTempYuv.create( uiWidth, uiHeight ); 
2459  cTempYuv.clear();
2460  Pel* piRefBlkY = cTempYuv.getLumaAddr();
2461  xCopyTextureLumaBlock( pcCU, uiAbsPartIdx, piRefBlkY, uiWidth, uiHeight );
2462  piRefBlkY = cTempYuv.getLumaAddr();
2463
2464  // find contour for texture luma block
2465  UInt iDC = 0;
2466
2467  iDC  = piRefBlkY[ 0 ];
2468  iDC += piRefBlkY[ uiWidth - 1 ];
2469  iDC += piRefBlkY[ uiWidth * (uiHeight - 1) ];
2470  iDC += piRefBlkY[ uiWidth * (uiHeight - 1) + uiWidth - 1 ];
2471  iDC = iDC >> 2;
2472
2473  piRefBlkY = cTempYuv.getLumaAddr();
2474
2475  Bool* pabContourPattern = pcContourWedge->getPattern();
2476  for( UInt k = 0; k < (uiWidth*uiHeight); k++ ) 
2477  { 
2478    pabContourPattern[k] = (piRefBlkY[k] > iDC) ? true : false;
2479  }
2480
2481  cTempYuv.destroy();
2482}
2483
2484
2485Void TComPrediction::xCopyTextureLumaBlock( TComDataCU* pcCU, UInt uiAbsPartIdx, Pel* piDestBlockY, UInt uiWidth, UInt uiHeight )
2486{
2487  TComPicYuv* pcPicYuvRef = pcCU->getSlice()->getTexturePic()->getPicYuvRec();
2488  assert( pcPicYuvRef != NULL );
2489  Int         iRefStride = pcPicYuvRef->getStride();
2490  Pel*        piRefY = pcPicYuvRef->getLumaAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() + uiAbsPartIdx );
2491
2492  for ( Int y = 0; y < uiHeight; y++ )
2493  {
2494    ::memcpy(piDestBlockY, piRefY, sizeof(Pel)*uiWidth);
2495    piDestBlockY += uiWidth;
2496    piRefY += iRefStride;
2497  }
2498}
2499#endif
2500
2501
2502#if H_3D_DIM_SDC
2503Void TComPrediction::analyzeSegmentsSDC( Pel* pOrig, UInt uiStride, UInt uiSize, Pel* rpSegMeans, UInt uiNumSegments, Bool* pMask, UInt uiMaskStride
2504                                         ,UInt uiIntraMode
2505                                         ,Bool orgDC
2506                                        )
2507{
2508  Int iSumDepth[2];
2509  memset(iSumDepth, 0, sizeof(Int)*2);
2510  Int iSumPix[2];
2511  memset(iSumPix, 0, sizeof(Int)*2);
2512  for( Int i = 0; i < uiNumSegments; i++ )
2513  {
2514    rpSegMeans[i] = 0;
2515  }
2516  if (orgDC == false)
2517  {
2518    Pel* pLeftTop = pOrig;
2519    Pel* pRightTop = pOrig + (uiSize-1);
2520    Pel* pLeftBottom = (pOrig+ (uiStride*(uiSize-1)));
2521    Pel* pRightBottom = (pOrig+ (uiStride*(uiSize-1)) + (uiSize-1));
2522
2523    rpSegMeans[0] = (*pLeftTop + *pRightTop + *pLeftBottom + *pRightBottom + 2)>>2;
2524    return;
2525  }
2526
2527  Int subSamplePix;
2528  if ( uiSize == 64 || uiSize == 32 )
2529  {
2530    subSamplePix = 2;
2531  }
2532  else
2533  {
2534    subSamplePix = 1;
2535  }
2536  for (Int y=0; y<uiSize; y+=subSamplePix)
2537  {
2538    for (Int x=0; x<uiSize; x+=subSamplePix)
2539    {
2540      UChar ucSegment = pMask?(UChar)pMask[x]:0;
2541      assert( ucSegment < uiNumSegments );
2542     
2543      iSumDepth[ucSegment] += pOrig[x];
2544      iSumPix[ucSegment]   += 1;
2545    }
2546   
2547    pOrig  += uiStride*subSamplePix;
2548    pMask  += uiMaskStride*subSamplePix;
2549  }
2550 
2551  // compute mean for each segment
2552  for( UChar ucSeg = 0; ucSeg < uiNumSegments; ucSeg++ )
2553  {
2554    if( iSumPix[ucSeg] > 0 )
2555      rpSegMeans[ucSeg] = iSumDepth[ucSeg] / iSumPix[ucSeg];
2556    else
2557      rpSegMeans[ucSeg] = 0;  // this happens for zero-segments
2558  }
2559}
2560#endif // H_3D_DIM_SDC
2561#endif
2562//! \}
Note: See TracBrowser for help on using the repository browser.