source: 3DVCSoftware/branches/HTM-9.3-dev1-MediaTek/source/Lib/TLibCommon/TComPrediction.cpp @ 795

Last change on this file since 795 was 795, checked in by mediatek-htm, 11 years ago

Integration of DDD (JCT3V-G0063)

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