source: 3DVCSoftware/branches/HTM-13.1-dev1-Samsung/source/Lib/TLibCommon/TComPrediction.cpp @ 1147

Last change on this file since 1147 was 1147, checked in by samsung-htm, 9 years ago

Integration of K0035: Removal of encoder restriction of ARP

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