source: 3DVCSoftware/branches/HTM-6.2-dev2-Qualcomm/source/Lib/TLibCommon/TComPrediction.cpp

Last change on this file was 373, checked in by zhang, 12 years ago

JCT3V-D0177: ARP

  • Property svn:eol-style set to native
File size: 120.6 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-2012, 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
48#if LGE_EDGE_INTRA_A0070
49#define MAX_DISTANCE_EDGEINTRA 255
50#endif
51
52TComPrediction::TComPrediction()
53: m_pLumaRecBuffer(0)
54{
55  m_piYuvExt = NULL;
56#if MERL_VSP_C0152
57  m_pDepth = (Int*) malloc(64*64*sizeof(Int)); // TODO: Use a smart way to determine the size of the array
58  if (m_pDepth == NULL)
59  {
60      printf("ERROR: UKTGHU, No memory allocated.\n");
61  }
62#endif
63}
64
65TComPrediction::~TComPrediction()
66{
67 
68#if MERL_VSP_C0152
69  if (m_pDepth != NULL)
70  {
71      free(m_pDepth);
72  }
73#endif
74  delete[] m_piYuvExt;
75
76  m_acYuvPred[0].destroy();
77  m_acYuvPred[1].destroy();
78
79  m_cYuvPredTemp.destroy();
80#if QC_ARP_D0177
81  m_acYuvPredBase[0].destroy();
82  m_acYuvPredBase[1].destroy();
83  m_acYuvDiff[0].destroy();
84  m_acYuvDiff[1].destroy();
85#endif
86  if( m_pLumaRecBuffer )
87  {
88    delete [] m_pLumaRecBuffer;
89  }
90 
91  Int i, j;
92  for (i = 0; i < 4; i++)
93  {
94    for (j = 0; j < 4; j++)
95    {
96      m_filteredBlock[i][j].destroy();
97    }
98    m_filteredBlockTmp[i].destroy();
99  }
100}
101
102Void TComPrediction::initTempBuff()
103{
104  if( m_piYuvExt == NULL )
105  {
106    Int extWidth  = g_uiMaxCUWidth + 16; 
107    Int extHeight = g_uiMaxCUHeight + 1;
108    Int i, j;
109    for (i = 0; i < 4; i++)
110    {
111      m_filteredBlockTmp[i].create(extWidth, extHeight + 7);
112      for (j = 0; j < 4; j++)
113      {
114        m_filteredBlock[i][j].create(extWidth, extHeight);
115      }
116    }
117    m_iYuvExtHeight  = ((g_uiMaxCUHeight + 2) << 4);
118    m_iYuvExtStride = ((g_uiMaxCUWidth  + 8) << 4);
119    m_piYuvExt = new Int[ m_iYuvExtStride * m_iYuvExtHeight ];
120
121    // new structure
122    m_acYuvPred[0] .create( g_uiMaxCUWidth, g_uiMaxCUHeight );
123    m_acYuvPred[1] .create( g_uiMaxCUWidth, g_uiMaxCUHeight );
124
125    m_cYuvPredTemp.create( g_uiMaxCUWidth, g_uiMaxCUHeight );
126#if QC_ARP_D0177
127    m_acYuvPredBase[0] .create( g_uiMaxCUWidth, g_uiMaxCUHeight );
128    m_acYuvPredBase[1] .create( g_uiMaxCUWidth, g_uiMaxCUHeight );
129    m_acYuvDiff    [0] .create( g_uiMaxCUWidth, g_uiMaxCUHeight );
130    m_acYuvDiff    [1] .create( g_uiMaxCUWidth, g_uiMaxCUHeight );
131#endif
132  }
133
134  m_iLumaRecStride =  (g_uiMaxCUWidth>>1) + 1;
135  m_pLumaRecBuffer = new Pel[ m_iLumaRecStride * m_iLumaRecStride ];
136
137  for( Int i = 1; i < 64; i++ )
138  {
139    m_uiaShift[i-1] = ( (1 << 15) + i/2 ) / i;
140  }
141}
142
143// ====================================================================================================================
144// Public member functions
145// ====================================================================================================================
146
147// Function for calculating DC value of the reference samples used in Intra prediction
148Pel TComPrediction::predIntraGetPredValDC( Int* pSrc, Int iSrcStride, UInt iWidth, UInt iHeight, Bool bAbove, Bool bLeft )
149{
150  Int iInd, iSum = 0;
151  Pel pDcVal;
152
153  if (bAbove)
154  {
155    for (iInd = 0;iInd < iWidth;iInd++)
156    {
157      iSum += pSrc[iInd-iSrcStride];
158    }
159  }
160  if (bLeft)
161  {
162    for (iInd = 0;iInd < iHeight;iInd++)
163    {
164      iSum += pSrc[iInd*iSrcStride-1];
165    }
166  }
167
168  if (bAbove && bLeft)
169  {
170    pDcVal = (iSum + iWidth) / (iWidth + iHeight);
171  }
172  else if (bAbove)
173  {
174    pDcVal = (iSum + iWidth/2) / iWidth;
175  }
176  else if (bLeft)
177  {
178    pDcVal = (iSum + iHeight/2) / iHeight;
179  }
180  else
181  {
182    pDcVal = pSrc[-1]; // Default DC value already calculated and placed in the prediction array if no neighbors are available
183  }
184 
185  return pDcVal;
186}
187
188// Function for deriving the angular Intra predictions
189
190/** Function for deriving the simplified angular intra predictions.
191 * \param pSrc pointer to reconstructed sample array
192 * \param srcStride the stride of the reconstructed sample array
193 * \param rpDst reference to pointer for the prediction sample array
194 * \param dstStride the stride of the prediction sample array
195 * \param width the width of the block
196 * \param height the height of the block
197 * \param dirMode the intra prediction mode index
198 * \param blkAboveAvailable boolean indication if the block above is available
199 * \param blkLeftAvailable boolean indication if the block to the left is available
200 *
201 * This function derives the prediction samples for the angular mode based on the prediction direction indicated by
202 * the prediction mode index. The prediction direction is given by the displacement of the bottom row of the block and
203 * the reference row above the block in the case of vertical prediction or displacement of the rightmost column
204 * of the block and reference column left from the block in the case of the horizontal prediction. The displacement
205 * is signalled at 1/32 pixel accuracy. When projection of the predicted pixel falls inbetween reference samples,
206 * the predicted value for the pixel is linearly interpolated from the reference samples. All reference samples are taken
207 * from the extended main reference.
208 */
209Void TComPrediction::xPredIntraAng( Int* pSrc, Int srcStride, Pel*& rpDst, Int dstStride, UInt width, UInt height, UInt dirMode, Bool blkAboveAvailable, Bool blkLeftAvailable, Bool bFilter )
210{
211  Int k,l;
212  Int blkSize        = width;
213  Pel* pDst          = rpDst;
214
215  // Map the mode index to main prediction direction and angle
216  assert( dirMode > 0 ); //no planar
217  Bool modeDC        = dirMode < 2;
218  Bool modeHor       = !modeDC && (dirMode < 18);
219  Bool modeVer       = !modeDC && !modeHor;
220  Int intraPredAngle = modeVer ? (Int)dirMode - VER_IDX : modeHor ? -((Int)dirMode - HOR_IDX) : 0;
221  Int absAng         = abs(intraPredAngle);
222  Int signAng        = intraPredAngle < 0 ? -1 : 1;
223
224  // Set bitshifts and scale the angle parameter to block size
225  Int angTable[9]    = {0,    2,    5,   9,  13,  17,  21,  26,  32};
226  Int invAngTable[9] = {0, 4096, 1638, 910, 630, 482, 390, 315, 256}; // (256 * 32) / Angle
227  Int invAngle       = invAngTable[absAng];
228  absAng             = angTable[absAng];
229  intraPredAngle     = signAng * absAng;
230
231  // Do the DC prediction
232  if (modeDC)
233  {
234    Pel dcval = predIntraGetPredValDC(pSrc, srcStride, width, height, blkAboveAvailable, blkLeftAvailable);
235
236    for (k=0;k<blkSize;k++)
237    {
238      for (l=0;l<blkSize;l++)
239      {
240        pDst[k*dstStride+l] = dcval;
241      }
242    }
243  }
244
245  // Do angular predictions
246  else
247  {
248    Pel* refMain;
249    Pel* refSide;
250    Pel  refAbove[2*MAX_CU_SIZE+1];
251    Pel  refLeft[2*MAX_CU_SIZE+1];
252
253    // Initialise the Main and Left reference array.
254    if (intraPredAngle < 0)
255    {
256      for (k=0;k<blkSize+1;k++)
257      {
258        refAbove[k+blkSize-1] = pSrc[k-srcStride-1];
259      }
260      for (k=0;k<blkSize+1;k++)
261      {
262        refLeft[k+blkSize-1] = pSrc[(k-1)*srcStride-1];
263      }
264      refMain = (modeVer ? refAbove : refLeft) + (blkSize-1);
265      refSide = (modeVer ? refLeft : refAbove) + (blkSize-1);
266
267      // Extend the Main reference to the left.
268      Int invAngleSum    = 128;       // rounding for (shift by 8)
269      for (k=-1; k>blkSize*intraPredAngle>>5; k--)
270      {
271        invAngleSum += invAngle;
272        refMain[k] = refSide[invAngleSum>>8];
273      }
274    }
275    else
276    {
277      for (k=0;k<2*blkSize+1;k++)
278      {
279        refAbove[k] = pSrc[k-srcStride-1];
280      }
281      for (k=0;k<2*blkSize+1;k++)
282      {
283        refLeft[k] = pSrc[(k-1)*srcStride-1];
284      }
285      refMain = modeVer ? refAbove : refLeft;
286      refSide = modeVer ? refLeft  : refAbove;
287    }
288
289    if (intraPredAngle == 0)
290    {
291      for (k=0;k<blkSize;k++)
292      {
293        for (l=0;l<blkSize;l++)
294        {
295          pDst[k*dstStride+l] = refMain[l+1];
296        }
297      }
298
299      if ( bFilter )
300      {
301        for (k=0;k<blkSize;k++)
302        {
303          pDst[k*dstStride] = Clip ( pDst[k*dstStride] + (( refSide[k+1] - refSide[0] ) >> 1) );
304        }
305      }
306    }
307    else
308    {
309      Int deltaPos=0;
310      Int deltaInt;
311      Int deltaFract;
312      Int refMainIndex;
313
314      for (k=0;k<blkSize;k++)
315      {
316        deltaPos += intraPredAngle;
317        deltaInt   = deltaPos >> 5;
318        deltaFract = deltaPos & (32 - 1);
319
320        if (deltaFract)
321        {
322          // Do linear filtering
323          for (l=0;l<blkSize;l++)
324          {
325            refMainIndex        = l+deltaInt+1;
326            pDst[k*dstStride+l] = (Pel) ( ((32-deltaFract)*refMain[refMainIndex]+deltaFract*refMain[refMainIndex+1]+16) >> 5 );
327          }
328        }
329        else
330        {
331          // Just copy the integer samples
332          for (l=0;l<blkSize;l++)
333          {
334            pDst[k*dstStride+l] = refMain[l+deltaInt+1];
335          }
336        }
337      }
338    }
339
340    // Flip the block if this is the horizontal mode
341    if (modeHor)
342    {
343      Pel  tmp;
344      for (k=0;k<blkSize-1;k++)
345      {
346        for (l=k+1;l<blkSize;l++)
347        {
348          tmp                 = pDst[k*dstStride+l];
349          pDst[k*dstStride+l] = pDst[l*dstStride+k];
350          pDst[l*dstStride+k] = tmp;
351        }
352      }
353    }
354  }
355}
356
357Void TComPrediction::predIntraLumaAng(TComPattern* pcTComPattern, UInt uiDirMode, Pel* piPred, UInt uiStride, Int iWidth, Int iHeight,  TComDataCU* pcCU, Bool bAbove, Bool bLeft )
358{
359  Pel *pDst = piPred;
360  Int *ptrSrc;
361
362  assert( g_aucConvertToBit[ iWidth ] >= 0 ); //   4x  4
363  assert( g_aucConvertToBit[ iWidth ] <= 5 ); // 128x128
364  assert( iWidth == iHeight  );
365
366  ptrSrc = pcTComPattern->getPredictorPtr( uiDirMode, g_aucConvertToBit[ iWidth ] + 2, m_piYuvExt );
367
368  // get starting pixel in block
369  Int sw = 2 * iWidth + 1;
370
371  // Create the prediction
372  if ( uiDirMode == PLANAR_IDX )
373  {
374    xPredIntraPlanar( ptrSrc+sw+1, sw, pDst, uiStride, iWidth, iHeight );
375  }
376  else
377  {
378    xPredIntraAng( ptrSrc+sw+1, sw, pDst, uiStride, iWidth, iHeight, uiDirMode, bAbove, bLeft, true );
379
380    if( (uiDirMode == DC_IDX ) && bAbove && bLeft )
381    {
382      xDCPredFiltering( ptrSrc+sw+1, sw, pDst, uiStride, iWidth, iHeight);
383    }
384  }
385}
386
387// Angular chroma
388Void TComPrediction::predIntraChromaAng( TComPattern* pcTComPattern, Int* piSrc, UInt uiDirMode, Pel* piPred, UInt uiStride, Int iWidth, Int iHeight, TComDataCU* pcCU, Bool bAbove, Bool bLeft )
389{
390  Pel *pDst = piPred;
391  Int *ptrSrc = piSrc;
392
393  // get starting pixel in block
394  Int sw = 2 * iWidth + 1;
395
396  if ( uiDirMode == PLANAR_IDX )
397  {
398    xPredIntraPlanar( ptrSrc+sw+1, sw, pDst, uiStride, iWidth, iHeight );
399  }
400  else
401  {
402    // Create the prediction
403    xPredIntraAng( ptrSrc+sw+1, sw, pDst, uiStride, iWidth, iHeight, uiDirMode, bAbove, bLeft, false );
404  }
405}
406
407/** Function for checking identical motion.
408 * \param TComDataCU* pcCU
409 * \param UInt PartAddr
410 */
411Bool TComPrediction::xCheckIdenticalMotion ( TComDataCU* pcCU, UInt PartAddr )
412{
413  if( pcCU->getSlice()->isInterB() && pcCU->getSlice()->getPPS()->getWPBiPredIdc() == 0 )
414  {
415    if( pcCU->getCUMvField(REF_PIC_LIST_0)->getRefIdx(PartAddr) >= 0 && pcCU->getCUMvField(REF_PIC_LIST_1)->getRefIdx(PartAddr) >= 0)
416    {
417      Int RefPOCL0    = pcCU->getSlice()->getRefPic(REF_PIC_LIST_0, pcCU->getCUMvField(REF_PIC_LIST_0)->getRefIdx(PartAddr))->getPOC();
418      Int RefViewIdL0 = pcCU->getSlice()->getRefPic(REF_PIC_LIST_0, pcCU->getCUMvField(REF_PIC_LIST_0)->getRefIdx(PartAddr))->getViewId();
419      Int RefPOCL1    = pcCU->getSlice()->getRefPic(REF_PIC_LIST_1, pcCU->getCUMvField(REF_PIC_LIST_1)->getRefIdx(PartAddr))->getPOC();
420      Int RefViewIdL1 = pcCU->getSlice()->getRefPic(REF_PIC_LIST_1, pcCU->getCUMvField(REF_PIC_LIST_1)->getRefIdx(PartAddr))->getViewId();
421      if(RefPOCL0 == RefPOCL1 && RefViewIdL0 == RefViewIdL1 && pcCU->getCUMvField(REF_PIC_LIST_0)->getMv(PartAddr) == pcCU->getCUMvField(REF_PIC_LIST_1)->getMv(PartAddr))
422      {
423        return true;
424      }
425    }
426  }
427  return false;
428}
429
430#if LGE_EDGE_INTRA_A0070
431Void TComPrediction::predIntraLumaEdge ( TComDataCU* pcCU, TComPattern* pcTComPattern, UInt uiAbsPartIdx, Int iWidth, Int iHeight, Pel* piPred, UInt uiStride, Bool bDelta )
432{
433  Pel *piDst = piPred;
434  Int *piSrc;
435  Int iSrcStride = ( iWidth<<1 ) + 1;
436  Int iDstStride = uiStride;
437
438  piSrc = pcTComPattern->getPredictorPtr( 0, g_aucConvertToBit[ iWidth ] + 2, m_piYuvExt );
439
440  xPredIntraEdge ( pcCU, uiAbsPartIdx, iWidth, iHeight, piSrc, iSrcStride, piDst, iDstStride
441#if LGE_EDGE_INTRA_DELTA_DC
442    , bDelta
443#endif
444    );
445}
446
447Pel  TComPrediction::xGetNearestNeighbor( Int x, Int y, Int* pSrc, Int srcStride, Int iWidth, Int iHeight, Bool* bpRegion )
448{
449  Bool bLeft = (x < y) ? true : false;
450  Bool bFound = false;
451  Int  iFoundX = -1, iFoundY = -1;
452  Int  cResult = 0;
453
454  UChar* piTopDistance = new UChar[iWidth];
455  UChar* piLeftDistance = new UChar[iHeight];
456
457  for( Int i = 0; i < iWidth; i++ )
458  {
459    int Abs = x > i ? x - i : i - x;
460    piTopDistance[ i ] = y + Abs;
461
462    Abs = y > i ? y - i : i - y;
463    piLeftDistance[ i ] = x + Abs;
464  }
465
466  for( Int dist = 0; dist < MAX_DISTANCE_EDGEINTRA && !bFound; dist++ )
467  {
468    if( !bLeft )
469    {
470      for( Int i = 0; i < iWidth; i++ )
471      {
472        if( piTopDistance[ i ] == dist )
473        {
474          if( bpRegion[ i ] == bpRegion[ x + y * iWidth ] )
475          {
476            iFoundX = i;
477            iFoundY = 0;
478            bFound = true;
479          }
480        }
481      }
482      for( Int i = 0; i < iHeight; i++ )
483      {
484        if( piLeftDistance[ i ] == dist )
485        {
486          if( bpRegion[ i * iWidth ] == bpRegion[ x + y * iWidth ] )
487          {
488            iFoundX = 0;
489            iFoundY = i;
490            bFound = true;
491          }
492        }
493      }
494    }
495    else
496    {
497      for( Int i = 0; i < iHeight; i++ )
498      {
499        if( piLeftDistance[ i ] == dist )
500        {
501          if( bpRegion[ i * iWidth ] == bpRegion[ x + y * iWidth ] )
502          {
503            iFoundX = 0;
504            iFoundY = i;
505            bFound = true;
506          }
507        }
508      }
509      for( Int i = 0; i < iWidth; i++ )
510      {
511        if( piTopDistance[ i ] == dist )
512        {
513          if( bpRegion[ i ] == bpRegion[ x + y * iWidth ] )
514          {
515            iFoundX = i;
516            iFoundY = 0;
517            bFound = true;
518          }
519        }
520      }
521    }
522  }
523
524  if( iFoundY == 0 )
525  {
526    cResult = pSrc[ iFoundX + 1 ];
527  }
528  else // iFoundX == 0
529  {
530    cResult = pSrc[ (iFoundY + 1) * srcStride ];
531  }
532
533  delete[] piTopDistance;  piTopDistance = NULL;
534  delete[] piLeftDistance; piLeftDistance = NULL;
535
536  assert( bFound );
537
538  return cResult;
539}
540
541Void TComPrediction::xPredIntraEdge( TComDataCU* pcCU, UInt uiAbsPartIdx, Int iWidth, Int iHeight, Int* pSrc, Int srcStride, Pel*& rpDst, Int dstStride, Bool bDelta )
542{
543  Pel* pDst = rpDst;
544  Bool* pbRegion = pcCU->getEdgePartition( uiAbsPartIdx );
545
546  // Do prediction
547  {
548    //UInt uiSum0 = 0, uiSum1 = 0;
549    Int iSum0 = 0, iSum1 = 0;
550    //UInt uiMean0, uiMean1;
551    Int iMean0, iMean1;
552    //UInt uiCount0 = 0, uiCount1 = 0;
553    Int iCount0 = 0, iCount1 = 0;
554    for( UInt ui = 0; ui < iWidth; ui++ )
555    {
556      if( pbRegion[ ui ] == false )
557      {
558        iSum0 += (pSrc[ ui + 1 ]);
559        iCount0++;
560      }
561      else
562      {
563        iSum1 += (pSrc[ ui + 1 ]);
564        iCount1++;
565      }
566    }
567    for( UInt ui = 0; ui < iHeight; ui++ ) // (0,0) recount (to avoid division)
568    {
569      if( pbRegion[ ui * iWidth ] == false )
570      {
571        iSum0 += (pSrc[ (ui + 1) * srcStride ]);
572        iCount0++;
573      }
574      else
575      {
576        iSum1 += (pSrc[ (ui + 1) * srcStride ]);
577        iCount1++;
578      }
579    }
580    if( iCount0 == 0 )
581      assert(false);
582    if( iCount1 == 0 )
583      assert(false);
584    iMean0 = iSum0 / iCount0; // TODO : integer op.
585    iMean1 = iSum1 / iCount1;
586#if LGE_EDGE_INTRA_DELTA_DC
587    if( bDelta ) 
588    {
589      Int iDeltaDC0 = pcCU->getEdgeDeltaDC0( uiAbsPartIdx );
590      Int iDeltaDC1 = pcCU->getEdgeDeltaDC1( uiAbsPartIdx );
591      xDeltaDCQuantScaleUp( pcCU, iDeltaDC0 );
592      xDeltaDCQuantScaleUp( pcCU, iDeltaDC1 );
593      iMean0 = Clip( iMean0 + iDeltaDC0 );
594      iMean1 = Clip( iMean1 + iDeltaDC1 );
595    }
596#endif
597    for( UInt ui = 0; ui < iHeight; ui++ )
598    {
599      for( UInt uii = 0; uii < iWidth; uii++ )
600      {
601        if( pbRegion[ uii + ui * iWidth ] == false )
602          pDst[ uii + ui * dstStride ] = iMean0;
603        else
604          pDst[ uii + ui * dstStride ] = iMean1;
605      }
606    }
607  }
608}
609#endif
610
611#if DEPTH_MAP_GENERATION
612#if MERL_VSP_C0152
613Void TComPrediction::motionCompensation( TComDataCU* pcCU, TComYuv* pcYuvPred, UInt uiAbsPartIdx, RefPicList eRefPicList, Int iPartIdx, Bool bPrdDepthMap, UInt uiSubSampExpX, UInt uiSubSampExpY )
614#else
615Void TComPrediction::motionCompensation( TComDataCU* pcCU, TComYuv* pcYuvPred, RefPicList eRefPicList, Int iPartIdx, Bool bPrdDepthMap, UInt uiSubSampExpX, UInt uiSubSampExpY )
616#endif
617#else
618#if MERL_VSP_C0152
619Void TComPrediction::motionCompensation ( TComDataCU* pcCU, TComYuv* pcYuvPred, UInt uiAbsPartIdx, RefPicList eRefPicList, Int iPartIdx )
620#else
621Void TComPrediction::motionCompensation ( TComDataCU* pcCU, TComYuv* pcYuvPred, RefPicList eRefPicList, Int iPartIdx )
622#endif
623#endif
624{
625  Int         iWidth;
626  Int         iHeight;
627  UInt        uiPartAddr;
628
629  if ( iPartIdx >= 0 )
630  {
631    pcCU->getPartIndexAndSize( iPartIdx, uiPartAddr, iWidth, iHeight );
632
633#if DEPTH_MAP_GENERATION
634    if( bPrdDepthMap )
635    {
636      iWidth  >>= uiSubSampExpX;
637      iHeight >>= uiSubSampExpY;
638    }
639#endif
640
641    if ( eRefPicList != REF_PIC_LIST_X )
642    {
643#if LGE_ILLUCOMP_B0045
644      if( pcCU->getSlice()->getPPS()->getUseWP() && !pcCU->getICFlag(uiPartAddr))
645#else
646      if( pcCU->getSlice()->getPPS()->getUseWP())
647#endif
648      {
649#if MERL_VSP_C0152
650        xPredInterUni (pcCU, uiPartAddr, uiAbsPartIdx+uiPartAddr, iWidth, iHeight, eRefPicList, pcYuvPred, iPartIdx, bPrdDepthMap, uiSubSampExpX, uiSubSampExpY, true );
651#else
652        xPredInterUni (pcCU, uiPartAddr, iWidth, iHeight, eRefPicList, pcYuvPred, iPartIdx, bPrdDepthMap, uiSubSampExpX, uiSubSampExpY, true );
653#endif
654      }
655      else
656      {
657#if MERL_VSP_C0152
658        xPredInterUni (pcCU, uiPartAddr, uiAbsPartIdx+uiPartAddr, iWidth, iHeight, eRefPicList, pcYuvPred, iPartIdx, bPrdDepthMap, uiSubSampExpX, uiSubSampExpY, false );
659#else       
660        xPredInterUni (pcCU, uiPartAddr, iWidth, iHeight, eRefPicList, pcYuvPred, iPartIdx, bPrdDepthMap, uiSubSampExpX, uiSubSampExpY, false );
661#endif
662      }
663#if LGE_ILLUCOMP_B0045
664      if( pcCU->getSlice()->getPPS()->getUseWP() && !pcCU->getICFlag(uiPartAddr) )
665#else
666      if ( pcCU->getSlice()->getPPS()->getUseWP() )
667#endif
668      {
669        xWeightedPredictionUni( pcCU, pcYuvPred, uiPartAddr, iWidth, iHeight, eRefPicList, pcYuvPred, iPartIdx );
670      }
671    }
672    else
673    {
674      if( xCheckIdenticalMotion( pcCU, uiPartAddr ) && !bPrdDepthMap )
675      {
676#if MERL_VSP_C0152
677        xPredInterUni (pcCU, uiPartAddr, uiAbsPartIdx+uiPartAddr, iWidth, iHeight, REF_PIC_LIST_0, pcYuvPred, iPartIdx, bPrdDepthMap, uiSubSampExpX, uiSubSampExpY, false );
678#else
679        xPredInterUni (pcCU, uiPartAddr, iWidth, iHeight, REF_PIC_LIST_0, pcYuvPred, iPartIdx, bPrdDepthMap, uiSubSampExpX, uiSubSampExpY, false );
680#endif
681      }
682      else
683      {
684#if MERL_VSP_C0152
685        xPredInterBi  (pcCU, uiPartAddr, uiAbsPartIdx+uiPartAddr, iWidth, iHeight, uiSubSampExpX, uiSubSampExpY, pcYuvPred, iPartIdx, bPrdDepthMap );
686#else
687        xPredInterBi  (pcCU, uiPartAddr, iWidth, iHeight, uiSubSampExpX, uiSubSampExpY, pcYuvPred, iPartIdx, bPrdDepthMap );
688#endif
689      }
690    }
691    return;
692  }
693
694  for ( iPartIdx = 0; iPartIdx < pcCU->getNumPartInter(); iPartIdx++ )
695  {
696    pcCU->getPartIndexAndSize( iPartIdx, uiPartAddr, iWidth, iHeight );
697
698    if( bPrdDepthMap )
699    {
700      iWidth  >>= uiSubSampExpX;
701      iHeight >>= uiSubSampExpY;
702    }
703
704    if ( eRefPicList != REF_PIC_LIST_X )
705    {
706#if LGE_ILLUCOMP_B0045
707      if( pcCU->getSlice()->getPPS()->getUseWP() && !pcCU->getICFlag(uiPartAddr))
708#else
709      if( pcCU->getSlice()->getPPS()->getUseWP())
710#endif
711      {
712#if MERL_VSP_C0152
713        xPredInterUni (pcCU, uiPartAddr, uiAbsPartIdx+uiPartAddr, iWidth, iHeight, eRefPicList, pcYuvPred, iPartIdx, bPrdDepthMap, uiSubSampExpX, uiSubSampExpY, true );
714#else
715        xPredInterUni (pcCU, uiPartAddr, iWidth, iHeight, eRefPicList, pcYuvPred, iPartIdx, bPrdDepthMap, uiSubSampExpX, uiSubSampExpY, true );
716#endif
717  }
718  else
719  {
720#if MERL_VSP_C0152
721        xPredInterUni (pcCU, uiPartAddr, uiAbsPartIdx+uiPartAddr, iWidth, iHeight, eRefPicList, pcYuvPred, iPartIdx, bPrdDepthMap, uiSubSampExpX, uiSubSampExpY, false );
722#else
723        xPredInterUni (pcCU, uiPartAddr, iWidth, iHeight, eRefPicList, pcYuvPred, iPartIdx, bPrdDepthMap, uiSubSampExpX, uiSubSampExpY, false );
724#endif
725      }
726#if MERL_VSP_C0152
727      xPredInterUni (pcCU, uiPartAddr, uiAbsPartIdx+uiPartAddr, iWidth, iHeight, eRefPicList, pcYuvPred, iPartIdx, bPrdDepthMap, uiSubSampExpX, uiSubSampExpY, false );
728#else
729      xPredInterUni (pcCU, uiPartAddr, iWidth, iHeight, eRefPicList, pcYuvPred, iPartIdx, bPrdDepthMap, uiSubSampExpX, uiSubSampExpY, false );
730#endif
731
732#if LGE_ILLUCOMP_B0045
733      if( pcCU->getSlice()->getPPS()->getUseWP() && !pcCU->getICFlag(uiPartAddr))
734#else
735      if( pcCU->getSlice()->getPPS()->getUseWP())
736#endif
737      {
738        xWeightedPredictionUni( pcCU, pcYuvPred, uiPartAddr, iWidth, iHeight, eRefPicList, pcYuvPred, iPartIdx );
739      }
740    }
741    else
742    {
743      if ( xCheckIdenticalMotion( pcCU, uiPartAddr ) )
744      {
745#if MERL_VSP_C0152
746        xPredInterUni (pcCU, uiPartAddr, uiAbsPartIdx+uiPartAddr, iWidth, iHeight, REF_PIC_LIST_0, pcYuvPred, iPartIdx, bPrdDepthMap, uiSubSampExpX, uiSubSampExpY, false );
747#else
748        xPredInterUni (pcCU, uiPartAddr, iWidth, iHeight, REF_PIC_LIST_0, pcYuvPred, iPartIdx, bPrdDepthMap, uiSubSampExpX, uiSubSampExpY, false );
749#endif
750      }
751      else
752      {
753#if MERL_VSP_C0152
754        xPredInterBi  (pcCU, uiPartAddr, uiAbsPartIdx+uiPartAddr, iWidth, iHeight, uiSubSampExpX, uiSubSampExpY, pcYuvPred, iPartIdx, bPrdDepthMap );
755#else
756        xPredInterBi  (pcCU, uiPartAddr, iWidth, iHeight, uiSubSampExpX, uiSubSampExpY, pcYuvPred, iPartIdx, bPrdDepthMap );
757#endif   
758      }
759    }
760  }
761  return;
762}
763
764#if H3D_IVRP & !QC_ARP_D0177
765Void TComPrediction::residualPrediction(TComDataCU* pcCU, TComYuv* pcYuvPred, TComYuv* pcYuvResPred)
766{
767  Int         iWidth;
768  Int         iHeight;
769  UInt        uiPartAddr;
770
771  pcCU->getPartIndexAndSize( 0, uiPartAddr, iWidth, iHeight );
772
773  Bool bResAvail = false;
774
775  bResAvail = pcCU->getResidualSamples( 0, true, pcYuvResPred );
776
777  assert (bResAvail);
778
779  pcYuvPred->add(pcYuvResPred, iWidth, iHeight);
780}
781#endif
782
783#if MERL_VSP_C0152
784Void TComPrediction::xPredInterUni ( TComDataCU* pcCU, UInt uiPartAddr, UInt uiAbsPartIdx, Int iWidth, Int iHeight, RefPicList eRefPicList, TComYuv*& rpcYuvPred, Int iPartIdx, Bool bPrdDepthMap, UInt uiSubSampExpX, UInt uiSubSampExpY, Bool bi )
785#else
786Void TComPrediction::xPredInterUni ( TComDataCU* pcCU, UInt uiPartAddr, Int iWidth, Int iHeight, RefPicList eRefPicList, TComYuv*& rpcYuvPred, Int iPartIdx, Bool bPrdDepthMap, UInt uiSubSampExpX, UInt uiSubSampExpY, Bool bi )
787#endif
788{
789#if MERL_VSP_C0152
790  Int  iRefIdx = pcCU->getCUMvField( eRefPicList )->getRefIdx( uiPartAddr );   
791  Int  vspIdx  = pcCU->getVSPIndex(uiPartAddr);
792  if (vspIdx != 0)
793  {
794    if (iRefIdx >= 0)
795    {
796      printf("vspIdx = %d, iRefIdx = %d\n", vspIdx, iRefIdx);
797    }
798    assert (iRefIdx < 0); // assert (iRefIdx == NOT_VALID);
799  }
800  else
801  {
802    assert (iRefIdx >= 0);
803  }
804#else
805  Int         iRefIdx     = pcCU->getCUMvField( eRefPicList )->getRefIdx( uiPartAddr );           assert (iRefIdx >= 0);
806#endif
807
808  TComMv cMv = pcCU->getCUMvField( eRefPicList )->getMv( uiPartAddr );
809  pcCU->clipMv(cMv);
810
811#if DEPTH_MAP_GENERATION
812  if( bPrdDepthMap )
813  {
814    UInt uiRShift = 0;
815    if( pcCU->getPic()->getStoredPDMforV2() == 1 )
816      xPredInterPrdDepthMap( pcCU, pcCU->getSlice()->getRefPic( eRefPicList, iRefIdx )->getPredDepthMapTemp(), uiPartAddr, &cMv, iWidth, iHeight, uiSubSampExpX, uiSubSampExpY, rpcYuvPred, uiRShift, 0 );
817    else
818      xPredInterPrdDepthMap( pcCU, pcCU->getSlice()->getRefPic( eRefPicList, iRefIdx )->getPredDepthMap(), uiPartAddr, &cMv, iWidth, iHeight, uiSubSampExpX, uiSubSampExpY, rpcYuvPred, uiRShift, 0 );
819
820    return;
821  }
822#endif
823#if QC_ARP_D0177
824  if( pcCU->getSlice()->getSPS()->isDepth() == false
825    && pcCU->getSlice()->getSPS()->getViewId() > 0
826    && pcCU->getSlice()->getSPS()->getUseAdvRP() > 0
827    && pcCU->getARPW( uiPartAddr ) > 0 
828    && pcCU->getSlice()->getRefPic( eRefPicList, iRefIdx )->getPOC()!= pcCU->getSlice()->getPOC()
829    && (pcCU->getPartitionSize(uiPartAddr)==SIZE_2Nx2N || pcCU->isSkipped(uiPartAddr))
830    )
831  {
832    xPredInterUniARP( pcCU , uiPartAddr , iWidth , iHeight , eRefPicList , rpcYuvPred , iPartIdx , bi );
833  }
834  else
835  {
836#endif
837#if HHI_FULL_PEL_DEPTH_MAP_MV_ACC
838  if( pcCU->getSlice()->getSPS()->isDepth() )
839  {
840#if MERL_VSP_C0152
841    if (vspIdx != 0)
842    { // depth, vsp
843      // get depth estimator here
844      TComPic* pRefPicBaseDepth = pcCU->getSlice()->getRefPicBaseDepth();
845      TComPicYuv* pcBaseViewDepthPicYuv = NULL;
846      if (vspIdx < 4) // spatial
847      {
848        pcBaseViewDepthPicYuv = pRefPicBaseDepth->getPicYuvRec();
849      }
850      Int iBlkX = ( pcCU->getAddr() % pRefPicBaseDepth->getFrameWidthInCU() ) * g_uiMaxCUWidth  + g_auiRasterToPelX[ g_auiZscanToRaster[ uiAbsPartIdx ] ];
851      Int iBlkY = ( pcCU->getAddr() / pRefPicBaseDepth->getFrameWidthInCU() ) * g_uiMaxCUHeight + g_auiRasterToPelY[ g_auiZscanToRaster[ uiAbsPartIdx ] ];
852      Int* pShiftLUT;
853      Int iShiftPrec;
854      pcCU->getSlice()->getBWVSPLUTParam(pShiftLUT, iShiftPrec);
855      //using disparity to find the depth block of the base view as the depth block estimator of the current block
856      //using depth block estimator and base view texture to get Backward warping
857      xPredInterLumaBlkFromDM  ( pcBaseViewDepthPicYuv, pcBaseViewDepthPicYuv, pShiftLUT, iShiftPrec, &cMv, uiPartAddr, iBlkX,    iBlkY,    iWidth,    iHeight,     pcCU->getSlice()->getSPS()->isDepth(), vspIdx, rpcYuvPred );
858      xPredInterChromaBlkFromDM( pcBaseViewDepthPicYuv, pcBaseViewDepthPicYuv, pShiftLUT, iShiftPrec, &cMv, uiPartAddr, iBlkX>>1, iBlkY>>1, iWidth>>1, iHeight>>1,  pcCU->getSlice()->getSPS()->isDepth(), vspIdx, rpcYuvPred );
859    }
860    else
861    {
862#endif
863      UInt uiRShift = ( bi ? 14-g_uiBitDepth-g_uiBitIncrement : 0 );
864      UInt uiOffset = bi ? IF_INTERNAL_OFFS : 0;
865#if LGE_ILLUCOMP_DEPTH_C0046
866    Bool bICFlag = pcCU->getICFlag(uiPartAddr) && (pcCU->getSlice()->getRefViewId( eRefPicList, iRefIdx ) != pcCU->getSlice()->getViewId());
867#endif
868#if DEPTH_MAP_GENERATION
869    xPredInterPrdDepthMap( pcCU, pcCU->getSlice()->getRefPic( eRefPicList, iRefIdx )->getPicYuvRec(), uiPartAddr, &cMv, iWidth, iHeight, 0, 0, rpcYuvPred, uiRShift, uiOffset
870#if LGE_ILLUCOMP_DEPTH_C0046
871        , bICFlag
872#endif
873        );
874#else
875      xPredInterPrdDepthMap( pcCU, pcCU->getSlice()->getRefPic( eRefPicList, iRefIdx )->getPicYuvRec(), uiPartAddr, &cMv, iWidth, iHeight, rpcYuvPred, uiRShift, uiOffset );
876#endif
877#if MERL_VSP_C0152
878    }
879#endif// MERL_VSP_C0152 //else
880  }
881  else
882  {
883#endif
884#if MERL_VSP_C0152
885    if ( vspIdx != 0 )
886    { // texture, vsp
887      TComPic*    pRefPicBaseTxt        = pcCU->getSlice()->getRefPicBaseTxt();
888      TComPicYuv* pcBaseViewTxtPicYuv   = pRefPicBaseTxt->getPicYuvRec();
889      TComPicYuv* pcBaseViewDepthPicYuv = NULL;
890      if (vspIdx < 4) // spatial
891      {
892        TComPic* pRefPicBaseDepth = pcCU->getSlice()->getRefPicBaseDepth();
893        pcBaseViewDepthPicYuv     = pRefPicBaseDepth->getPicYuvRec();
894      }
895      Int iBlkX = ( pcCU->getAddr() % pRefPicBaseTxt->getFrameWidthInCU() ) * g_uiMaxCUWidth  + g_auiRasterToPelX[ g_auiZscanToRaster[ uiAbsPartIdx ] ];
896      Int iBlkY = ( pcCU->getAddr() / pRefPicBaseTxt->getFrameWidthInCU() ) * g_uiMaxCUHeight + g_auiRasterToPelY[ g_auiZscanToRaster[ uiAbsPartIdx ] ];
897      Int* pShiftLUT;
898      Int iShiftPrec;
899      pcCU->getSlice()->getBWVSPLUTParam(pShiftLUT, iShiftPrec);
900
901      //using disparity to find the depth block of the base view as the depth block estimator of the current block
902      //using depth block estimator and base view texture to get Backward warping
903      xPredInterLumaBlkFromDM  ( pcBaseViewTxtPicYuv, pcBaseViewDepthPicYuv, pShiftLUT, iShiftPrec, &cMv, uiPartAddr, iBlkX,    iBlkY,    iWidth,    iHeight,    pcCU->getSlice()->getSPS()->isDepth(), vspIdx, rpcYuvPred );
904      xPredInterChromaBlkFromDM( pcBaseViewTxtPicYuv, pcBaseViewDepthPicYuv, pShiftLUT, iShiftPrec, &cMv, uiPartAddr, iBlkX>>1, iBlkY>>1, iWidth>>1, iHeight>>1, pcCU->getSlice()->getSPS()->isDepth(), vspIdx, rpcYuvPred );
905    }
906    else//texture not VSP
907    {
908#endif //MERL_VSP_C0152
909#if LGE_ILLUCOMP_B0045
910      Bool bICFlag = pcCU->getICFlag(uiPartAddr) && (pcCU->getSlice()->getRefViewId( eRefPicList, iRefIdx ) != pcCU->getSlice()->getViewId());
911
912      xPredInterLumaBlk  ( pcCU, pcCU->getSlice()->getRefPic( eRefPicList, iRefIdx )->getPicYuvRec(), uiPartAddr, &cMv, iWidth, iHeight, rpcYuvPred, bi, bICFlag);
913#else
914      xPredInterLumaBlk  ( pcCU, pcCU->getSlice()->getRefPic( eRefPicList, iRefIdx )->getPicYuvRec(), uiPartAddr, &cMv, iWidth, iHeight, rpcYuvPred, bi );
915#endif
916#if MERL_VSP_C0152
917     } //texture not VSP
918#endif
919#if HHI_FULL_PEL_DEPTH_MAP_MV_ACC
920  }
921#endif
922
923#if MERL_VSP_C0152
924  if ( vspIdx == 0 )//Not VSP
925  {
926#endif
927#if LGE_ILLUCOMP_B0045
928  Bool bICFlag = pcCU->getICFlag(uiPartAddr) && (pcCU->getSlice()->getRefViewId( eRefPicList, iRefIdx ) != pcCU->getSlice()->getViewId());
929
930  xPredInterChromaBlk( pcCU, pcCU->getSlice()->getRefPic( eRefPicList, iRefIdx )->getPicYuvRec(), uiPartAddr, &cMv, iWidth, iHeight, rpcYuvPred, bi, bICFlag );
931#else
932  xPredInterChromaBlk( pcCU, pcCU->getSlice()->getRefPic( eRefPicList, iRefIdx )->getPicYuvRec(), uiPartAddr, &cMv, iWidth, iHeight, rpcYuvPred, bi );
933#endif
934#if MERL_VSP_C0152
935   }
936#endif
937#if QC_ARP_D0177
938  }
939#endif
940}
941
942#if QC_ARP_D0177
943Void TComPrediction::xPredInterUniARP( TComDataCU* pcCU, UInt uiPartAddr, Int iWidth, Int iHeight, RefPicList eRefPicList, TComYuv*& rpcYuvPred, Int iPartIdx, Bool bi, TComMvField * pNewMvFiled )
944{
945  Int         iRefIdx     = pcCU->getCUMvField( eRefPicList )->getRefIdx( uiPartAddr );           
946  TComMv      cMv         = pcCU->getCUMvField( eRefPicList )->getMv( uiPartAddr );
947  Bool        bTobeScaled = false;
948  UChar dW = pcCU->getARPW ( uiPartAddr );
949  TComPic* pcPicYuvBaseCol =  NULL;
950  TComPic* pcPicYuvBaseRef =  NULL;
951  DisInfo cDistparity;
952
953  if( pNewMvFiled )
954  {
955    iRefIdx = pNewMvFiled->getRefIdx(); 
956    cMv = pNewMvFiled->getMv();
957  }
958
959#if QC_CU_NBDV_D0181
960  cDistparity.bDV           = pcCU->getDvInfo(uiPartAddr).bDV;
961  if( cDistparity.bDV )
962  {
963#if MERL_VSP_C0152
964    cDistparity.m_acMvCand[0] = pcCU->getDvInfo(0).m_acMvCandNoRef[0];
965#else
966    cDistparity.m_acMvCand[0] = pcCU->getDvInfo(0).m_acMvCand[0];
967#endif
968    assert(pcCU->getDvInfo(uiPartAddr).bDV ==  pcCU->getDvInfo(0).bDV);
969    cDistparity.m_aVIdxCan[0] = pcCU->getDvInfo(uiPartAddr).m_aVIdxCan[0];
970    cDistparity.iN            = pcCU->getDvInfo(uiPartAddr).iN;
971  }
972  else
973    cDistparity.iN    =  0;
974#else
975  pcCU->getDisMvpCandNBDV( iPartIdx, uiPartAddr,  &cDistparity, false );
976#endif
977
978  dW = !cDistparity.iN ? 0: dW;
979  if( cDistparity.iN ) 
980  {
981    if(dW > 0 && pcCU->getSlice()->getRefPic( eRefPicList, 0 )->getPOC()!= pcCU->getSlice()->getPOC())
982      bTobeScaled = true;
983    pcPicYuvBaseCol =  pcCU->getSlice()->getBaseViewRefPic( pcCU->getSlice()->getPOC(),                              cDistparity.m_aVIdxCan[0] );
984    pcPicYuvBaseRef =  pcCU->getSlice()->getBaseViewRefPic( pcCU->getSlice()->getRefPic( eRefPicList, 0 )->getPOC(), cDistparity.m_aVIdxCan[0] );
985    if( (!pcPicYuvBaseCol || pcPicYuvBaseCol->getPOC() != pcCU->getSlice()->getPOC()) || (!pcPicYuvBaseRef || pcPicYuvBaseRef->getPOC() != pcCU->getSlice()->getRefPic( eRefPicList, 0 )->getPOC() ))
986    {
987      dW = 0;
988      bTobeScaled = false;
989    }
990    else
991      assert( pcPicYuvBaseCol->getPOC() == pcCU->getSlice()->getPOC() && pcPicYuvBaseRef->getPOC() == pcCU->getSlice()->getRefPic( eRefPicList, 0 )->getPOC() );
992    if(bTobeScaled)
993    {     
994      Int iCurrPOC = pcCU->getSlice()->getPOC();
995      Int iColRefPOC  = pcCU->getSlice()->getRefPOC( eRefPicList, iRefIdx );
996      Int iCurrRefPOC = pcCU->getSlice()->getRefPOC( eRefPicList,  0);
997      Int iScale = pcCU-> xGetDistScaleFactor(iCurrPOC, iCurrRefPOC, iCurrPOC, iColRefPOC);
998      if ( iScale != 4096 )
999        cMv = cMv.scaleMv( iScale );
1000      iRefIdx = 0;
1001    }
1002  }
1003  pcCU->clipMv(cMv);
1004  TComPicYuv* pcPicYuvRef = pcCU->getSlice()->getRefPic( eRefPicList, iRefIdx )->getPicYuvRec();
1005  xPredInterLumaBlk  ( pcCU, pcPicYuvRef, uiPartAddr, &cMv, iWidth, iHeight, rpcYuvPred, bi
1006#if LGE_ILLUCOMP_B0045
1007    , false
1008#endif
1009    , true 
1010    );
1011  xPredInterChromaBlk( pcCU, pcPicYuvRef, uiPartAddr, &cMv, iWidth, iHeight, rpcYuvPred, bi
1012#if LGE_ILLUCOMP_B0045
1013    , false
1014#endif
1015    , true
1016    );
1017  if( dW > 0 )
1018  {
1019    TComYuv * pYuvmB0 = &m_acYuvPredBase[0];
1020    TComYuv * pYuvB1  = &m_acYuvPredBase[1];
1021    assert ( cDistparity.iN == 1 );
1022    pcPicYuvRef = pcPicYuvBaseCol->getPicYuvRec();
1023    xPredInterLumaBlk  ( pcCU, pcPicYuvRef, uiPartAddr, &cDistparity.m_acMvCand[0], iWidth, iHeight, pYuvB1, bi
1024#if LGE_ILLUCOMP_B0045
1025      , false
1026#endif
1027      ,  true
1028      );
1029    xPredInterChromaBlk( pcCU, pcPicYuvRef, uiPartAddr, &cDistparity.m_acMvCand[0], iWidth, iHeight, pYuvB1, bi
1030#if LGE_ILLUCOMP_B0045
1031      , false
1032#endif
1033      , true
1034      );
1035    pcPicYuvRef = pcPicYuvBaseRef->getPicYuvRec();
1036    TComMv cMVwithDisparity = cMv + cDistparity.m_acMvCand[0];
1037    pcCU->clipMv(cMVwithDisparity);
1038    xPredInterLumaBlk  ( pcCU, pcPicYuvRef, uiPartAddr, &cMVwithDisparity, iWidth, iHeight, pYuvmB0, bi
1039#if LGE_ILLUCOMP_B0045
1040      , false
1041#endif
1042      , true
1043      );
1044    xPredInterChromaBlk( pcCU, pcPicYuvRef, uiPartAddr, &cMVwithDisparity, iWidth, iHeight, pYuvmB0, bi
1045#if LGE_ILLUCOMP_B0045
1046      , false
1047#endif
1048      , true
1049      );
1050    pYuvB1->subtractARP( pYuvB1 , pYuvmB0 , uiPartAddr , iWidth , iHeight );
1051    if(dW == 2)
1052      pYuvB1->multiplyARP( uiPartAddr , iWidth , iHeight , dW );
1053    rpcYuvPred->addARP( rpcYuvPred , pYuvB1 , uiPartAddr , iWidth , iHeight , !bi );
1054  }
1055}
1056#endif
1057
1058#if MERL_VSP_C0152
1059Void TComPrediction::xPredInterBi ( TComDataCU* pcCU, UInt uiPartAddr, UInt uiAbsPartIdx, Int iWidth, Int iHeight, UInt uiSubSampExpX, UInt uiSubSampExpY, TComYuv*& rpcYuvPred, Int iPartIdx, Bool bPrdDepthMap )
1060#else
1061Void TComPrediction::xPredInterBi ( TComDataCU* pcCU, UInt uiPartAddr, Int iWidth, Int iHeight, UInt uiSubSampExpX, UInt uiSubSampExpY, TComYuv*& rpcYuvPred, Int iPartIdx, Bool bPrdDepthMap )
1062#endif
1063{
1064  TComYuv* pcMbYuv;
1065  Int      iRefIdx[2] = {-1, -1};
1066
1067  for ( Int iRefList = 0; iRefList < 2; iRefList++ )
1068  {
1069    RefPicList eRefPicList = (iRefList ? REF_PIC_LIST_1 : REF_PIC_LIST_0);
1070    iRefIdx[iRefList] = pcCU->getCUMvField( eRefPicList )->getRefIdx( uiPartAddr );
1071
1072#if MERL_VSP_C0152
1073    if(!pcCU->getVSPIndex(uiPartAddr))
1074    {
1075      if ( iRefIdx[iRefList] < 0 )
1076      {
1077        continue;
1078      }
1079    }
1080    else
1081    {
1082      if ( iRefList== REF_PIC_LIST_1 && iRefIdx[iRefList] < 0 ) // iRefIdx[iRefList] ==NOT_VALID
1083      {
1084        continue;
1085      }
1086    }
1087#else
1088    if ( iRefIdx[iRefList] < 0 )
1089    {
1090      continue;
1091    }
1092#endif
1093
1094    assert( iRefIdx[iRefList] < pcCU->getSlice()->getNumRefIdx(eRefPicList) );
1095
1096    pcMbYuv = &m_acYuvPred[iRefList];
1097    if( pcCU->getCUMvField( REF_PIC_LIST_0 )->getRefIdx( uiPartAddr ) >= 0 && pcCU->getCUMvField( REF_PIC_LIST_1 )->getRefIdx( uiPartAddr ) >= 0 )
1098    {
1099#if MERL_VSP_C0152
1100      xPredInterUni ( pcCU, uiPartAddr, uiAbsPartIdx, iWidth, iHeight, eRefPicList, pcMbYuv, iPartIdx, bPrdDepthMap, uiSubSampExpX, uiSubSampExpY, true );
1101#else
1102      xPredInterUni ( pcCU, uiPartAddr, iWidth, iHeight, eRefPicList, pcMbYuv, iPartIdx, bPrdDepthMap, uiSubSampExpX, uiSubSampExpY, true );
1103#endif
1104    }
1105    else
1106    {
1107#if FIX_LGE_WP_FOR_3D_C0223
1108      if ( ( pcCU->getSlice()->getPPS()->getUseWP()      && pcCU->getSlice()->getSliceType() == P_SLICE ) || 
1109         ( pcCU->getSlice()->getPPS()->getWPBiPredIdc() && pcCU->getSlice()->getSliceType() == B_SLICE ) )
1110#else
1111      if ( pcCU->getSlice()->getPPS()->getWPBiPredIdc() )
1112#endif
1113      {
1114#if MERL_VSP_C0152
1115        xPredInterUni ( pcCU, uiPartAddr, uiAbsPartIdx, iWidth, iHeight, eRefPicList, pcMbYuv, iPartIdx, bPrdDepthMap, uiSubSampExpX, uiSubSampExpY, true );
1116#else
1117        xPredInterUni ( pcCU, uiPartAddr, iWidth, iHeight, eRefPicList, pcMbYuv, iPartIdx, bPrdDepthMap, uiSubSampExpX, uiSubSampExpY, true );
1118#endif
1119      }
1120      else
1121      {
1122#if MERL_VSP_C0152
1123        xPredInterUni ( pcCU, uiPartAddr, uiAbsPartIdx, iWidth, iHeight, eRefPicList, pcMbYuv, iPartIdx, bPrdDepthMap, uiSubSampExpX, uiSubSampExpY, false );
1124#else
1125        xPredInterUni ( pcCU, uiPartAddr, iWidth, iHeight, eRefPicList, pcMbYuv, iPartIdx, bPrdDepthMap, uiSubSampExpX, uiSubSampExpY, false );
1126#endif
1127      }
1128    }
1129  }
1130#if FIX_LGE_WP_FOR_3D_C0223
1131  if ( pcCU->getSlice()->getPPS()->getWPBiPredIdc() && pcCU->getSlice()->getSliceType() == B_SLICE  )
1132#else
1133  if ( pcCU->getSlice()->getPPS()->getWPBiPredIdc() )
1134#endif
1135  {
1136#if MERL_VSP_C0152
1137    if(pcCU->getVSPIndex(uiPartAddr))
1138      m_acYuvPred[0].copyPartToPartYuv( rpcYuvPred, uiPartAddr, iWidth, iHeight );
1139    else
1140#endif
1141    xWeightedPredictionBi( pcCU, &m_acYuvPred[0], &m_acYuvPred[1], iRefIdx[0], iRefIdx[1], uiPartAddr, iWidth, iHeight, rpcYuvPred );
1142  }
1143#if FIX_LGE_WP_FOR_3D_C0223
1144  else if ( pcCU->getSlice()->getPPS()->getUseWP() && pcCU->getSlice()->getSliceType() == P_SLICE )
1145
1146  {
1147#if MERL_VSP_C0152
1148    if(pcCU->getVSPIndex(uiPartAddr))
1149      m_acYuvPred[0].copyPartToPartYuv( rpcYuvPred, uiPartAddr, iWidth, iHeight );
1150    else
1151#endif
1152      xWeightedPredictionUni( pcCU, &m_acYuvPred[0], uiPartAddr, iWidth, iHeight, REF_PIC_LIST_0, rpcYuvPred, iPartIdx ); 
1153  }
1154#endif
1155  else
1156  {
1157    if ( bPrdDepthMap )
1158    {
1159      xWeightedAveragePdm( pcCU, &m_acYuvPred[0], &m_acYuvPred[1], iRefIdx[0], iRefIdx[1], uiPartAddr, iWidth, iHeight, rpcYuvPred, uiSubSampExpX, uiSubSampExpY );
1160    }
1161    else
1162    {
1163#if MERL_VSP_C0152
1164      if(pcCU->getVSPIndex(uiPartAddr))
1165        m_acYuvPred[0].copyPartToPartYuv( rpcYuvPred, uiPartAddr, iWidth, iHeight );
1166      else
1167#endif
1168      xWeightedAverage( pcCU, &m_acYuvPred[0], &m_acYuvPred[1], iRefIdx[0], iRefIdx[1], uiPartAddr, iWidth, iHeight, rpcYuvPred );
1169    }
1170  }
1171}
1172
1173
1174
1175Void
1176TComPrediction::xPredInterPrdDepthMap( TComDataCU* pcCU, TComPicYuv* pcPicYuvRef, UInt uiPartAddr, TComMv* pcMv, Int iWidth, Int iHeight, UInt uiSubSampExpX, UInt uiSubSampExpY, TComYuv*& rpcYuv, UInt uiRShift, UInt uiOffset
1177#if LGE_ILLUCOMP_DEPTH_C0046
1178, Bool bICFlag
1179#endif
1180)
1181{
1182  Int     iShiftX     = 2 + uiSubSampExpX;
1183  Int     iShiftY     = 2 + uiSubSampExpY;
1184  Int     iAddX       = ( 1 << iShiftX ) >> 1;
1185  Int     iAddY       = ( 1 << iShiftY ) >> 1;
1186  Int     iHor        = ( pcMv->getHor() + iAddX ) >> iShiftX;
1187  Int     iVer        = ( pcMv->getVer() + iAddY ) >> iShiftY;
1188#if HHI_FULL_PEL_DEPTH_MAP_MV_ACC
1189  if( pcCU->getSlice()->getSPS()->isDepth() )
1190  {
1191    iHor = pcMv->getHor();
1192    iVer = pcMv->getVer();
1193  }
1194#endif
1195  Int     iRefStride  = pcPicYuvRef->getStride();
1196  Int     iDstStride  = rpcYuv->getStride();
1197  Int     iRefOffset  = iHor + iVer * iRefStride;
1198
1199  Pel*    piRefY      = pcPicYuvRef->getLumaAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() + uiPartAddr ) + iRefOffset;
1200  Pel*    piDstY      = rpcYuv->getLumaAddr( uiPartAddr );
1201
1202  for( Int y = 0; y < iHeight; y++, piDstY += iDstStride, piRefY += iRefStride )
1203  {
1204    for( Int x = 0; x < iWidth; x++ )
1205    {
1206      piDstY[ x ] = ( piRefY[ x ] << uiRShift ) - uiOffset;
1207    }
1208  }
1209
1210#if LGE_ILLUCOMP_DEPTH_C0046
1211  if(bICFlag)
1212  {
1213    Int a, b, iShift;
1214    TComMv tTmpMV(pcMv->getHor()<<2, pcMv->getVer()<<2);
1215
1216    piRefY      = pcPicYuvRef->getLumaAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() + uiPartAddr ) + iRefOffset;
1217    piDstY      = rpcYuv->getLumaAddr( uiPartAddr );
1218
1219    xGetLLSICPrediction(pcCU, &tTmpMV, pcPicYuvRef, a, b, iShift);
1220
1221    for( Int y = 0; y < iHeight; y++, piDstY += iDstStride, piRefY += iRefStride )
1222    {
1223      for( Int x = 0; x < iWidth; x++ )
1224      {
1225        if(uiOffset)
1226        {
1227          Int iIFshift = IF_INTERNAL_PREC - ( g_uiBitDepth + g_uiBitIncrement );
1228          piDstY[ x ] = ( (a*piDstY[ x ]+a*IF_INTERNAL_OFFS) >> iShift ) + b*(1<<iIFshift) - IF_INTERNAL_OFFS;
1229        }
1230        else
1231          piDstY[ x ] = Clip( ( (a*piDstY[ x ]) >> iShift ) + b );
1232      }
1233    }
1234  }
1235#endif
1236}
1237
1238
1239/**
1240 * \brief Generate motion-compensated luma block
1241 *
1242 * \param cu       Pointer to current CU
1243 * \param refPic   Pointer to reference picture
1244 * \param partAddr Address of block within CU
1245 * \param mv       Motion vector
1246 * \param width    Width of block
1247 * \param height   Height of block
1248 * \param dstPic   Pointer to destination picture
1249 * \param bi       Flag indicating whether bipred is used
1250 */
1251#if LGE_ILLUCOMP_B0045
1252Void TComPrediction::xPredInterLumaBlk( TComDataCU *cu, TComPicYuv *refPic, UInt partAddr, TComMv *mv, Int width, Int height, TComYuv *&dstPic, Bool bi, Bool bICFlag
1253#if QC_ARP_D0177
1254    ,
1255    Int filterType
1256#endif
1257    )
1258#else
1259Void TComPrediction::xPredInterLumaBlk( TComDataCU *cu, TComPicYuv *refPic, UInt partAddr, TComMv *mv, Int width, Int height, TComYuv *&dstPic, Bool bi
1260#if QC_ARP_D0177
1261    ,
1262    Int filterType
1263#endif
1264    )
1265#endif
1266{
1267  Int refStride = refPic->getStride(); 
1268  Int refOffset = ( mv->getHor() >> 2 ) + ( mv->getVer() >> 2 ) * refStride;
1269  Pel *ref      = refPic->getLumaAddr( cu->getAddr(), cu->getZorderIdxInCU() + partAddr ) + refOffset;
1270 
1271  Int dstStride = dstPic->getStride();
1272  Pel *dst      = dstPic->getLumaAddr( partAddr );
1273 
1274  Int xFrac = mv->getHor() & 0x3;
1275  Int yFrac = mv->getVer() & 0x3;
1276
1277#if HHI_FULL_PEL_DEPTH_MAP_MV_ACC
1278  assert( ! cu->getSlice()->getIsDepth() || ( xFrac == 0 && yFrac == 0 ) );
1279#endif
1280
1281  if ( yFrac == 0 )
1282  {
1283    m_if.filterHorLuma( ref, refStride, dst, dstStride, width, height, xFrac,       !bi
1284#if QC_ARP_D0177
1285    ,
1286    filterType
1287#endif
1288    );
1289  }
1290  else if ( xFrac == 0 )
1291  {
1292    m_if.filterVerLuma( ref, refStride, dst, dstStride, width, height, yFrac, true, !bi
1293#if QC_ARP_D0177
1294    ,
1295    filterType
1296#endif
1297    );
1298  }
1299  else
1300  {
1301    Int tmpStride = m_filteredBlockTmp[0].getStride();
1302    Short *tmp    = m_filteredBlockTmp[0].getLumaAddr();
1303
1304    Int filterSize = NTAPS_LUMA;
1305    Int halfFilterSize = ( filterSize >> 1 );
1306
1307    m_if.filterHorLuma(ref - (halfFilterSize-1)*refStride, refStride, tmp, tmpStride, width, height+filterSize-1, xFrac, false     
1308 #if QC_ARP_D0177
1309    ,
1310    filterType
1311#endif
1312    );
1313    m_if.filterVerLuma(tmp + (halfFilterSize-1)*tmpStride, tmpStride, dst, dstStride, width, height,              yFrac, false, !bi
1314 #if QC_ARP_D0177
1315    ,
1316    filterType
1317#endif
1318    );   
1319  }
1320
1321#if LGE_ILLUCOMP_B0045
1322  if(bICFlag)
1323  {
1324    Int a, b, iShift, i, j;
1325
1326    xGetLLSICPrediction(cu, mv, refPic, a, b, iShift);
1327
1328    for (i = 0; i < height; i++)
1329    {
1330      for (j = 0; j < width; j++)
1331      {
1332        if(bi)
1333        {
1334          Int iIFshift = IF_INTERNAL_PREC - ( g_uiBitDepth + g_uiBitIncrement );
1335          dst[j] = ( (a*dst[j]+a*IF_INTERNAL_OFFS) >> iShift ) + b*(1<<iIFshift) - IF_INTERNAL_OFFS;
1336        }
1337        else
1338          dst[j] = Clip( ( (a*dst[j]) >> iShift ) + b );
1339      }
1340      dst += dstStride;
1341    }
1342  }
1343#endif
1344}
1345
1346/**
1347 * \brief Generate motion-compensated chroma block
1348 *
1349 * \param cu       Pointer to current CU
1350 * \param refPic   Pointer to reference picture
1351 * \param partAddr Address of block within CU
1352 * \param mv       Motion vector
1353 * \param width    Width of block
1354 * \param height   Height of block
1355 * \param dstPic   Pointer to destination picture
1356 * \param bi       Flag indicating whether bipred is used
1357 */
1358#if LGE_ILLUCOMP_B0045
1359Void TComPrediction::xPredInterChromaBlk( TComDataCU *cu, TComPicYuv *refPic, UInt partAddr, TComMv *mv, Int width, Int height, TComYuv *&dstPic, Bool bi, Bool bICFlag
1360#if QC_ARP_D0177
1361    ,
1362    Int filterType
1363#endif   
1364    )
1365#else
1366Void TComPrediction::xPredInterChromaBlk( TComDataCU *cu, TComPicYuv *refPic, UInt partAddr, TComMv *mv, Int width, Int height, TComYuv *&dstPic, Bool bi
1367#if QC_ARP_D0177
1368  , Int filterType
1369#endif
1370  )
1371#endif
1372{
1373  Int     refStride  = refPic->getCStride();
1374  Int     dstStride  = dstPic->getCStride();
1375 
1376  Int     refOffset  = (mv->getHor() >> 3) + (mv->getVer() >> 3) * refStride;
1377 
1378  Pel*    refCb     = refPic->getCbAddr( cu->getAddr(), cu->getZorderIdxInCU() + partAddr ) + refOffset;
1379  Pel*    refCr     = refPic->getCrAddr( cu->getAddr(), cu->getZorderIdxInCU() + partAddr ) + refOffset;
1380 
1381  Pel* dstCb = dstPic->getCbAddr( partAddr );
1382  Pel* dstCr = dstPic->getCrAddr( partAddr );
1383 
1384  Int     xFrac  = mv->getHor() & 0x7;
1385  Int     yFrac  = mv->getVer() & 0x7;
1386  UInt    cxWidth  = width  >> 1;
1387  UInt    cxHeight = height >> 1;
1388 
1389  Int     extStride = m_filteredBlockTmp[0].getStride();
1390  Short*  extY      = m_filteredBlockTmp[0].getLumaAddr();
1391 
1392  Int filterSize = NTAPS_CHROMA;
1393 
1394  Int halfFilterSize = (filterSize>>1);
1395 
1396  if ( yFrac == 0 )
1397  {
1398    m_if.filterHorChroma(refCb, refStride, dstCb,  dstStride, cxWidth, cxHeight, xFrac, !bi
1399#if QC_ARP_D0177
1400    ,
1401    filterType
1402#endif   
1403    );   
1404    m_if.filterHorChroma(refCr, refStride, dstCr,  dstStride, cxWidth, cxHeight, xFrac, !bi
1405#if QC_ARP_D0177
1406    ,
1407    filterType
1408#endif   
1409    );   
1410  }
1411  else if ( xFrac == 0 )
1412  {
1413    m_if.filterVerChroma(refCb, refStride, dstCb, dstStride, cxWidth, cxHeight, yFrac, true, !bi
1414 #if QC_ARP_D0177
1415    ,
1416    filterType
1417#endif   
1418    );   
1419    m_if.filterVerChroma(refCr, refStride, dstCr, dstStride, cxWidth, cxHeight, yFrac, true, !bi
1420 #if QC_ARP_D0177
1421    ,
1422    filterType
1423#endif   
1424    );   
1425  }
1426  else
1427  {
1428    m_if.filterHorChroma(refCb - (halfFilterSize-1)*refStride, refStride, extY,  extStride, cxWidth, cxHeight+filterSize-1, xFrac, false
1429#if QC_ARP_D0177
1430    ,
1431    filterType
1432#endif   
1433    );
1434    m_if.filterVerChroma(extY  + (halfFilterSize-1)*extStride, extStride, dstCb, dstStride, cxWidth, cxHeight  , yFrac, false, !bi
1435#if QC_ARP_D0177
1436    ,
1437    filterType
1438#endif   
1439    );
1440   
1441    m_if.filterHorChroma(refCr - (halfFilterSize-1)*refStride, refStride, extY,  extStride, cxWidth, cxHeight+filterSize-1, xFrac, false
1442#if QC_ARP_D0177
1443    ,
1444    filterType
1445#endif   
1446    );
1447    m_if.filterVerChroma(extY  + (halfFilterSize-1)*extStride, extStride, dstCr, dstStride, cxWidth, cxHeight  , yFrac, false, !bi
1448#if QC_ARP_D0177
1449    ,
1450    filterType
1451#endif   
1452    );   
1453  }
1454#if LGE_ILLUCOMP_B0045
1455  if(bICFlag)
1456  {
1457    Int a, b, iShift, i, j;
1458    xGetLLSICPredictionChroma(cu, mv, refPic, a, b, iShift, 0); // Cb
1459    for (i = 0; i < cxHeight; i++)
1460    {
1461      for (j = 0; j < cxWidth; j++)
1462      {
1463        if(bi)
1464        {
1465          Int iIFshift = IF_INTERNAL_PREC - ( g_uiBitDepth + g_uiBitIncrement );
1466          dstCb[j] = ( (a*dstCb[j]+a*IF_INTERNAL_OFFS) >> iShift ) + b*(1<<iIFshift) - IF_INTERNAL_OFFS;
1467        }
1468        else
1469          dstCb[j] = Clip3(0, 255, ((a*dstCb[j])>>iShift)+b);
1470      }
1471      dstCb += dstStride;
1472    }
1473
1474    xGetLLSICPredictionChroma(cu, mv, refPic, a, b, iShift, 1); // Cr
1475    for (i = 0; i < cxHeight; i++)
1476    {
1477      for (j = 0; j < cxWidth; j++)
1478      {
1479        if(bi)
1480        {
1481          Int iIFshift = IF_INTERNAL_PREC - ( g_uiBitDepth + g_uiBitIncrement );
1482          dstCr[j] = ( (a*dstCr[j]+a*IF_INTERNAL_OFFS) >> iShift ) + b*(1<<iIFshift) - IF_INTERNAL_OFFS;
1483        }
1484        else
1485          dstCr[j] = Clip3(0, 255, ((a*dstCr[j])>>iShift)+b);
1486      }
1487      dstCr += dstStride;
1488    }
1489  }
1490#endif
1491}
1492
1493#if MERL_VSP_C0152
1494// Input:
1495// refPic: Ref picture. Full picture, with padding
1496// posX, posY:     PU position, texture
1497// size_x, size_y: PU size
1498// partAddr: z-order index
1499// mv: disparity vector. derived from neighboring blocks
1500//
1501// Output: dstPic, PU predictor 64x64
1502Void TComPrediction::xPredInterLumaBlkFromDM( TComPicYuv *refPic, TComPicYuv *pPicBaseDepth, Int* pShiftLUT, Int iShiftPrec, TComMv* mv, UInt partAddr,Int posX, Int posY, Int size_x, Int size_y, Bool isDepth, Int vspIdx
1503                                            , TComYuv *&dstPic )
1504{
1505  Int widthLuma;
1506  Int heightLuma;
1507
1508  if (isDepth)
1509  {
1510    widthLuma   =  pPicBaseDepth->getWidth();
1511    heightLuma  =  pPicBaseDepth->getHeight();
1512  }
1513  else
1514  {
1515    widthLuma   =  refPic->getWidth();
1516    heightLuma  =  refPic->getHeight();
1517  }
1518
1519#if MERL_VSP_BLOCKSIZE_C0152 != 1
1520  Int widthDepth  = pPicBaseDepth->getWidth();
1521  Int heightDepth = pPicBaseDepth->getHeight();
1522#endif
1523
1524  Int nTxtPerDepthX = widthLuma  / ( pPicBaseDepth->getWidth() );  // texture pixel # per depth pixel
1525  Int nTxtPerDepthY = heightLuma / ( pPicBaseDepth->getHeight() );
1526
1527  Int refStride = refPic->getStride();
1528  Int dstStride = dstPic->getStride();
1529  Int depStride =  pPicBaseDepth->getStride();
1530  Int depthPosX = Clip3(0,   widthLuma - size_x,  (posX/nTxtPerDepthX) + (mv->getHor()>>2));
1531  Int depthPosY = Clip3(0,   heightLuma- size_y,  (posY/nTxtPerDepthY) + (mv->getVer()>>2));
1532  Pel *ref    = refPic->getLumaAddr() + posX + posY * refStride;
1533  Pel *dst    = dstPic->getLumaAddr(partAddr);
1534  Pel *depth  = pPicBaseDepth->getLumaAddr() + depthPosX + depthPosY * depStride;
1535
1536#if MERL_VSP_BLOCKSIZE_C0152 != 1
1537#if MERL_VSP_BLOCKSIZE_C0152 == 2
1538  Int  dW = size_x>>1;
1539  Int  dH = size_y>>1;
1540#endif
1541#if MERL_VSP_BLOCKSIZE_C0152 == 4
1542  Int  dW = size_x>>2;
1543  Int  dH = size_y>>2;
1544#endif
1545  {
1546    Pel* depthi = depth;
1547    for (Int j = 0; j < dH; j++)
1548    {
1549      for (Int i = 0; i < dW; i++)
1550      {
1551        Pel* depthTmp;
1552#if MERL_VSP_BLOCKSIZE_C0152 == 2
1553        if (depthPosX + (i<<1) < widthDepth)
1554          depthTmp = depthi + (i << 1);
1555        else
1556          depthTmp = depthi + (widthDepth - depthPosX - 1);
1557#endif
1558#if MERL_VSP_BLOCKSIZE_C0152 == 4
1559        if (depthPosX + (i<<2) < widthDepth)
1560          depthTmp = depthi + (i << 2);
1561        else
1562          depthTmp = depthi + (widthDepth - depthPosX - 1);
1563#endif
1564        Int maxV = 0;
1565        for (Int blockj = 0; blockj < MERL_VSP_BLOCKSIZE_C0152; blockj++)
1566        {
1567          Int iX = 0;
1568          for (Int blocki = 0; blocki < MERL_VSP_BLOCKSIZE_C0152; blocki++)
1569          {
1570            if (maxV < depthTmp[iX])
1571              maxV = depthTmp[iX];
1572#if MERL_VSP_BLOCKSIZE_C0152 == 2
1573            if (depthPosX + (i<<1) + blocki < widthDepth - 1)
1574#else // MERL_VSP_BLOCKSIZE_C0152 == 4
1575            if (depthPosX + (i<<2) + blocki < widthDepth - 1)
1576#endif
1577              iX++;
1578          }
1579#if MERL_VSP_BLOCKSIZE_C0152 == 2
1580          if (depthPosY + (j<<1) + blockj < heightDepth - 1)
1581#else // MERL_VSP_BLOCKSIZE_C0152 == 4
1582          if (depthPosY + (j<<2) + blockj < heightDepth - 1)
1583#endif
1584            depthTmp += depStride;
1585        }
1586        m_pDepth[i+j*dW] = maxV;
1587      } // end of i < dW
1588#if MERL_VSP_BLOCKSIZE_C0152 == 2
1589      if (depthPosY + ((j+1)<<1) < heightDepth)
1590        depthi += (depStride << 1);
1591      else
1592        depthi  = depth + (heightDepth-depthPosY-1)*depStride;
1593#endif
1594#if MERL_VSP_BLOCKSIZE_C0152 == 4
1595      if (depthPosY + ((j+1)<<2) < heightDepth) // heightDepth-1
1596        depthi += (depStride << 2);
1597      else
1598        depthi  = depth + (heightDepth-depthPosY-1)*depStride; // the last line
1599#endif
1600    }
1601  }
1602#endif
1603 
1604#if MERL_VSP_BLOCKSIZE_C0152 != 1
1605  Int yDepth = 0;
1606#endif
1607  for ( Int yTxt = 0; yTxt < size_y; yTxt += nTxtPerDepthY )
1608  {
1609    for ( Int xTxt = 0, xDepth = 0; xTxt < size_x; xTxt += nTxtPerDepthX, xDepth++ )
1610    {
1611      Pel rep_depth = 0; // to store the depth value used for warping
1612#if MERL_VSP_BLOCKSIZE_C0152 == 1
1613      rep_depth = depth[xDepth];
1614#endif
1615#if MERL_VSP_BLOCKSIZE_C0152 == 2
1616      rep_depth = m_pDepth[(xTxt>>1) + (yTxt>>1)*dW];
1617#endif
1618#if MERL_VSP_BLOCKSIZE_C0152 == 4
1619      rep_depth = m_pDepth[(xTxt>>2) + (yTxt>>2)*dW];
1620#endif
1621
1622      assert( rep_depth >= 0 && rep_depth <= 255 );
1623      Int disparity = pShiftLUT[ rep_depth ] << iShiftPrec;
1624      Int refOffset = xTxt + (disparity >> 2);
1625      Int xFrac = disparity & 0x3;
1626      Int absX  = posX + refOffset;
1627
1628      if (xFrac == 0)
1629        absX = Clip3(0, widthLuma-1, absX);
1630      else
1631        absX = Clip3(4, widthLuma-5, absX);
1632
1633      refOffset = absX - posX;
1634
1635      assert( ref[refOffset] >= 0 && ref[refOffset]<= 255 );
1636      m_if.filterHorLuma( &ref[refOffset], refStride, &dst[xTxt], dstStride, nTxtPerDepthX, nTxtPerDepthY, xFrac, true );
1637    }
1638    ref   += refStride*nTxtPerDepthY;
1639    dst   += dstStride*nTxtPerDepthY;
1640    depth += depStride;
1641#if MERL_VSP_BLOCKSIZE_C0152 != 1
1642    yDepth++;
1643#endif
1644  }
1645}
1646
1647Void TComPrediction::xPredInterChromaBlkFromDM ( TComPicYuv *refPic, TComPicYuv *pPicBaseDepth, Int* pShiftLUT, Int iShiftPrec, TComMv*mv, UInt partAddr, Int posX, Int posY, Int size_x, Int size_y, Bool isDepth, Int vspIdx
1648                                               , TComYuv *&dstPic )
1649{
1650  Int refStride = refPic->getCStride();
1651  Int dstStride = dstPic->getCStride();
1652  Int depStride = pPicBaseDepth->getStride();
1653
1654  Int widthChroma, heightChroma;
1655  if( isDepth)
1656  {
1657     widthChroma   = pPicBaseDepth->getWidth()>>1;
1658     heightChroma  = pPicBaseDepth->getHeight()>>1;
1659  }
1660  else
1661  {
1662     widthChroma   = refPic->getWidth()>>1;
1663     heightChroma  = refPic->getHeight()>>1;
1664  }
1665
1666  // Below is only for Texture chroma component
1667
1668  Int widthDepth  = pPicBaseDepth->getWidth();
1669  Int heightDepth = pPicBaseDepth->getHeight();
1670
1671  Int nTxtPerDepthX, nTxtPerDepthY;  // Number of texture samples per one depth sample
1672  Int nDepthPerTxtX, nDepthPerTxtY;  // Number of depth samples per one texture sample
1673
1674  Int depthPosX;  // Starting position in depth image
1675  Int depthPosY;
1676
1677  if ( widthChroma > widthDepth )
1678  {
1679    nTxtPerDepthX = widthChroma / widthDepth;
1680    nDepthPerTxtX = 1;
1681    depthPosX = posX / nTxtPerDepthX + (mv->getHor()>>2);        //mv denotes the disparity for VSP
1682  }
1683  else
1684  {
1685    nTxtPerDepthX = 1;
1686    nDepthPerTxtX = widthDepth / widthChroma;
1687    depthPosX = posX * nDepthPerTxtX + (mv->getHor()>>2);        //mv denotes the disparity for VSP
1688  }
1689  depthPosX = Clip3(0, widthDepth - (size_x<<1), depthPosX);
1690  if ( heightChroma > heightDepth )
1691  {
1692    nTxtPerDepthY = heightChroma / heightDepth;
1693    nDepthPerTxtY = 1;
1694    depthPosY = posY / nTxtPerDepthY + (mv->getVer()>>2);     //mv denotes the disparity for VSP
1695  }
1696  else
1697  {
1698    nTxtPerDepthY = 1;
1699    nDepthPerTxtY = heightDepth / heightChroma;
1700    depthPosY = posY * nDepthPerTxtY + (mv->getVer()>>2);     //mv denotes the disparity for VSP
1701  }
1702  depthPosY = Clip3(0, heightDepth - (size_y<<1), depthPosY);
1703
1704  Pel *refCb  = refPic->getCbAddr() + posX + posY * refStride;
1705  Pel *refCr  = refPic->getCrAddr() + posX + posY * refStride;
1706  Pel *dstCb  = dstPic->getCbAddr(partAddr);
1707  Pel *dstCr  = dstPic->getCrAddr(partAddr);
1708  Pel *depth  = pPicBaseDepth->getLumaAddr() + depthPosX + depthPosY * depStride;  // move the pointer to the current depth pixel position
1709 
1710  Int refStrideBlock = refStride * nTxtPerDepthY;
1711  Int dstStrideBlock = dstStride * nTxtPerDepthY;
1712  Int depStrideBlock = depStride * nDepthPerTxtY;
1713
1714  if (isDepth)
1715  {
1716     // DT: Since the call for this function is redundant, ..
1717     for (Int y = 0; y < size_y; y++)
1718     {
1719       for (Int x = 0; x < size_x; x++)
1720       {
1721         dstCb[x] = 128;
1722         dstCr[x] = 128;
1723       }
1724       dstCb += dstStride;
1725       dstCr += dstStride;
1726     }
1727     return;
1728  }
1729 
1730  if ( widthChroma > widthDepth ) // We assume
1731  {
1732    assert( heightChroma > heightDepth );
1733    printf("This branch should never been reached.\n");
1734    exit(0);
1735  }
1736  else
1737  {
1738#if MERL_VSP_BLOCKSIZE_C0152 == 1
1739  Int  dW = size_x;
1740  Int  dH = size_y;
1741  Int  sW = 2; // search window size
1742  Int  sH = 2;
1743#endif
1744#if MERL_VSP_BLOCKSIZE_C0152 == 2
1745  Int  dW = size_x;
1746  Int  dH = size_y;
1747  Int  sW = 2; // search window size
1748  Int  sH = 2;
1749#endif
1750#if MERL_VSP_BLOCKSIZE_C0152 == 4
1751  Int  dW = size_x>>1;
1752  Int  dH = size_y>>1;
1753  Int  sW = 4; // search window size
1754  Int  sH = 4;
1755#endif
1756
1757  {
1758    Pel* depthi = depth;
1759    for (Int j = 0; j < dH; j++)
1760    {
1761      for (Int i = 0; i < dW; i++)
1762      {
1763        Pel* depthTmp;
1764#if MERL_VSP_BLOCKSIZE_C0152 == 1
1765        depthTmp = depthi + (i << 1);
1766#endif
1767#if MERL_VSP_BLOCKSIZE_C0152 == 2
1768        if (depthPosX + (i<<1) < widthDepth)
1769          depthTmp = depthi + (i << 1);
1770        else
1771          depthTmp = depthi + (widthDepth - depthPosX - 1);
1772#endif
1773#if MERL_VSP_BLOCKSIZE_C0152 == 4
1774        if (depthPosX + (i<<2) < widthDepth)
1775          depthTmp = depthi + (i << 2);
1776        else
1777          depthTmp = depthi + (widthDepth - depthPosX - 1);
1778#endif
1779        Int maxV = 0;
1780        for (Int blockj = 0; blockj < sH; blockj++)
1781        {
1782          Int iX = 0;
1783          for (Int blocki = 0; blocki < sW; blocki++)
1784          {
1785            if (maxV < depthTmp[iX])
1786              maxV = depthTmp[iX];
1787            if (depthPosX + i*sW + blocki < widthDepth - 1)
1788              iX++;
1789          }
1790          if (depthPosY + j*sH + blockj < heightDepth - 1)
1791            depthTmp += depStride;
1792        }
1793        m_pDepth[i+j*dW] = maxV;
1794      } // end of i < dW
1795#if MERL_VSP_BLOCKSIZE_C0152 == 1
1796      if (depthPosY + ((j+1)<<1) < heightDepth)
1797        depthi += (depStride << 1);
1798      else
1799        depthi  = depth + (heightDepth-1)*depStride;
1800#endif
1801#if MERL_VSP_BLOCKSIZE_C0152 == 2
1802      if (depthPosY + ((j+1)<<1) < heightDepth)
1803        depthi += (depStride << 1);
1804      else
1805        depthi  = depth + (heightDepth-depthPosY-1)*depStride;
1806#endif
1807#if MERL_VSP_BLOCKSIZE_C0152 == 4
1808      if (depthPosY + ((j+1)<<2) < heightDepth) // heightDepth-1
1809        depthi += (depStride << 2);
1810      else
1811        depthi  = depth + (heightDepth-depthPosY-1)*depStride; // the last line
1812#endif
1813    }
1814  }
1815
1816
1817    // (size_x, size_y) is Chroma block size
1818    for ( Int yTxt = 0, yDepth = 0; yTxt < size_y; yTxt += nTxtPerDepthY, yDepth += nDepthPerTxtY )
1819    {
1820      for ( Int xTxt = 0, xDepth = 0; xTxt < size_x; xTxt += nTxtPerDepthX, xDepth += nDepthPerTxtX )
1821      {
1822        Pel rep_depth = 0; // to store the depth value used for warping
1823#if MERL_VSP_BLOCKSIZE_C0152 == 1
1824        rep_depth = m_pDepth[(xTxt) + (yTxt)*dW];
1825#endif
1826#if MERL_VSP_BLOCKSIZE_C0152 == 2
1827        rep_depth = m_pDepth[(xTxt) + (yTxt)*dW];
1828#endif
1829#if MERL_VSP_BLOCKSIZE_C0152 == 4
1830        rep_depth = m_pDepth[(xTxt>>1) + (yTxt>>1)*dW];
1831#endif
1832
1833      // calculate the offset in the reference picture
1834        Int disparity = pShiftLUT[ rep_depth ] << iShiftPrec;
1835        Int refOffset = xTxt + (disparity >> 3); // in integer pixel in chroma image
1836        Int xFrac = disparity & 0x7;
1837        Int absX  = posX + refOffset;
1838
1839        if (xFrac == 0)
1840          absX = Clip3(0, widthChroma-1, absX);
1841        else
1842          absX = Clip3(4, widthChroma-5, absX);
1843
1844        refOffset = absX - posX;
1845
1846        assert( refCb[refOffset] >= 0 && refCb[refOffset]<= 255 );
1847        assert( refCr[refOffset] >= 0 && refCr[refOffset]<= 255 );
1848        m_if.filterHorChroma(&refCb[refOffset], refStride, &dstCb[xTxt],  dstStride, nTxtPerDepthX, nTxtPerDepthY, xFrac, true);
1849        m_if.filterHorChroma(&refCr[refOffset], refStride, &dstCr[xTxt],  dstStride, nTxtPerDepthX, nTxtPerDepthY, xFrac, true);
1850      }
1851      refCb += refStrideBlock;
1852      refCr += refStrideBlock;
1853      dstCb += dstStrideBlock;
1854      dstCr += dstStrideBlock;
1855      depth += depStrideBlock;
1856    }
1857  }
1858}
1859
1860#endif // MERL_VSP_C0152
1861
1862#if DEPTH_MAP_GENERATION
1863Void TComPrediction::xWeightedAveragePdm( TComDataCU* pcCU, TComYuv* pcYuvSrc0, TComYuv* pcYuvSrc1, Int iRefIdx0, Int iRefIdx1, UInt uiPartIdx, Int iWidth, Int iHeight, TComYuv*& rpcYuvDst, UInt uiSubSampExpX, UInt uiSubSampExpY )
1864{
1865  if( iRefIdx0 >= 0 && iRefIdx1 >= 0 )
1866  {
1867    rpcYuvDst->addAvgPdm( pcYuvSrc0, pcYuvSrc1, uiPartIdx, iWidth, iHeight, uiSubSampExpX, uiSubSampExpY );
1868  }
1869  else if ( iRefIdx0 >= 0 && iRefIdx1 <  0 )
1870  {
1871    pcYuvSrc0->copyPartToPartYuvPdm( rpcYuvDst, uiPartIdx, iWidth, iHeight, uiSubSampExpX, uiSubSampExpY );
1872  }
1873  else if ( iRefIdx0 <  0 && iRefIdx1 >= 0 )
1874  {
1875    pcYuvSrc1->copyPartToPartYuvPdm( rpcYuvDst, uiPartIdx, iWidth, iHeight, uiSubSampExpX, uiSubSampExpY );
1876  }
1877  else
1878  {
1879    assert (0);
1880  }
1881}
1882#endif
1883
1884Void TComPrediction::xWeightedAverage( TComDataCU* pcCU, TComYuv* pcYuvSrc0, TComYuv* pcYuvSrc1, Int iRefIdx0, Int iRefIdx1, UInt uiPartIdx, Int iWidth, Int iHeight, TComYuv*& rpcYuvDst )
1885{
1886  if( iRefIdx0 >= 0 && iRefIdx1 >= 0 )
1887  {
1888    rpcYuvDst->addAvg( pcYuvSrc0, pcYuvSrc1, uiPartIdx, iWidth, iHeight );
1889  }
1890  else if ( iRefIdx0 >= 0 && iRefIdx1 <  0 )
1891  {
1892    pcYuvSrc0->copyPartToPartYuv( rpcYuvDst, uiPartIdx, iWidth, iHeight );
1893  }
1894  else if ( iRefIdx0 <  0 && iRefIdx1 >= 0 )
1895  {
1896    pcYuvSrc1->copyPartToPartYuv( rpcYuvDst, uiPartIdx, iWidth, iHeight );
1897  }
1898}
1899
1900// AMVP
1901Void TComPrediction::getMvPredAMVP( TComDataCU* pcCU, UInt uiPartIdx, UInt uiPartAddr, RefPicList eRefPicList, Int iRefIdx, TComMv& rcMvPred )
1902{
1903  AMVPInfo* pcAMVPInfo = pcCU->getCUMvField(eRefPicList)->getAMVPInfo();
1904
1905  if( pcCU->getAMVPMode(uiPartAddr) == AM_NONE || (pcAMVPInfo->iN <= 1 && pcCU->getAMVPMode(uiPartAddr) == AM_EXPL) )
1906  {
1907    rcMvPred = pcAMVPInfo->m_acMvCand[0];
1908
1909    pcCU->setMVPIdxSubParts( 0, eRefPicList, uiPartAddr, uiPartIdx, pcCU->getDepth(uiPartAddr));
1910    pcCU->setMVPNumSubParts( pcAMVPInfo->iN, eRefPicList, uiPartAddr, uiPartIdx, pcCU->getDepth(uiPartAddr));
1911    return;
1912  }
1913
1914  assert(pcCU->getMVPIdx(eRefPicList,uiPartAddr) >= 0);
1915  rcMvPred = pcAMVPInfo->m_acMvCand[pcCU->getMVPIdx(eRefPicList,uiPartAddr)];
1916  return;
1917}
1918
1919/** Function for deriving planar intra prediction.
1920 * \param pSrc pointer to reconstructed sample array
1921 * \param srcStride the stride of the reconstructed sample array
1922 * \param rpDst reference to pointer for the prediction sample array
1923 * \param dstStride the stride of the prediction sample array
1924 * \param width the width of the block
1925 * \param height the height of the block
1926 *
1927 * This function derives the prediction samples for planar mode (intra coding).
1928 */
1929Void TComPrediction::xPredIntraPlanar( Int* pSrc, Int srcStride, Pel* rpDst, Int dstStride, UInt width, UInt height )
1930{
1931  assert(width == height);
1932
1933  Int k, l, bottomLeft, topRight;
1934  Int horPred;
1935  Int leftColumn[MAX_CU_SIZE], topRow[MAX_CU_SIZE], bottomRow[MAX_CU_SIZE], rightColumn[MAX_CU_SIZE];
1936  UInt blkSize = width;
1937  UInt offset2D = width;
1938  UInt shift1D = g_aucConvertToBit[ width ] + 2;
1939  UInt shift2D = shift1D + 1;
1940
1941  // Get left and above reference column and row
1942  for(k=0;k<blkSize+1;k++)
1943  {
1944    topRow[k] = pSrc[k-srcStride];
1945    leftColumn[k] = pSrc[k*srcStride-1];
1946  }
1947
1948  // Prepare intermediate variables used in interpolation
1949  bottomLeft = leftColumn[blkSize];
1950  topRight   = topRow[blkSize];
1951  for (k=0;k<blkSize;k++)
1952  {
1953    bottomRow[k]   = bottomLeft - topRow[k];
1954    rightColumn[k] = topRight   - leftColumn[k];
1955    topRow[k]      <<= shift1D;
1956    leftColumn[k]  <<= shift1D;
1957  }
1958
1959  // Generate prediction signal
1960  for (k=0;k<blkSize;k++)
1961  {
1962    horPred = leftColumn[k] + offset2D;
1963    for (l=0;l<blkSize;l++)
1964    {
1965      horPred += rightColumn[k];
1966      topRow[l] += bottomRow[l];
1967      rpDst[k*dstStride+l] = ( (horPred + topRow[l]) >> shift2D );
1968    }
1969  }
1970}
1971
1972/** Function for deriving chroma LM intra prediction.
1973 * \param pcPattern pointer to neighbouring pixel access pattern
1974 * \param piSrc pointer to reconstructed chroma sample array
1975 * \param pPred pointer for the prediction sample array
1976 * \param uiPredStride the stride of the prediction sample array
1977 * \param uiCWidth the width of the chroma block
1978 * \param uiCHeight the height of the chroma block
1979 * \param uiChromaId boolean indication of chroma component
1980 *
1981 * This function derives the prediction samples for chroma LM mode (chroma intra coding)
1982 */
1983Void TComPrediction::predLMIntraChroma( TComPattern* pcPattern, Int* piSrc, Pel* pPred, UInt uiPredStride, UInt uiCWidth, UInt uiCHeight, UInt uiChromaId )
1984{
1985  UInt uiWidth  = 2 * uiCWidth;
1986
1987  xGetLLSPrediction( pcPattern, piSrc+uiWidth+2, uiWidth+1, pPred, uiPredStride, uiCWidth, uiCHeight, 1 ); 
1988}
1989
1990/** Function for deriving downsampled luma sample of current chroma block and its above, left causal pixel
1991 * \param pcPattern pointer to neighbouring pixel access pattern
1992 * \param uiCWidth the width of the chroma block
1993 * \param uiCHeight the height of the chroma block
1994 *
1995 * This function derives downsampled luma sample of current chroma block and its above, left causal pixel
1996 */
1997Void TComPrediction::getLumaRecPixels( TComPattern* pcPattern, UInt uiCWidth, UInt uiCHeight )
1998{
1999  UInt uiWidth  = 2 * uiCWidth;
2000  UInt uiHeight = 2 * uiCHeight; 
2001
2002  Pel* pRecSrc = pcPattern->getROIY();
2003  Pel* pDst0 = m_pLumaRecBuffer + m_iLumaRecStride + 1;
2004
2005  Int iRecSrcStride = pcPattern->getPatternLStride();
2006  Int iRecSrcStride2 = iRecSrcStride << 1;
2007  Int iDstStride = m_iLumaRecStride;
2008  Int iSrcStride = ( max( uiWidth, uiHeight ) << 1 ) + 1;
2009
2010  Int* ptrSrc = pcPattern->getAdiOrgBuf( uiWidth, uiHeight, m_piYuvExt );
2011
2012  // initial pointers
2013  Pel* pDst = pDst0 - 1 - iDstStride; 
2014  Int* piSrc = ptrSrc;
2015
2016  // top left corner downsampled from ADI buffer
2017  // don't need this point
2018
2019  // top row downsampled from ADI buffer
2020  pDst++;     
2021  piSrc ++;
2022  for (Int i = 0; i < uiCWidth; i++)
2023  {
2024    pDst[i] = ((piSrc[2*i] * 2 ) + piSrc[2*i - 1] + piSrc[2*i + 1] + 2) >> 2;
2025  }
2026
2027  // left column downsampled from ADI buffer
2028  pDst = pDst0 - 1; 
2029  piSrc = ptrSrc + iSrcStride;
2030  for (Int j = 0; j < uiCHeight; j++)
2031  {
2032    pDst[0] = ( piSrc[0] + piSrc[iSrcStride] ) >> 1;
2033    piSrc += iSrcStride << 1; 
2034    pDst += iDstStride;   
2035  }
2036
2037  // inner part from reconstructed picture buffer
2038  for( Int j = 0; j < uiCHeight; j++ )
2039  {
2040    for (Int i = 0; i < uiCWidth; i++)
2041    {
2042      pDst0[i] = (pRecSrc[2*i] + pRecSrc[2*i + iRecSrcStride]) >> 1;
2043    }
2044
2045    pDst0 += iDstStride;
2046    pRecSrc += iRecSrcStride2;
2047  }
2048}
2049
2050/** Function for deriving the positon of first non-zero binary bit of a value
2051 * \param x input value
2052 *
2053 * This function derives the positon of first non-zero binary bit of a value
2054 */
2055Int GetMSB( UInt x )
2056{
2057  Int iMSB = 0, bits = ( sizeof( Int ) << 3 ), y = 1;
2058
2059  while( x > 1 )
2060  {
2061    bits >>= 1;
2062    y = x >> bits;
2063
2064    if( y )
2065    {
2066      x = y;
2067      iMSB += bits;
2068    }
2069  }
2070
2071  iMSB+=y;
2072
2073  return iMSB;
2074}
2075
2076/** Function for counting leading number of zeros/ones
2077 * \param x input value
2078 \ This function counts leading number of zeros for positive numbers and
2079 \ leading number of ones for negative numbers. This can be implemented in
2080 \ single instructure cycle on many processors.
2081 */
2082
2083Short CountLeadingZerosOnes (Short x)
2084{
2085  Short clz;
2086  Short i;
2087
2088  if(x == 0)
2089  {
2090    clz = 0;
2091  }
2092  else
2093  {
2094    if (x == -1)
2095    {
2096      clz = 15;
2097    }
2098    else
2099    {
2100      if(x < 0)
2101      {
2102        x = ~x;
2103      }
2104      clz = 15;
2105      for(i = 0;i < 15;++i)
2106      {
2107        if(x) 
2108        {
2109          clz --;
2110        }
2111        x = x >> 1;
2112      }
2113    }
2114  }
2115  return clz;
2116}
2117
2118/** Function for deriving LM intra prediction.
2119 * \param pcPattern pointer to neighbouring pixel access pattern
2120 * \param pSrc0 pointer to reconstructed chroma sample array
2121 * \param iSrcStride the stride of reconstructed chroma sample array
2122 * \param pDst0 reference to pointer for the prediction sample array
2123 * \param iDstStride the stride of the prediction sample array
2124 * \param uiWidth the width of the chroma block
2125 * \param uiHeight the height of the chroma block
2126 * \param uiExt0 line number of neiggboirng pixels for calculating LM model parameter, default value is 1
2127 *
2128 * This function derives the prediction samples for chroma LM mode (chroma intra coding)
2129 */
2130Void TComPrediction::xGetLLSPrediction( TComPattern* pcPattern, Int* pSrc0, Int iSrcStride, Pel* pDst0, Int iDstStride, UInt uiWidth, UInt uiHeight, UInt uiExt0 )
2131{
2132
2133  Pel  *pDst, *pLuma;
2134  Int  *pSrc;
2135
2136  Int  iLumaStride = m_iLumaRecStride;
2137  Pel* pLuma0 = m_pLumaRecBuffer + uiExt0 * iLumaStride + uiExt0;
2138
2139  Int i, j, iCountShift = 0;
2140
2141  UInt uiExt = uiExt0;
2142
2143  // LLS parameters estimation -->
2144
2145  Int x = 0, y = 0, xx = 0, xy = 0;
2146
2147  pSrc  = pSrc0  - iSrcStride;
2148  pLuma = pLuma0 - iLumaStride;
2149
2150  for( j = 0; j < uiWidth; j++ )
2151  {
2152    x += pLuma[j];
2153    y += pSrc[j];
2154    xx += pLuma[j] * pLuma[j];
2155    xy += pLuma[j] * pSrc[j];
2156  }
2157  iCountShift += g_aucConvertToBit[ uiWidth ] + 2;
2158
2159  pSrc  = pSrc0 - uiExt;
2160  pLuma = pLuma0 - uiExt;
2161
2162  for( i = 0; i < uiHeight; i++ )
2163  {
2164    x += pLuma[0];
2165    y += pSrc[0];
2166    xx += pLuma[0] * pLuma[0];
2167    xy += pLuma[0] * pSrc[0];
2168
2169    pSrc  += iSrcStride;
2170    pLuma += iLumaStride;
2171  }
2172  iCountShift += iCountShift > 0 ? 1 : ( g_aucConvertToBit[ uiWidth ] + 2 );
2173
2174  Int iTempShift = ( g_uiBitDepth + g_uiBitIncrement ) + g_aucConvertToBit[ uiWidth ] + 3 - 15;
2175
2176  if(iTempShift > 0)
2177  {
2178    x  = ( x +  ( 1 << ( iTempShift - 1 ) ) ) >> iTempShift;
2179    y  = ( y +  ( 1 << ( iTempShift - 1 ) ) ) >> iTempShift;
2180    xx = ( xx + ( 1 << ( iTempShift - 1 ) ) ) >> iTempShift;
2181    xy = ( xy + ( 1 << ( iTempShift - 1 ) ) ) >> iTempShift;
2182    iCountShift -= iTempShift;
2183  }
2184
2185  Int a, b, iShift = 13;
2186
2187  if( iCountShift == 0 )
2188  {
2189    a = 0;
2190    b = 1 << (g_uiBitDepth + g_uiBitIncrement - 1);
2191    iShift = 0;
2192  }
2193  else
2194  {
2195    Int a1 = ( xy << iCountShift ) - y * x;
2196    Int a2 = ( xx << iCountShift ) - x * x;             
2197
2198    {
2199      const Int iShiftA2 = 6;
2200      const Int iShiftA1 = 15;
2201      const Int iAccuracyShift = 15;
2202
2203      Int iScaleShiftA2 = 0;
2204      Int iScaleShiftA1 = 0;
2205      Int a1s = a1;
2206      Int a2s = a2;
2207
2208      iScaleShiftA1 = GetMSB( abs( a1 ) ) - iShiftA1;
2209      iScaleShiftA2 = GetMSB( abs( a2 ) ) - iShiftA2; 
2210
2211      if( iScaleShiftA1 < 0 )
2212      {
2213        iScaleShiftA1 = 0;
2214      }
2215     
2216      if( iScaleShiftA2 < 0 )
2217      {
2218        iScaleShiftA2 = 0;
2219      }
2220     
2221      Int iScaleShiftA = iScaleShiftA2 + iAccuracyShift - iShift - iScaleShiftA1;
2222
2223      a2s = a2 >> iScaleShiftA2;
2224
2225      a1s = a1 >> iScaleShiftA1;
2226
2227      if (a2s >= 1)
2228      {
2229        a = a1s * m_uiaShift[ a2s - 1];
2230      }
2231      else
2232      {
2233        a = 0;
2234      }
2235     
2236      if( iScaleShiftA < 0 )
2237      {
2238        a = a << -iScaleShiftA;
2239      }
2240      else
2241      {
2242        a = a >> iScaleShiftA;
2243      }
2244     
2245       a = Clip3(-( 1 << 15 ), ( 1 << 15 ) - 1, a); 
2246     
2247      Int minA = -(1 << (6));
2248      Int maxA = (1 << 6) - 1;
2249      if( a <= maxA && a >= minA )
2250      {
2251        // do nothing
2252      }
2253      else
2254      {
2255        Short n = CountLeadingZerosOnes(a);
2256        a = a >> (9-n);
2257        iShift -= (9-n);
2258      }
2259
2260      b = (  y - ( ( a * x ) >> iShift ) + ( 1 << ( iCountShift - 1 ) ) ) >> iCountShift;
2261    }
2262  }   
2263
2264  // <-- end of LLS parameters estimation
2265
2266  // get prediction -->
2267  uiExt = uiExt0;
2268  pLuma = pLuma0;
2269  pDst = pDst0;
2270
2271  for( i = 0; i < uiHeight; i++ )
2272  {
2273    for( j = 0; j < uiWidth; j++ )
2274    {
2275      pDst[j] = Clip( ( ( a * pLuma[j] ) >> iShift ) + b );
2276    }
2277   
2278    pDst  += iDstStride;
2279    pLuma += iLumaStride;
2280  }
2281  // <-- end of get prediction
2282
2283}
2284
2285
2286#if LGE_ILLUCOMP_B0045
2287/** Function for deriving LM illumination compensation.
2288 */
2289Void TComPrediction::xGetLLSICPrediction(TComDataCU* pcCU, TComMv *pMv, TComPicYuv *pRefPic, Int &a, Int &b, Int &iShift)
2290{
2291  TComPicYuv *pRecPic = pcCU->getPic()->getPicYuvRec();
2292  Pel *pRec, *pRef;
2293  UInt uiWidth, uiHeight, uiTmpPartIdx;
2294  Int iRecStride = pRecPic->getStride(), iRefStride = pRefPic->getStride();
2295  Int iCUPelX, iCUPelY, iRefX, iRefY, iRefOffset;
2296
2297  iCUPelX = pcCU->getCUPelX() + g_auiRasterToPelX[g_auiZscanToRaster[pcCU->getZorderIdxInCU()]];
2298  iCUPelY = pcCU->getCUPelY() + g_auiRasterToPelY[g_auiZscanToRaster[pcCU->getZorderIdxInCU()]];
2299  iRefX   = iCUPelX + (pMv->getHor() >> 2);
2300  iRefY   = iCUPelY + (pMv->getVer() >> 2);
2301  uiWidth = pcCU->getWidth(0);
2302  uiHeight = pcCU->getHeight(0);
2303
2304  Int i, j, iCountShift = 0;
2305
2306  // LLS parameters estimation -->
2307
2308  Int x = 0, y = 0, xx = 0, xy = 0;
2309
2310  if(pcCU->getPUAbove(uiTmpPartIdx, pcCU->getZorderIdxInCU()) && iCUPelY > 0 && iRefY > 0)
2311  {
2312    iRefOffset = ( pMv->getHor() >> 2 ) + ( pMv->getVer() >> 2 ) * iRefStride - iRefStride;
2313    pRef = pRefPic->getLumaAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() ) + iRefOffset;
2314    pRec = pRecPic->getLumaAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() ) - iRecStride;
2315
2316    for( j = 0; j < uiWidth; j++ )
2317    {
2318      x += pRef[j];
2319      y += pRec[j];
2320      xx += pRef[j] * pRef[j];
2321      xy += pRef[j] * pRec[j];
2322    }
2323    iCountShift += g_aucConvertToBit[ uiWidth ] + 2;
2324  }
2325
2326
2327  if(pcCU->getPULeft(uiTmpPartIdx, pcCU->getZorderIdxInCU()) && iCUPelX > 0 && iRefX > 0)
2328  {
2329    iRefOffset = ( pMv->getHor() >> 2 ) + ( pMv->getVer() >> 2 ) * iRefStride - 1;
2330    pRef = pRefPic->getLumaAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() ) + iRefOffset;
2331    pRec = pRecPic->getLumaAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() ) - 1;
2332
2333    for( i = 0; i < uiHeight; i++ )
2334    {
2335      x += pRef[0];
2336      y += pRec[0];
2337      xx += pRef[0] * pRef[0];
2338      xy += pRef[0] * pRec[0];
2339
2340      pRef += iRefStride;
2341      pRec += iRecStride;
2342    }
2343    iCountShift += iCountShift > 0 ? 1 : ( g_aucConvertToBit[ uiWidth ] + 2 );
2344  }
2345
2346  Int iTempShift = ( g_uiBitDepth + g_uiBitIncrement ) + g_aucConvertToBit[ uiWidth ] + 3 - 15;
2347
2348  if(iTempShift > 0)
2349  {
2350    x  = ( x +  ( 1 << ( iTempShift - 1 ) ) ) >> iTempShift;
2351    y  = ( y +  ( 1 << ( iTempShift - 1 ) ) ) >> iTempShift;
2352    xx = ( xx + ( 1 << ( iTempShift - 1 ) ) ) >> iTempShift;
2353    xy = ( xy + ( 1 << ( iTempShift - 1 ) ) ) >> iTempShift;
2354    iCountShift -= iTempShift;
2355  }
2356
2357  iShift = 13;
2358
2359  if( iCountShift == 0 )
2360  {
2361    a = 1;
2362    b = 0;
2363    iShift = 0;
2364  }
2365  else
2366  {
2367    Int a1 = ( xy << iCountShift ) - y * x;
2368    Int a2 = ( xx << iCountShift ) - x * x;             
2369
2370    {
2371      const Int iShiftA2 = 6;
2372      const Int iShiftA1 = 15;
2373      const Int iAccuracyShift = 15;
2374
2375      Int iScaleShiftA2 = 0;
2376      Int iScaleShiftA1 = 0;
2377      Int a1s = a1;
2378      Int a2s = a2;
2379
2380      iScaleShiftA1 = GetMSB( abs( a1 ) ) - iShiftA1;
2381      iScaleShiftA2 = GetMSB( abs( a2 ) ) - iShiftA2; 
2382
2383      if( iScaleShiftA1 < 0 )
2384      {
2385        iScaleShiftA1 = 0;
2386      }
2387
2388      if( iScaleShiftA2 < 0 )
2389      {
2390        iScaleShiftA2 = 0;
2391      }
2392
2393      Int iScaleShiftA = iScaleShiftA2 + iAccuracyShift - iShift - iScaleShiftA1;
2394
2395      a2s = a2 >> iScaleShiftA2;
2396
2397      a1s = a1 >> iScaleShiftA1;
2398
2399      if (a2s >= 1)
2400      {
2401        a = a1s * m_uiaShift[ a2s - 1];
2402      }
2403      else
2404      {
2405        a = 0;
2406      }
2407
2408      if( iScaleShiftA < 0 )
2409      {
2410        a = a << -iScaleShiftA;
2411      }
2412      else
2413      {
2414        a = a >> iScaleShiftA;
2415      }
2416
2417      a = Clip3(-( 1 << 15 ), ( 1 << 15 ) - 1, a); 
2418
2419      Int minA = -(1 << (6));
2420      Int maxA = (1 << 6) - 1;
2421      if( a <= maxA && a >= minA )
2422      {
2423        // do nothing
2424      }
2425      else
2426      {
2427        Short n = CountLeadingZerosOnes(a);
2428        a = a >> (9-n);
2429        iShift -= (9-n);
2430      }
2431
2432      b = (  y - ( ( a * x ) >> iShift ) + ( 1 << ( iCountShift - 1 ) ) ) >> iCountShift;
2433    }
2434  }   
2435}
2436
2437Void TComPrediction::xGetLLSICPredictionChroma(TComDataCU* pcCU, TComMv *pMv, TComPicYuv *pRefPic, Int &a, Int &b, Int &iShift, Int iChromaId)
2438{
2439  TComPicYuv *pRecPic = pcCU->getPic()->getPicYuvRec();
2440  Pel *pRec = NULL, *pRef = NULL;
2441  UInt uiWidth, uiHeight, uiTmpPartIdx;
2442  Int iRecStride = pRecPic->getCStride(), iRefStride = pRefPic->getCStride();
2443  Int iCUPelX, iCUPelY, iRefX, iRefY, iRefOffset;
2444
2445  iCUPelX = pcCU->getCUPelX() + g_auiRasterToPelX[g_auiZscanToRaster[pcCU->getZorderIdxInCU()]];
2446  iCUPelY = pcCU->getCUPelY() + g_auiRasterToPelY[g_auiZscanToRaster[pcCU->getZorderIdxInCU()]];
2447  iRefX   = iCUPelX + (pMv->getHor() >> 2);
2448  iRefY   = iCUPelY + (pMv->getVer() >> 2);
2449  uiWidth = pcCU->getWidth(0) >> 1;
2450  uiHeight = pcCU->getHeight(0) >> 1;
2451
2452  Int i, j, iCountShift = 0;
2453
2454  // LLS parameters estimation -->
2455
2456  Int x = 0, y = 0, xx = 0, xy = 0;
2457
2458  if(pcCU->getPUAbove(uiTmpPartIdx, pcCU->getZorderIdxInCU()) && iCUPelY > 0 && iRefY > 0)
2459  {
2460    iRefOffset = ( pMv->getHor() >> 3 ) + ( pMv->getVer() >> 3 ) * iRefStride - iRefStride;
2461    if (iChromaId == 0) // Cb
2462    {
2463      pRef = pRefPic->getCbAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() ) + iRefOffset;
2464      pRec = pRecPic->getCbAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() ) - iRecStride;
2465    }
2466    else if (iChromaId == 1) // Cr
2467    {
2468      pRef = pRefPic->getCrAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() ) + iRefOffset;
2469      pRec = pRecPic->getCrAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() ) - iRecStride;
2470    }
2471
2472    for( j = 0; j < uiWidth; j++ )
2473    {
2474      x += pRef[j];
2475      y += pRec[j];
2476      xx += pRef[j] * pRef[j];
2477      xy += pRef[j] * pRec[j];
2478    }
2479    iCountShift += g_aucConvertToBit[ uiWidth ] + 2;
2480  }
2481
2482
2483  if(pcCU->getPULeft(uiTmpPartIdx, pcCU->getZorderIdxInCU()) && iCUPelX > 0 && iRefX > 0)
2484  {
2485    iRefOffset = ( pMv->getHor() >> 3 ) + ( pMv->getVer() >> 3 ) * iRefStride - 1;
2486    if (iChromaId == 0) // Cb
2487    {
2488      pRef = pRefPic->getCbAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() ) + iRefOffset;
2489      pRec = pRecPic->getCbAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() ) - 1;
2490    }
2491    else if (iChromaId == 1) // Cr
2492    {
2493      pRef = pRefPic->getCrAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() ) + iRefOffset;
2494      pRec = pRecPic->getCrAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() ) - 1;
2495    }
2496
2497    for( i = 0; i < uiHeight; i++ )
2498    {
2499      x += pRef[0];
2500      y += pRec[0];
2501      xx += pRef[0] * pRef[0];
2502      xy += pRef[0] * pRec[0];
2503
2504      pRef += iRefStride;
2505      pRec += iRecStride;
2506    }
2507    iCountShift += iCountShift > 0 ? 1 : ( g_aucConvertToBit[ uiWidth ] + 2 );
2508  }
2509
2510  Int iTempShift = ( g_uiBitDepth + g_uiBitIncrement ) + g_aucConvertToBit[ uiWidth ] + 3 - 15;
2511
2512  if(iTempShift > 0)
2513  {
2514    x  = ( x +  ( 1 << ( iTempShift - 1 ) ) ) >> iTempShift;
2515    y  = ( y +  ( 1 << ( iTempShift - 1 ) ) ) >> iTempShift;
2516    xx = ( xx + ( 1 << ( iTempShift - 1 ) ) ) >> iTempShift;
2517    xy = ( xy + ( 1 << ( iTempShift - 1 ) ) ) >> iTempShift;
2518    iCountShift -= iTempShift;
2519  }
2520
2521  iShift = 13;
2522
2523  if( iCountShift == 0 )
2524  {
2525    a = 1;
2526    b = 0;
2527    iShift = 0;
2528  }
2529  else
2530  {
2531    Int a1 = ( xy << iCountShift ) - y * x;
2532    Int a2 = ( xx << iCountShift ) - x * x;             
2533
2534    {
2535      const Int iShiftA2 = 6;
2536      const Int iShiftA1 = 15;
2537      const Int iAccuracyShift = 15;
2538
2539      Int iScaleShiftA2 = 0;
2540      Int iScaleShiftA1 = 0;
2541      Int a1s = a1;
2542      Int a2s = a2;
2543
2544      iScaleShiftA1 = GetMSB( abs( a1 ) ) - iShiftA1;
2545      iScaleShiftA2 = GetMSB( abs( a2 ) ) - iShiftA2; 
2546
2547      if( iScaleShiftA1 < 0 )
2548      {
2549        iScaleShiftA1 = 0;
2550      }
2551
2552      if( iScaleShiftA2 < 0 )
2553      {
2554        iScaleShiftA2 = 0;
2555      }
2556
2557      Int iScaleShiftA = iScaleShiftA2 + iAccuracyShift - iShift - iScaleShiftA1;
2558
2559      a2s = a2 >> iScaleShiftA2;
2560
2561      a1s = a1 >> iScaleShiftA1;
2562
2563      if (a2s >= 1)
2564      {
2565        a = a1s * m_uiaShift[ a2s - 1];
2566      }
2567      else
2568      {
2569        a = 0;
2570      }
2571
2572      if( iScaleShiftA < 0 )
2573      {
2574        a = a << -iScaleShiftA;
2575      }
2576      else
2577      {
2578        a = a >> iScaleShiftA;
2579      }
2580
2581      a = Clip3(-( 1 << 15 ), ( 1 << 15 ) - 1, a); 
2582
2583      Int minA = -(1 << (6));
2584      Int maxA = (1 << 6) - 1;
2585      if( a <= maxA && a >= minA )
2586      {
2587        // do nothing
2588      }
2589      else
2590      {
2591        Short n = CountLeadingZerosOnes(a);
2592        a = a >> (9-n);
2593        iShift -= (9-n);
2594      }
2595
2596      b = (  y - ( ( a * x ) >> iShift ) + ( 1 << ( iCountShift - 1 ) ) ) >> iCountShift;
2597    }
2598  }   
2599}
2600#endif
2601/** Function for filtering intra DC predictor.
2602 * \param pSrc pointer to reconstructed sample array
2603 * \param iSrcStride the stride of the reconstructed sample array
2604 * \param rpDst reference to pointer for the prediction sample array
2605 * \param iDstStride the stride of the prediction sample array
2606 * \param iWidth the width of the block
2607 * \param iHeight the height of the block
2608 *
2609 * This function performs filtering left and top edges of the prediction samples for DC mode (intra coding).
2610 */
2611Void TComPrediction::xDCPredFiltering( Int* pSrc, Int iSrcStride, Pel*& rpDst, Int iDstStride, Int iWidth, Int iHeight )
2612{
2613  Pel* pDst = rpDst;
2614  Int x, y, iDstStride2, iSrcStride2;
2615
2616  // boundary pixels processing
2617  pDst[0] = (Pel)((pSrc[-iSrcStride] + pSrc[-1] + 2 * pDst[0] + 2) >> 2);
2618
2619  for ( x = 1; x < iWidth; x++ )
2620  {
2621    pDst[x] = (Pel)((pSrc[x - iSrcStride] +  3 * pDst[x] + 2) >> 2);
2622  }
2623
2624  for ( y = 1, iDstStride2 = iDstStride, iSrcStride2 = iSrcStride-1; y < iHeight; y++, iDstStride2+=iDstStride, iSrcStride2+=iSrcStride )
2625  {
2626    pDst[iDstStride2] = (Pel)((pSrc[iSrcStride2] + 3 * pDst[iDstStride2] + 2) >> 2);
2627  }
2628
2629  return;
2630}
2631
2632#if HHI_DMM_WEDGE_INTRA || HHI_DMM_PRED_TEX
2633Void TComPrediction::predIntraLumaDMM( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiMode, Pel* piPred, UInt uiStride, Int iWidth, Int iHeight, Bool bAbove, Bool bLeft, Bool bEncoder )
2634{
2635#if HHI_DMM_WEDGE_INTRA
2636  if( uiMode == DMM_WEDGE_FULL_IDX        ) { xPredIntraWedgeFull ( pcCU, uiAbsPartIdx, piPred, uiStride, iWidth, iHeight, bAbove, bLeft, bEncoder, false, pcCU->getWedgeFullTabIdx ( uiAbsPartIdx ) ); }
2637  if( uiMode == DMM_WEDGE_FULL_D_IDX      ) { xPredIntraWedgeFull ( pcCU, uiAbsPartIdx, piPred, uiStride, iWidth, iHeight, bAbove, bLeft, bEncoder, true,  pcCU->getWedgeFullTabIdx( uiAbsPartIdx ), pcCU->getWedgeFullDeltaDC1( uiAbsPartIdx ), pcCU->getWedgeFullDeltaDC2( uiAbsPartIdx ) ); }
2638  if( uiMode == DMM_WEDGE_PREDDIR_IDX     ) { xPredIntraWedgeDir  ( pcCU, uiAbsPartIdx, piPred, uiStride, iWidth, iHeight, bAbove, bLeft, bEncoder, false, pcCU->getWedgePredDirDeltaEnd( uiAbsPartIdx ) ); }
2639  if( uiMode == DMM_WEDGE_PREDDIR_D_IDX   ) { xPredIntraWedgeDir  ( pcCU, uiAbsPartIdx, piPred, uiStride, iWidth, iHeight, bAbove, bLeft, bEncoder, true,  pcCU->getWedgePredDirDeltaEnd( uiAbsPartIdx ), pcCU->getWedgePredDirDeltaDC1( uiAbsPartIdx ), pcCU->getWedgePredDirDeltaDC2( uiAbsPartIdx ) ); }
2640#endif
2641#if HHI_DMM_PRED_TEX
2642  if( uiMode == DMM_WEDGE_PREDTEX_IDX     ) { xPredIntraWedgeTex  ( pcCU, uiAbsPartIdx, piPred, uiStride, iWidth, iHeight, bAbove, bLeft, bEncoder, false ); }
2643  if( uiMode == DMM_WEDGE_PREDTEX_D_IDX   ) { xPredIntraWedgeTex  ( pcCU, uiAbsPartIdx, piPred, uiStride, iWidth, iHeight, bAbove, bLeft, bEncoder, true, pcCU->getWedgePredTexDeltaDC1( uiAbsPartIdx ), pcCU->getWedgePredTexDeltaDC2( uiAbsPartIdx ) ); }
2644  if( uiMode == DMM_CONTOUR_PREDTEX_IDX   ) { xPredIntraContourTex( pcCU, uiAbsPartIdx, piPred, uiStride, iWidth, iHeight, bAbove, bLeft, bEncoder, false ); }
2645  if( uiMode == DMM_CONTOUR_PREDTEX_D_IDX ) { xPredIntraContourTex( pcCU, uiAbsPartIdx, piPred, uiStride, iWidth, iHeight, bAbove, bLeft, bEncoder, true, pcCU->getContourPredTexDeltaDC1( uiAbsPartIdx ), pcCU->getContourPredTexDeltaDC2( uiAbsPartIdx ) ); }
2646#endif
2647}
2648
2649Void TComPrediction::getWedgePredDCs( TComWedgelet* pcWedgelet, Int* piMask, Int iMaskStride, Int& riPredDC1, Int& riPredDC2, Bool bAbove, Bool bLeft )
2650{
2651  riPredDC1 = ( 1<<( g_uiBitDepth + g_uiBitIncrement - 1) ); //pred val, if no neighbors are available
2652  riPredDC2 = ( 1<<( g_uiBitDepth + g_uiBitIncrement - 1) );
2653
2654  if( !bAbove && !bLeft ) { return; }
2655
2656  UInt uiNumSmpDC1 = 0, uiNumSmpDC2 = 0;
2657  Int iPredDC1 = 0, iPredDC2 = 0;
2658
2659  Bool* pabWedgePattern = pcWedgelet->getPattern();
2660  UInt  uiWedgeStride   = pcWedgelet->getStride();
2661
2662#if HS_REFERENCE_SUBSAMPLE_C0154
2663  Int subSamplePix;
2664  if ( pcWedgelet->getWidth() == 32 )
2665  {
2666    subSamplePix = 2;
2667  }
2668  else
2669  {
2670    subSamplePix = 1;
2671  }
2672#endif
2673
2674  if( bAbove )
2675  {
2676#if HS_REFERENCE_SUBSAMPLE_C0154
2677    for( Int k = 0; k < pcWedgelet->getWidth(); k+=subSamplePix )
2678#else
2679    for( Int k = 0; k < pcWedgelet->getWidth(); k++ )
2680#endif
2681    {
2682      if( true == pabWedgePattern[k] )
2683      {
2684        iPredDC2 += piMask[k-iMaskStride];
2685        uiNumSmpDC2++;
2686      }
2687      else
2688      {
2689        iPredDC1 += piMask[k-iMaskStride];
2690        uiNumSmpDC1++;
2691      }
2692    }
2693  }
2694  if( bLeft )
2695  {
2696#if HS_REFERENCE_SUBSAMPLE_C0154
2697    for( Int k = 0; k < pcWedgelet->getHeight(); k+=subSamplePix )
2698#else
2699    for( Int k = 0; k < pcWedgelet->getHeight(); k++ )
2700#endif
2701    {
2702      if( true == pabWedgePattern[k*uiWedgeStride] )
2703      {
2704        iPredDC2 += piMask[k*iMaskStride-1];
2705        uiNumSmpDC2++;
2706      } 
2707      else
2708      {
2709        iPredDC1 += piMask[k*iMaskStride-1];
2710        uiNumSmpDC1++;
2711      }
2712    }
2713  }
2714
2715  if( uiNumSmpDC1 > 0 )
2716  {
2717    iPredDC1 /= uiNumSmpDC1;
2718    riPredDC1 = iPredDC1;
2719  }
2720  if( uiNumSmpDC2 > 0 )
2721  {
2722    iPredDC2 /= uiNumSmpDC2;
2723    riPredDC2 = iPredDC2;
2724  }
2725}
2726
2727Void TComPrediction::calcWedgeDCs( TComWedgelet* pcWedgelet, Pel* piOrig, UInt uiStride, Int& riDC1, Int& riDC2 )
2728{
2729  UInt uiDC1 = 0;
2730  UInt uiDC2 = 0;
2731  UInt uiNumPixDC1 = 0, uiNumPixDC2 = 0;
2732  Bool* pabWedgePattern = pcWedgelet->getPattern();
2733  if( uiStride == pcWedgelet->getStride() )
2734  {
2735    for( UInt k = 0; k < (pcWedgelet->getWidth() * pcWedgelet->getHeight()); k++ )
2736    {
2737      if( true == pabWedgePattern[k] ) 
2738      {
2739        uiDC2 += piOrig[k];
2740        uiNumPixDC2++;
2741      }
2742      else
2743      {
2744        uiDC1 += piOrig[k];
2745        uiNumPixDC1++;
2746      }
2747    }
2748  }
2749  else
2750  {
2751    Pel* piTemp = piOrig;
2752    UInt uiWedgeStride = pcWedgelet->getStride();
2753    for( UInt uiY = 0; uiY < pcWedgelet->getHeight(); uiY++ )
2754    {
2755      for( UInt uiX = 0; uiX < pcWedgelet->getWidth(); uiX++ )
2756      {
2757        if( true == pabWedgePattern[uiX] ) 
2758        {
2759          uiDC2 += piTemp[uiX];
2760          uiNumPixDC2++;
2761        }
2762        else
2763        {
2764          uiDC1 += piTemp[uiX];
2765          uiNumPixDC1++;
2766        }
2767      }
2768      piTemp          += uiStride;
2769      pabWedgePattern += uiWedgeStride;
2770    }
2771  }
2772
2773  if( uiNumPixDC1 > 0 ) { riDC1 = uiDC1 / uiNumPixDC1; }
2774  else                  { riDC1 = ( 1<<( g_uiBitDepth + g_uiBitIncrement - 1) ); }
2775
2776  if( uiNumPixDC2 > 0 ) { riDC2 = uiDC2 / uiNumPixDC2; }
2777  else                  { riDC2 = ( 1<<( g_uiBitDepth + g_uiBitIncrement - 1) ); }
2778}
2779
2780Void TComPrediction::assignWedgeDCs2Pred( TComWedgelet* pcWedgelet, Pel* piPred, UInt uiStride, Int iDC1, Int iDC2 )
2781{
2782  Bool* pabWedgePattern = pcWedgelet->getPattern();
2783
2784  if( uiStride == pcWedgelet->getStride() )
2785  {
2786    for( UInt k = 0; k < (pcWedgelet->getWidth() * pcWedgelet->getHeight()); k++ )
2787    {
2788      if( true == pabWedgePattern[k] ) 
2789      {
2790        piPred[k] = iDC2;
2791      }
2792      else
2793      {
2794        piPred[k] = iDC1;
2795      }
2796    }
2797  }
2798  else
2799  {
2800    Pel* piTemp = piPred;
2801    UInt uiWedgeStride = pcWedgelet->getStride();
2802    for( UInt uiY = 0; uiY < pcWedgelet->getHeight(); uiY++ )
2803    {
2804      for( UInt uiX = 0; uiX < pcWedgelet->getWidth(); uiX++ )
2805      {
2806        if( true == pabWedgePattern[uiX] ) 
2807        {
2808          piTemp[uiX] = iDC2;
2809        }
2810        else
2811        {
2812          piTemp[uiX] = iDC1;
2813        }
2814      }
2815      piTemp          += uiStride;
2816      pabWedgePattern += uiWedgeStride;
2817    }
2818  }
2819}
2820
2821Void TComPrediction::xDeltaDCQuantScaleUp( TComDataCU* pcCU, Int& riDeltaDC )
2822{
2823  Int  iSign  = riDeltaDC < 0 ? -1 : 1;
2824  UInt uiAbs  = abs( riDeltaDC );
2825
2826  Int iQp = pcCU->getQP(0);
2827  Double dMax = (Double)( 1<<( g_uiBitDepth + g_uiBitIncrement - 1) );
2828  Double dStepSize = Clip3( 1.0, dMax, pow( 2.0, iQp/10.0 + g_iDeltaDCsQuantOffset ) );
2829
2830  riDeltaDC = iSign * roftoi( uiAbs * dStepSize );
2831  return;
2832}
2833
2834Void TComPrediction::xDeltaDCQuantScaleDown( TComDataCU*  pcCU, Int& riDeltaDC )
2835{
2836  Int  iSign  = riDeltaDC < 0 ? -1 : 1;
2837  UInt uiAbs  = abs( riDeltaDC );
2838
2839  Int iQp = pcCU->getQP(0);
2840  Double dMax = (Double)( 1<<( g_uiBitDepth + g_uiBitIncrement - 1) );
2841  Double dStepSize = Clip3( 1.0, dMax, pow( 2.0, iQp/10.0 + g_iDeltaDCsQuantOffset ) );
2842
2843  riDeltaDC = iSign * roftoi( uiAbs / dStepSize );
2844  return;
2845}
2846#endif
2847
2848#if HHI_DMM_PRED_TEX
2849Void TComPrediction::getBestContourFromTex( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiWidth, UInt uiHeight, TComWedgelet* pcContourWedge )
2850{
2851  pcContourWedge->clear();
2852
2853  // get copy of co-located texture luma block
2854  TComYuv cTempYuv;
2855  cTempYuv.create( uiWidth, uiHeight ); 
2856  cTempYuv.clear();
2857  Pel* piRefBlkY = cTempYuv.getLumaAddr();
2858  copyTextureLumaBlock( pcCU, uiAbsPartIdx, piRefBlkY, uiWidth, uiHeight );
2859  piRefBlkY = cTempYuv.getLumaAddr();
2860
2861  // find contour for texture luma block
2862  UInt iDC = 0;
2863  for( UInt k = 0; k < (uiWidth*uiHeight); k++ ) 
2864  { 
2865    iDC += piRefBlkY[k]; 
2866  }
2867  iDC /= (uiWidth*uiHeight);
2868  piRefBlkY = cTempYuv.getLumaAddr();
2869
2870  Bool* pabContourPattern = pcContourWedge->getPattern();
2871  for( UInt k = 0; k < (uiWidth*uiHeight); k++ ) 
2872  { 
2873    pabContourPattern[k] = (piRefBlkY[k] > iDC) ? true : false;
2874  }
2875
2876  cTempYuv.destroy();
2877}
2878
2879#if LGE_DMM3_SIMP_C0044
2880/**
2881 - fetch best Wedgelet pattern at decoder
2882 */
2883UInt TComPrediction::getBestWedgeFromTex( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiWidth, UInt uiHeight, UInt IntraTabIdx)
2884{
2885  assert( uiWidth >= DMM_WEDGEMODEL_MIN_SIZE && uiWidth <= DMM_WEDGEMODEL_MAX_SIZE );
2886
2887  UInt          uiBestTabIdx = 0;
2888  TComPic*      pcPicTex = pcCU->getSlice()->getTexturePic();
2889  TComDataCU*   pcColTexCU = pcPicTex->getCU(pcCU->getAddr());
2890  UInt          uiTexPartIdx = pcCU->getZorderIdxInCU() + uiAbsPartIdx;
2891  Int           uiColTexIntraDir = pcColTexCU->isIntra( uiTexPartIdx ) ? pcColTexCU->getLumaIntraDir( uiTexPartIdx ) : 255;
2892
2893  std::vector< std::vector<UInt> > pauiWdgLstSz = g_aauiWdgLstM3[g_aucConvertToBit[uiWidth]];
2894
2895  if( uiColTexIntraDir > DC_IDX && uiColTexIntraDir < 35 )
2896  {
2897    std::vector<UInt>* pauiWdgLst = &pauiWdgLstSz[uiColTexIntraDir-2];
2898    uiBestTabIdx    =   pauiWdgLst->at(IntraTabIdx);
2899  }
2900  else
2901  {
2902    WedgeNodeList* pacWedgeNodeList = &g_aacWedgeNodeLists[(g_aucConvertToBit[uiWidth])];
2903    uiBestTabIdx = pacWedgeNodeList->at(IntraTabIdx).getPatternIdx();
2904  }
2905
2906  return uiBestTabIdx;
2907}
2908#endif
2909
2910#if LGE_DMM3_SIMP_C0044
2911/**
2912 - calculate best Wedgelet pattern at encoder
2913 */
2914UInt TComPrediction::getBestWedgeFromTex( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiWidth, UInt uiHeight, Pel* piOrigi, UInt uiStride, UInt & ruiIntraTabIdx)
2915#else
2916UInt TComPrediction::getBestWedgeFromTex( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiWidth, UInt uiHeight )
2917#endif
2918{
2919  assert( uiWidth >= DMM_WEDGEMODEL_MIN_SIZE && uiWidth <= DMM_WEDGEMODEL_MAX_SIZE );
2920
2921  // get copy of co-located texture luma block
2922  TComYuv cTempYuv; 
2923  cTempYuv.create( uiWidth, uiHeight ); 
2924  cTempYuv.clear();
2925  Pel* piRefBlkY = cTempYuv.getLumaAddr();
2926
2927  copyTextureLumaBlock( pcCU, uiAbsPartIdx, piRefBlkY, uiWidth, uiHeight );
2928  piRefBlkY = cTempYuv.getLumaAddr();
2929
2930  // local pred buffer
2931  TComYuv cPredYuv; 
2932  cPredYuv.create( uiWidth, uiHeight ); 
2933  cPredYuv.clear();
2934  Pel* piPred = cPredYuv.getLumaAddr();
2935
2936  UInt uiPredStride = cPredYuv.getStride();
2937
2938  // wedge search
2939  TComWedgeDist cWedgeDist;
2940  UInt uiBestDist = MAX_UINT;
2941  UInt uiBestTabIdx = 0;
2942  Int  iDC1 = 0;
2943  Int  iDC2 = 0;
2944  WedgeList* pacWedgeList = &g_aacWedgeLists[(g_aucConvertToBit[uiWidth])];
2945#if LGE_DMM3_SIMP_C0044
2946  ruiIntraTabIdx  = 0;
2947#endif
2948  TComPic*      pcPicTex = pcCU->getSlice()->getTexturePic();
2949  TComDataCU* pcColTexCU = pcPicTex->getCU(pcCU->getAddr());
2950  UInt      uiTexPartIdx = pcCU->getZorderIdxInCU() + uiAbsPartIdx;
2951  Int   uiColTexIntraDir = pcColTexCU->isIntra( uiTexPartIdx ) ? pcColTexCU->getLumaIntraDir( uiTexPartIdx ) : 255;
2952
2953  std::vector< std::vector<UInt> > pauiWdgLstSz = g_aauiWdgLstM3[g_aucConvertToBit[uiWidth]];
2954  if( uiColTexIntraDir > DC_IDX && uiColTexIntraDir < 35 )
2955  {
2956    std::vector<UInt>* pauiWdgLst = &pauiWdgLstSz[uiColTexIntraDir-2];
2957    for( UInt uiIdxW = 0; uiIdxW < pauiWdgLst->size(); uiIdxW++ )
2958    {
2959      UInt uiIdx     =   pauiWdgLst->at(uiIdxW);
2960#if LGE_DMM3_SIMP_C0044
2961      calcWedgeDCs       ( &(pacWedgeList->at(uiIdx)), piOrigi,   uiWidth,      iDC1, iDC2 );
2962#else
2963      calcWedgeDCs       ( &(pacWedgeList->at(uiIdx)), piRefBlkY, uiWidth,      iDC1, iDC2 );
2964#endif
2965      assignWedgeDCs2Pred( &(pacWedgeList->at(uiIdx)), piPred,    uiPredStride, iDC1, iDC2 );
2966
2967#if LGE_DMM3_SIMP_C0044
2968      UInt uiActDist = cWedgeDist.getDistPart( piPred, uiPredStride, piOrigi, uiStride, uiWidth, uiHeight, WedgeDist_SAD );
2969#else
2970      UInt uiActDist = cWedgeDist.getDistPart( piPred, uiPredStride, piRefBlkY, uiWidth, uiWidth, uiHeight, WedgeDist_SAD );
2971#endif
2972
2973      if( uiActDist < uiBestDist || uiBestDist == MAX_UINT )
2974      {
2975        uiBestDist   = uiActDist;
2976        uiBestTabIdx = uiIdx;
2977#if LGE_DMM3_SIMP_C0044
2978        ruiIntraTabIdx = uiIdxW;
2979#endif
2980      }
2981    }
2982  }
2983  else
2984  {
2985    WedgeNodeList* pacWedgeNodeList = &g_aacWedgeNodeLists[(g_aucConvertToBit[uiWidth])];
2986    UInt uiBestNodeDist = MAX_UINT;
2987    UInt uiBestNodeId   = 0;
2988    for( UInt uiNodeId = 0; uiNodeId < pacWedgeNodeList->size(); uiNodeId++ )
2989    {
2990#if LGE_DMM3_SIMP_C0044
2991      calcWedgeDCs       ( &(pacWedgeList->at(pacWedgeNodeList->at(uiNodeId).getPatternIdx())), piOrigi, uiWidth,      iDC1, iDC2 );
2992#else
2993      calcWedgeDCs       ( &(pacWedgeList->at(pacWedgeNodeList->at(uiNodeId).getPatternIdx())), piRefBlkY, uiWidth,      iDC1, iDC2 );
2994#endif
2995      assignWedgeDCs2Pred( &(pacWedgeList->at(pacWedgeNodeList->at(uiNodeId).getPatternIdx())), piPred,    uiPredStride, iDC1, iDC2 );
2996
2997#if LGE_DMM3_SIMP_C0044
2998      UInt uiActDist = cWedgeDist.getDistPart( piPred, uiPredStride, piOrigi, uiStride, uiWidth, uiHeight, WedgeDist_SAD );
2999#else
3000      UInt uiActDist = cWedgeDist.getDistPart( piPred, uiPredStride, piRefBlkY, uiWidth, uiWidth, uiHeight, WedgeDist_SAD );
3001#endif
3002
3003      if( uiActDist < uiBestNodeDist || uiBestNodeDist == MAX_UINT )
3004      {
3005        uiBestNodeDist = uiActDist;
3006        uiBestNodeId   = uiNodeId;
3007#if LGE_DMM3_SIMP_C0044
3008        ruiIntraTabIdx = uiNodeId;
3009#endif
3010      }
3011    }
3012#if LGE_DMM3_SIMP_C0044
3013    uiBestTabIdx = pacWedgeNodeList->at(uiBestNodeId).getPatternIdx();
3014#else
3015    // refinement
3016    uiBestDist   = uiBestNodeDist;
3017    uiBestTabIdx = pacWedgeNodeList->at(uiBestNodeId).getPatternIdx();
3018    for( UInt uiRefId = 0; uiRefId < NUM_WEDGE_REFINES; uiRefId++ )
3019    {
3020      if( pacWedgeNodeList->at(uiBestNodeId).getRefineIdx( uiRefId ) != NO_IDX )
3021      {
3022        calcWedgeDCs       ( &(pacWedgeList->at(pacWedgeNodeList->at(uiBestNodeId).getRefineIdx( uiRefId ))), piRefBlkY, uiWidth,      iDC1, iDC2 );
3023        assignWedgeDCs2Pred( &(pacWedgeList->at(pacWedgeNodeList->at(uiBestNodeId).getRefineIdx( uiRefId ))), piPred,    uiPredStride, iDC1, iDC2 );
3024
3025        UInt uiActDist = cWedgeDist.getDistPart( piPred, uiPredStride, piRefBlkY, uiWidth, uiWidth, uiHeight, WedgeDist_SAD );
3026
3027        if( uiActDist < uiBestDist || uiBestDist == MAX_UINT )
3028        {
3029          uiBestDist   = uiActDist;
3030          uiBestTabIdx = pacWedgeNodeList->at(uiBestNodeId).getRefineIdx( uiRefId );
3031        }
3032      }
3033    }
3034#endif
3035  }
3036
3037  cPredYuv.destroy();
3038  cTempYuv.destroy();
3039  return uiBestTabIdx;
3040}
3041
3042Void TComPrediction::copyTextureLumaBlock( TComDataCU* pcCU, UInt uiAbsPartIdx, Pel* piDestBlockY, UInt uiWidth, UInt uiHeight )
3043{
3044  TComPicYuv* pcPicYuvRef = pcCU->getSlice()->getTexturePic()->getPicYuvRec();
3045  Int         iRefStride = pcPicYuvRef->getStride();
3046  Pel*        piRefY;
3047
3048  piRefY = pcPicYuvRef->getLumaAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() + uiAbsPartIdx );
3049
3050  for ( Int y = 0; y < uiHeight; y++ )
3051  {
3052    ::memcpy(piDestBlockY, piRefY, sizeof(Pel)*uiWidth);
3053//    ::memset(piDestBlockY, 128, sizeof(Pel)*uiWidth);
3054    piDestBlockY += uiWidth;
3055    piRefY += iRefStride;
3056  }
3057}
3058
3059Void TComPrediction::xPredIntraWedgeTex( TComDataCU* pcCU, UInt uiAbsPartIdx, Pel* piPred, UInt uiStride, Int iWidth, Int iHeight, Bool bAbove, Bool bLeft, Bool bEncoder, Bool bDelta, Int iDeltaDC1, Int iDeltaDC2 )
3060{
3061  assert( iWidth >= DMM_WEDGEMODEL_MIN_SIZE && iWidth <= DMM_WEDGEMODEL_MAX_SIZE );
3062  WedgeList* pacWedgeList = &g_aacWedgeLists[(g_aucConvertToBit[iWidth])];
3063
3064  // get wedge pattern
3065  UInt uiTextureWedgeTabIdx = 0;
3066  if( bEncoder ) 
3067  {
3068    // encoder: load stored wedge pattern from CU
3069    uiTextureWedgeTabIdx = pcCU->getWedgePredTexTabIdx( uiAbsPartIdx );
3070  }
3071  else
3072  {
3073    // decoder: get and store wedge pattern in CU
3074      // decoder: get and store wedge pattern in CU
3075#if LGE_DMM3_SIMP_C0044
3076    UInt uiIntraTabIdx   = pcCU->getWedgePredTexIntraTabIdx ( uiAbsPartIdx );
3077    uiTextureWedgeTabIdx = getBestWedgeFromTex( pcCU, uiAbsPartIdx, (UInt)iWidth, (UInt)iHeight, uiIntraTabIdx );
3078#else
3079    uiTextureWedgeTabIdx = getBestWedgeFromTex( pcCU, uiAbsPartIdx, (UInt)iWidth, (UInt)iHeight );
3080#endif
3081
3082    UInt uiDepth = (pcCU->getDepth(0)) + (pcCU->getPartitionSize(0) == SIZE_2Nx2N ? 0 : 1);
3083    pcCU->setWedgePredTexTabIdxSubParts( uiTextureWedgeTabIdx, uiAbsPartIdx, uiDepth );
3084  }
3085  TComWedgelet* pcWedgelet = &(pacWedgeList->at(uiTextureWedgeTabIdx));
3086
3087  // get wedge pred DCs
3088  Int iPredDC1 = 0;
3089  Int iPredDC2 = 0;
3090  Int* piMask = pcCU->getPattern()->getAdiOrgBuf( iWidth, iHeight, m_piYuvExt );
3091  Int iMaskStride = ( iWidth<<1 ) + 1;
3092  piMask += iMaskStride+1;
3093  getWedgePredDCs( pcWedgelet, piMask, iMaskStride, iPredDC1, iPredDC2, bAbove, bLeft );
3094
3095  // assign wedge pred DCs to prediction
3096  if( bDelta ) { assignWedgeDCs2Pred( pcWedgelet, piPred, uiStride, Clip ( iPredDC1+iDeltaDC1 ), Clip( iPredDC2+iDeltaDC2 ) ); }
3097  else         { assignWedgeDCs2Pred( pcWedgelet, piPred, uiStride,        iPredDC1,                   iPredDC2           ); }
3098}
3099
3100Void TComPrediction::xPredIntraContourTex( TComDataCU* pcCU, UInt uiAbsPartIdx, Pel* piPred, UInt uiStride, Int iWidth, Int iHeight, Bool bAbove, Bool bLeft, Bool bEncoder, Bool bDelta, Int iDeltaDC1, Int iDeltaDC2 )
3101{
3102  // get contour pattern
3103  TComWedgelet* pcContourWedge = new TComWedgelet( iWidth, iHeight );
3104  getBestContourFromTex( pcCU, uiAbsPartIdx, (UInt)iWidth, (UInt)iHeight, pcContourWedge );
3105
3106  // get wedge pred DCs
3107  Int iPredDC1 = 0;
3108  Int iPredDC2 = 0;
3109  Int* piMask = pcCU->getPattern()->getAdiOrgBuf( iWidth, iHeight, m_piYuvExt );
3110  Int iMaskStride = ( iWidth<<1 ) + 1;
3111  piMask += iMaskStride+1;
3112  getWedgePredDCs( pcContourWedge, piMask, iMaskStride, iPredDC1, iPredDC2, bAbove, bLeft );
3113
3114  // assign wedge pred DCs to prediction
3115  if( bDelta ) { assignWedgeDCs2Pred( pcContourWedge, piPred, uiStride, Clip ( iPredDC1+iDeltaDC1 ), Clip( iPredDC2+iDeltaDC2 ) ); }
3116  else         { assignWedgeDCs2Pred( pcContourWedge, piPred, uiStride,        iPredDC1,                   iPredDC2           ); }
3117
3118  pcContourWedge->destroy();
3119  delete pcContourWedge;
3120}
3121#endif // HHI_DMM_PRED_TEX
3122
3123#if HHI_DMM_WEDGE_INTRA
3124UInt TComPrediction::getBestContinueWedge( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiWidth, UInt uiHeight, Int iDeltaEnd )
3125{
3126  UInt uiThisBlockSize = uiWidth;
3127  assert( uiThisBlockSize >= DMM_WEDGEMODEL_MIN_SIZE && uiThisBlockSize <= DMM_WEDGEMODEL_MAX_SIZE );
3128  WedgeRefList* pacContDWedgeRefList = &g_aacWedgeRefLists[(g_aucConvertToBit[uiThisBlockSize])];
3129
3130  UInt uiPredDirWedgeTabIdx = 0;
3131  TComDataCU* pcTempCU;
3132  UInt        uiTempPartIdx;
3133  // 1st: try continue above wedgelet
3134  pcTempCU = pcCU->getPUAbove( uiTempPartIdx, pcCU->getZorderIdxInCU() + uiAbsPartIdx );
3135  if( pcTempCU )
3136  {
3137    UChar uhLumaIntraDir = pcTempCU->getLumaIntraDir( uiTempPartIdx );
3138    if( DMM_WEDGE_FULL_IDX      == uhLumaIntraDir || 
3139        DMM_WEDGE_FULL_D_IDX    == uhLumaIntraDir || 
3140        DMM_WEDGE_PREDDIR_IDX   == uhLumaIntraDir || 
3141        DMM_WEDGE_PREDDIR_D_IDX == uhLumaIntraDir
3142#if HHI_DMM_PRED_TEX
3143        ||
3144        DMM_WEDGE_PREDTEX_IDX   == uhLumaIntraDir ||
3145        DMM_WEDGE_PREDTEX_D_IDX == uhLumaIntraDir   
3146#endif
3147      )
3148    {
3149      UInt uiRefWedgeSize = (UInt)g_aucIntraSizeIdxToWedgeSize[pcTempCU->getIntraSizeIdx( uiTempPartIdx )];
3150      WedgeList* pacWedgeList = &g_aacWedgeLists[(g_aucConvertToBit[uiRefWedgeSize])];
3151
3152      // get offset between current and reference block
3153      UInt uiOffsetX = 0;
3154      UInt uiOffsetY = 0;
3155      xGetBlockOffset( pcCU, uiAbsPartIdx, pcTempCU, uiTempPartIdx, uiOffsetX, uiOffsetY );
3156
3157      // get reference wedgelet
3158      UInt uiRefWedgeTabIdx = 0;
3159      switch( uhLumaIntraDir )
3160      {
3161      case( DMM_WEDGE_FULL_IDX      ): { uiRefWedgeTabIdx = pcTempCU->getWedgeFullTabIdx   ( uiTempPartIdx ); } break;
3162      case( DMM_WEDGE_FULL_D_IDX    ): { uiRefWedgeTabIdx = pcTempCU->getWedgeFullTabIdx   ( uiTempPartIdx ); } break;
3163      case( DMM_WEDGE_PREDDIR_IDX   ): { uiRefWedgeTabIdx = pcTempCU->getWedgePredDirTabIdx( uiTempPartIdx ); } break;
3164      case( DMM_WEDGE_PREDDIR_D_IDX ): { uiRefWedgeTabIdx = pcTempCU->getWedgePredDirTabIdx( uiTempPartIdx ); } break;
3165#if HHI_DMM_PRED_TEX
3166      case( DMM_WEDGE_PREDTEX_IDX   ): { uiRefWedgeTabIdx = pcTempCU->getWedgePredTexTabIdx( uiTempPartIdx ); } break;
3167      case( DMM_WEDGE_PREDTEX_D_IDX ): { uiRefWedgeTabIdx = pcTempCU->getWedgePredTexTabIdx( uiTempPartIdx ); } break;
3168#endif
3169      default: { assert( 0 ); return uiPredDirWedgeTabIdx; }
3170      }
3171      TComWedgelet* pcRefWedgelet;
3172      pcRefWedgelet = &(pacWedgeList->at( uiRefWedgeTabIdx ));
3173
3174      // find reference wedgelet, if direction is suitable for continue wedge
3175      if( pcRefWedgelet->checkPredDirAbovePossible( uiThisBlockSize, uiOffsetX ) )
3176      {
3177        UChar uhContD_Xs, uhContD_Ys, uhContD_Xe, uhContD_Ye;
3178        pcRefWedgelet->getPredDirStartEndAbove( uhContD_Xs, uhContD_Ys, uhContD_Xe, uhContD_Ye, uiThisBlockSize, uiOffsetX, iDeltaEnd );
3179        getWedgePatternIdx( pacContDWedgeRefList, uiPredDirWedgeTabIdx, uhContD_Xs, uhContD_Ys, uhContD_Xe, uhContD_Ye );
3180        return uiPredDirWedgeTabIdx;
3181      }
3182    }
3183  }
3184
3185  // 2nd: try continue left wedglelet
3186  pcTempCU = pcCU->getPULeft( uiTempPartIdx, pcCU->getZorderIdxInCU() + uiAbsPartIdx );
3187  if( pcTempCU )
3188  {
3189    UChar uhLumaIntraDir = pcTempCU->getLumaIntraDir( uiTempPartIdx );
3190    if( DMM_WEDGE_FULL_IDX      == uhLumaIntraDir || 
3191        DMM_WEDGE_FULL_D_IDX    == uhLumaIntraDir || 
3192        DMM_WEDGE_PREDDIR_IDX   == uhLumaIntraDir || 
3193        DMM_WEDGE_PREDDIR_D_IDX == uhLumaIntraDir
3194#if HHI_DMM_PRED_TEX
3195        ||
3196        DMM_WEDGE_PREDTEX_IDX   == uhLumaIntraDir ||
3197        DMM_WEDGE_PREDTEX_D_IDX == uhLumaIntraDir   
3198#endif
3199      )
3200    {
3201      UInt uiRefWedgeSize = (UInt)g_aucIntraSizeIdxToWedgeSize[pcTempCU->getIntraSizeIdx( uiTempPartIdx )];
3202      WedgeList* pacWedgeList = &g_aacWedgeLists[(g_aucConvertToBit[uiRefWedgeSize])];
3203
3204      // get offset between current and reference block
3205      UInt uiOffsetX = 0;
3206      UInt uiOffsetY = 0;
3207      xGetBlockOffset( pcCU, uiAbsPartIdx, pcTempCU, uiTempPartIdx, uiOffsetX, uiOffsetY );
3208
3209      // get reference wedgelet
3210      UInt uiRefWedgeTabIdx = 0;
3211      switch( uhLumaIntraDir )
3212      {
3213      case( DMM_WEDGE_FULL_IDX      ): { uiRefWedgeTabIdx = pcTempCU->getWedgeFullTabIdx   ( uiTempPartIdx ); } break;
3214      case( DMM_WEDGE_FULL_D_IDX    ): { uiRefWedgeTabIdx = pcTempCU->getWedgeFullTabIdx   ( uiTempPartIdx ); } break;
3215      case( DMM_WEDGE_PREDDIR_IDX   ): { uiRefWedgeTabIdx = pcTempCU->getWedgePredDirTabIdx( uiTempPartIdx ); } break;
3216      case( DMM_WEDGE_PREDDIR_D_IDX ): { uiRefWedgeTabIdx = pcTempCU->getWedgePredDirTabIdx( uiTempPartIdx ); } break;
3217#if HHI_DMM_PRED_TEX
3218      case( DMM_WEDGE_PREDTEX_IDX   ): { uiRefWedgeTabIdx = pcTempCU->getWedgePredTexTabIdx( uiTempPartIdx ); } break;
3219      case( DMM_WEDGE_PREDTEX_D_IDX ): { uiRefWedgeTabIdx = pcTempCU->getWedgePredTexTabIdx( uiTempPartIdx ); } break;
3220#endif
3221      default: { assert( 0 ); return uiPredDirWedgeTabIdx; }
3222      }
3223      TComWedgelet* pcRefWedgelet;
3224      pcRefWedgelet = &(pacWedgeList->at( uiRefWedgeTabIdx ));
3225
3226      // find reference wedgelet, if direction is suitable for continue wedge
3227      if( pcRefWedgelet->checkPredDirLeftPossible( uiThisBlockSize, uiOffsetY ) )
3228      {
3229        UChar uhContD_Xs, uhContD_Ys, uhContD_Xe, uhContD_Ye;
3230        pcRefWedgelet->getPredDirStartEndLeft( uhContD_Xs, uhContD_Ys, uhContD_Xe, uhContD_Ye, uiThisBlockSize, uiOffsetY, iDeltaEnd );
3231        getWedgePatternIdx( pacContDWedgeRefList, uiPredDirWedgeTabIdx, uhContD_Xs, uhContD_Ys, uhContD_Xe, uhContD_Ye );
3232        return uiPredDirWedgeTabIdx;
3233      }
3234    }
3235  }
3236
3237  // 3rd: (default) make wedglet from intra dir and max slope point
3238  Int iSlopeX = 0;
3239  Int iSlopeY = 0;
3240  UInt uiStartPosX = 0;
3241  UInt uiStartPosY = 0;
3242  if( xGetWedgeIntraDirPredData( pcCU, uiAbsPartIdx, uiThisBlockSize, iSlopeX, iSlopeY, uiStartPosX, uiStartPosY ) )
3243  {
3244    UChar uhContD_Xs, uhContD_Ys, uhContD_Xe, uhContD_Ye;
3245    xGetWedgeIntraDirStartEnd( pcCU, uiAbsPartIdx, uiThisBlockSize, iSlopeX, iSlopeY, uiStartPosX, uiStartPosY, uhContD_Xs, uhContD_Ys, uhContD_Xe, uhContD_Ye, iDeltaEnd );
3246    getWedgePatternIdx( pacContDWedgeRefList, uiPredDirWedgeTabIdx, uhContD_Xs, uhContD_Ys, uhContD_Xe, uhContD_Ye );
3247    return uiPredDirWedgeTabIdx;
3248  }
3249
3250  return uiPredDirWedgeTabIdx;
3251}
3252
3253Bool TComPrediction::getWedgePatternIdx( WedgeRefList* pcWedgeRefList, UInt& ruiTabIdx, UChar uhXs, UChar uhYs, UChar uhXe, UChar uhYe )
3254{
3255  ruiTabIdx = 0;
3256
3257  for( UInt uiIdx = 0; uiIdx < pcWedgeRefList->size(); uiIdx++ )
3258  {
3259    TComWedgeRef* pcTestWedgeRef = &(pcWedgeRefList->at(uiIdx));
3260
3261    if( pcTestWedgeRef->getStartX() == uhXs &&
3262      pcTestWedgeRef->getStartY() == uhYs &&
3263      pcTestWedgeRef->getEndX()   == uhXe &&
3264      pcTestWedgeRef->getEndY()   == uhYe    )
3265    {
3266      ruiTabIdx = pcTestWedgeRef->getRefIdx();
3267      return true;
3268    }
3269  }
3270
3271  return false;
3272}
3273
3274Void TComPrediction::xPredIntraWedgeFull( TComDataCU* pcCU, UInt uiAbsPartIdx, Pel* piPred, UInt uiStride, Int iWidth, Int iHeight, Bool bAbove, Bool bLeft, Bool bEncoder, Bool bDelta, UInt uiTabIdx, Int iDeltaDC1, Int iDeltaDC2 )
3275{
3276  assert( iWidth >= DMM_WEDGEMODEL_MIN_SIZE && iWidth <= DMM_WEDGEMODEL_MAX_SIZE );
3277  WedgeList* pacWedgeList = &g_aacWedgeLists[(g_aucConvertToBit[iWidth])];
3278  TComWedgelet* pcWedgelet = &(pacWedgeList->at(uiTabIdx));
3279
3280  // get wedge pred DCs
3281  Int iPredDC1 = 0;
3282  Int iPredDC2 = 0;
3283
3284  Int* piMask = pcCU->getPattern()->getAdiOrgBuf( iWidth, iHeight, m_piYuvExt );
3285  Int iMaskStride = ( iWidth<<1 ) + 1;
3286  piMask += iMaskStride+1;
3287  getWedgePredDCs( pcWedgelet, piMask, iMaskStride, iPredDC1, iPredDC2, bAbove, bLeft );
3288
3289  // assign wedge pred DCs to prediction
3290  if( bDelta ) { assignWedgeDCs2Pred( pcWedgelet, piPred, uiStride, Clip( iPredDC1+iDeltaDC1 ), Clip( iPredDC2+iDeltaDC2 ) ); }
3291  else         { assignWedgeDCs2Pred( pcWedgelet, piPred, uiStride, iPredDC1,           iPredDC2           ); }
3292}
3293
3294Void TComPrediction::xPredIntraWedgeDir( TComDataCU* pcCU, UInt uiAbsPartIdx, Pel* piPred, UInt uiStride, Int iWidth, Int iHeight, Bool bAbove, Bool bLeft, Bool bEncoder, Bool bDelta, Int iWedgeDeltaEnd, Int iDeltaDC1, Int iDeltaDC2 )
3295{
3296  assert( iWidth >= DMM_WEDGEMODEL_MIN_SIZE && iWidth <= DMM_WEDGEMODEL_MAX_SIZE );
3297  WedgeList* pacWedgeList = &g_aacWedgeLists[(g_aucConvertToBit[iWidth])];
3298
3299  // get wedge pattern
3300  UInt uiDirWedgeTabIdx = 0;
3301  if( bEncoder )
3302  {
3303    // encoder: load stored wedge pattern from CU
3304    uiDirWedgeTabIdx = pcCU->getWedgePredDirTabIdx( uiAbsPartIdx );
3305  }
3306  else
3307  {
3308    uiDirWedgeTabIdx = getBestContinueWedge( pcCU, uiAbsPartIdx, iWidth, iHeight, iWedgeDeltaEnd );
3309
3310    UInt uiDepth = (pcCU->getDepth(0)) + (pcCU->getPartitionSize(0) == SIZE_2Nx2N ? 0 : 1);
3311    pcCU->setWedgePredDirTabIdxSubParts( uiDirWedgeTabIdx, uiAbsPartIdx, uiDepth );
3312  }
3313  TComWedgelet* pcWedgelet = &(pacWedgeList->at(uiDirWedgeTabIdx));
3314
3315  // get wedge pred DCs
3316  Int iPredDC1 = 0;
3317  Int iPredDC2 = 0;
3318
3319  Int* piMask = pcCU->getPattern()->getAdiOrgBuf( iWidth, iHeight, m_piYuvExt );
3320  Int iMaskStride = ( iWidth<<1 ) + 1;
3321  piMask += iMaskStride+1;
3322  getWedgePredDCs( pcWedgelet, piMask, iMaskStride, iPredDC1, iPredDC2, bAbove, bLeft );
3323
3324  // assign wedge pred DCs to prediction
3325  if( bDelta ) { assignWedgeDCs2Pred( pcWedgelet, piPred, uiStride, Clip( iPredDC1+iDeltaDC1 ), Clip( iPredDC2+iDeltaDC2 ) ); }
3326  else         { assignWedgeDCs2Pred( pcWedgelet, piPred, uiStride,       iPredDC1,                   iPredDC2             ); }
3327}
3328
3329Void TComPrediction::xGetBlockOffset( TComDataCU* pcCU, UInt uiAbsPartIdx, TComDataCU* pcRefCU, UInt uiRefAbsPartIdx, UInt& ruiOffsetX, UInt& ruiOffsetY )
3330{
3331  ruiOffsetX = 0;
3332  ruiOffsetY = 0;
3333
3334  // get offset between current and above/left block
3335  UInt uiThisOriginX = pcCU->getCUPelX() + g_auiRasterToPelX[ g_auiZscanToRaster[uiAbsPartIdx] ];
3336  UInt uiThisOriginY = pcCU->getCUPelY() + g_auiRasterToPelY[ g_auiZscanToRaster[uiAbsPartIdx] ];
3337
3338  UInt uiNumPartInRefCU = pcRefCU->getTotalNumPart();
3339  UInt uiMaxDepthRefCU = 0;
3340  while( uiNumPartInRefCU > 1 )
3341  {
3342    uiNumPartInRefCU >>= 2;
3343    uiMaxDepthRefCU++;
3344  }
3345
3346  UInt uiDepthRefPU = (pcRefCU->getDepth(uiRefAbsPartIdx)) + (pcRefCU->getPartitionSize(uiRefAbsPartIdx) == SIZE_2Nx2N ? 0 : 1);
3347  UInt uiShifts = (uiMaxDepthRefCU - uiDepthRefPU)*2;
3348  UInt uiRefBlockOriginPartIdx = (uiRefAbsPartIdx>>uiShifts)<<uiShifts;
3349
3350  UInt uiRefOriginX = pcRefCU->getCUPelX() + g_auiRasterToPelX[ g_auiZscanToRaster[uiRefBlockOriginPartIdx] ];
3351  UInt uiRefOriginY = pcRefCU->getCUPelY() + g_auiRasterToPelY[ g_auiZscanToRaster[uiRefBlockOriginPartIdx] ];
3352
3353  if( (uiThisOriginX - uiRefOriginX) > 0 ) { ruiOffsetX = (UInt)(uiThisOriginX - uiRefOriginX); }
3354  if( (uiThisOriginY - uiRefOriginY) > 0 ) { ruiOffsetY = (UInt)(uiThisOriginY - uiRefOriginY); }
3355}
3356
3357Bool TComPrediction::xGetWedgeIntraDirPredData( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiBlockSize, Int& riSlopeX, Int& riSlopeY, UInt& ruiStartPosX, UInt& ruiStartPosY )
3358{
3359  riSlopeX     = 0;
3360  riSlopeY     = 0;
3361  ruiStartPosX = 0;
3362  ruiStartPosY = 0;
3363
3364  // 1st step: get wedge start point (max. slope)
3365  Int* piSource = pcCU->getPattern()->getAdiOrgBuf( uiBlockSize, uiBlockSize, m_piYuvExt );
3366  Int iSourceStride = ( uiBlockSize<<1 ) + 1;
3367
3368  UInt uiSlopeMaxAbove = 0;
3369  UInt uiPosSlopeMaxAbove = 0;
3370  for( UInt uiPosHor = 0; uiPosHor < (uiBlockSize-1); uiPosHor++ )
3371  {
3372    if( abs( piSource[uiPosHor+1] - piSource[uiPosHor] ) > uiSlopeMaxAbove )
3373    {
3374      uiSlopeMaxAbove = abs( piSource[uiPosHor+1] - piSource[uiPosHor] );
3375      uiPosSlopeMaxAbove = uiPosHor;
3376    }
3377  }
3378
3379  UInt uiSlopeMaxLeft = 0;
3380  UInt uiPosSlopeMaxLeft = 0;
3381  for( UInt uiPosVer = 0; uiPosVer < (uiBlockSize-1); uiPosVer++ )
3382  {
3383    if( abs( piSource[(uiPosVer+1)*iSourceStride] - piSource[uiPosVer*iSourceStride] ) > uiSlopeMaxLeft )
3384    {
3385      uiSlopeMaxLeft = abs( piSource[(uiPosVer+1)*iSourceStride] - piSource[uiPosVer*iSourceStride] );
3386      uiPosSlopeMaxLeft = uiPosVer;
3387    }
3388  }
3389
3390  if( uiSlopeMaxAbove == 0 && uiSlopeMaxLeft == 0 ) 
3391  { 
3392    return false; 
3393  }
3394
3395  if( uiSlopeMaxAbove > uiSlopeMaxLeft )
3396  {
3397    ruiStartPosX = uiPosSlopeMaxAbove;
3398    ruiStartPosY = 0;
3399  }
3400  else
3401  {
3402    ruiStartPosX = 0;
3403    ruiStartPosY = uiPosSlopeMaxLeft;
3404  }
3405
3406  // 2nd step: derive wedge direction
3407  Int uiPreds[3] = {-1, -1, -1};
3408  Int iMode = -1;
3409  Int iPredNum = pcCU->getIntraDirLumaPredictor( uiAbsPartIdx, uiPreds, &iMode ); 
3410
3411  UInt uiDirMode = 0;
3412  if( iMode >= 0 ) { iPredNum = iMode; }
3413  if( iPredNum == 1 ) { uiDirMode = uiPreds[0]; }
3414  if( iPredNum == 2 ) { uiDirMode = uiPreds[1]; }
3415
3416  if( uiDirMode < 2 ) { return false; } // no planar & DC
3417
3418  Bool modeHor       = (uiDirMode < 18);
3419  Bool modeVer       = !modeHor;
3420  Int intraPredAngle = modeVer ? (Int)uiDirMode - VER_IDX : modeHor ? -((Int)uiDirMode - HOR_IDX) : 0;
3421  Int absAng         = abs(intraPredAngle);
3422  Int signAng        = intraPredAngle < 0 ? -1 : 1;
3423  Int angTable[9]    = {0,2,5,9,13,17,21,26,32};
3424  absAng             = angTable[absAng];
3425  intraPredAngle     = signAng * absAng;
3426
3427  // 3rd step: set slope for direction
3428  if( modeHor )
3429  {
3430    if( intraPredAngle > 0 )
3431    {
3432      riSlopeX = -32;
3433      riSlopeY = intraPredAngle;
3434    }
3435    else
3436    {
3437      riSlopeX = 32;
3438      riSlopeY = -intraPredAngle;
3439    }
3440  }
3441  else if( modeVer )
3442  {
3443    if( intraPredAngle > 0 )
3444    {
3445      riSlopeX = intraPredAngle;
3446      riSlopeY = -32;
3447    }
3448    else
3449    {
3450      riSlopeX = -intraPredAngle;
3451      riSlopeY = 32;
3452    }
3453  }
3454
3455  return true;
3456}
3457
3458Void TComPrediction::xGetWedgeIntraDirStartEnd( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiBlockSize, Int iDeltaX, Int iDeltaY, UInt uiPMSPosX, UInt uiPMSPosY, UChar& ruhXs, UChar& ruhYs, UChar& ruhXe, UChar& ruhYe, Int iDeltaEnd )
3459{
3460  ruhXs = 0;
3461  ruhYs = 0;
3462  ruhXe = 0;
3463  ruhYe = 0;
3464
3465  // scaling of start pos and block size to wedge resolution
3466  UInt uiScaledStartPosX = 0;
3467  UInt uiScaledStartPosY = 0;
3468  UInt uiScaledBlockSize = 0;
3469  WedgeResolution eWedgeRes = g_aeWedgeResolutionList[(UInt)g_aucConvertToBit[uiBlockSize]];
3470  switch( eWedgeRes )
3471  {
3472  case( DOUBLE_PEL ): { uiScaledStartPosX = (uiPMSPosX>>1); uiScaledStartPosY = (uiPMSPosY>>1); uiScaledBlockSize = (uiBlockSize>>1); break; }
3473  case(   FULL_PEL ): { uiScaledStartPosX =  uiPMSPosX;     uiScaledStartPosY =  uiPMSPosY;     uiScaledBlockSize =  uiBlockSize;     break; }
3474  case(   HALF_PEL ): { uiScaledStartPosX = (uiPMSPosX<<1); uiScaledStartPosY = (uiPMSPosY<<1); uiScaledBlockSize = (uiBlockSize<<1); break; }
3475  }
3476  Int iMaxPos = (Int)uiScaledBlockSize - 1;
3477
3478  // case above
3479  if( uiScaledStartPosX > 0 && uiScaledStartPosY == 0 )
3480  {
3481    ruhXs = (UChar)uiScaledStartPosX;
3482    ruhYs = 0;
3483
3484    if( iDeltaY == 0 )
3485    {
3486      if( iDeltaX < 0 )
3487      {
3488        ruhXe = 0;
3489        ruhYe = (UChar)std::min( std::max( iDeltaEnd, 0 ), iMaxPos );
3490        return;
3491      }
3492      else
3493      {
3494        ruhXe = (UChar)iMaxPos;
3495        ruhYe = (UChar)std::min( std::max( -iDeltaEnd, 0 ), iMaxPos );
3496        std::swap( ruhXs, ruhXe );
3497        std::swap( ruhYs, ruhYe );
3498        return;
3499      }
3500    }
3501
3502    // regular case
3503    Int iVirtualEndX = (Int)ruhXs + roftoi( (Double)iMaxPos * ((Double)iDeltaX / (Double)iDeltaY) );
3504
3505    if( iVirtualEndX < 0 )
3506    {
3507      Int iYe = roftoi( (Double)(0 - (Int)ruhXs) * ((Double)iDeltaY / (Double)iDeltaX) ) + iDeltaEnd;
3508      if( iYe < (Int)uiScaledBlockSize )
3509      {
3510        ruhXe = 0;
3511        ruhYe = (UChar)std::max( iYe, 0 );
3512        return;
3513      }
3514      else
3515      {
3516        ruhXe = (UChar)std::min( (iYe - iMaxPos), iMaxPos );
3517        ruhYe = (UChar)iMaxPos;
3518        return;
3519      }
3520    }
3521    else if( iVirtualEndX > iMaxPos )
3522    {
3523      Int iYe = roftoi( (Double)(iMaxPos - (Int)ruhXs) * ((Double)iDeltaY / (Double)iDeltaX) ) - iDeltaEnd;
3524      if( iYe < (Int)uiScaledBlockSize )
3525      {
3526        ruhXe = (UChar)iMaxPos;
3527        ruhYe = (UChar)std::max( iYe, 0 );
3528        std::swap( ruhXs, ruhXe );
3529        std::swap( ruhYs, ruhYe );
3530        return;
3531      }
3532      else
3533      {
3534        ruhXe = (UChar)std::max( (iMaxPos - (iYe - iMaxPos)), 0 );
3535        ruhYe = (UChar)iMaxPos;
3536        return;
3537      }
3538    }
3539    else
3540    {
3541      Int iXe = iVirtualEndX + iDeltaEnd;
3542      if( iXe < 0 )
3543      {
3544        ruhXe = 0;
3545        ruhYe = (UChar)std::max( (iMaxPos + iXe), 0 );
3546        return;
3547      }
3548      else if( iXe > iMaxPos )
3549      {
3550        ruhXe = (UChar)iMaxPos;
3551        ruhYe = (UChar)std::max( (iMaxPos - (iXe - iMaxPos)), 0 );
3552        std::swap( ruhXs, ruhXe );
3553        std::swap( ruhYs, ruhYe );
3554        return;
3555      }
3556      else
3557      {
3558        ruhXe = (UChar)iXe;
3559        ruhYe = (UChar)iMaxPos;
3560        return;
3561      }
3562    }
3563  }
3564
3565  // case left
3566  if( uiScaledStartPosY > 0 && uiScaledStartPosX == 0 )
3567  {
3568    ruhXs = 0;
3569    ruhYs = (UChar)uiScaledStartPosY;
3570
3571    if( iDeltaX == 0 )
3572    {
3573      if( iDeltaY < 0 )
3574      {
3575        ruhXe = (UChar)std::min( std::max( -iDeltaEnd, 0 ), iMaxPos );
3576        ruhYe = 0;
3577        std::swap( ruhXs, ruhXe );
3578        std::swap( ruhYs, ruhYe );
3579        return;
3580      }
3581      else
3582      {
3583        ruhXe = (UChar)std::min( std::max( iDeltaEnd, 0 ), iMaxPos );
3584        ruhYe = (UChar)iMaxPos;
3585        return; 
3586      }
3587    }
3588
3589    // regular case
3590    Int iVirtualEndY = (Int)ruhYs + roftoi( (Double)iMaxPos * ((Double)iDeltaY / (Double)iDeltaX) );
3591
3592    if( iVirtualEndY < 0 )
3593    {
3594      Int iXe = roftoi( (Double)(0 - (Int)ruhYs ) * ((Double)iDeltaX / (Double)iDeltaY) ) - iDeltaEnd;
3595      if( iXe < (Int)uiScaledBlockSize )
3596      {
3597        ruhXe = (UChar)std::max( iXe, 0 );
3598        ruhYe = 0;
3599        std::swap( ruhXs, ruhXe );
3600        std::swap( ruhYs, ruhYe );
3601        return;
3602      }
3603      else
3604      {
3605        ruhXe = (UChar)iMaxPos;
3606        ruhYe = (UChar)std::min( (iXe - iMaxPos), iMaxPos );
3607        std::swap( ruhXs, ruhXe );
3608        std::swap( ruhYs, ruhYe );
3609        return;
3610      }
3611    }
3612    else if( iVirtualEndY > (uiScaledBlockSize-1) )
3613    {
3614      Int iXe = roftoi( (Double)((Int)(uiScaledBlockSize-1) - (Int)ruhYs ) * ((Double)iDeltaX / (Double)iDeltaY) ) + iDeltaEnd;
3615      if( iXe < (Int)uiScaledBlockSize )
3616      {
3617        ruhXe = (UChar)std::max( iXe, 0 );
3618        ruhYe = (UChar)(uiScaledBlockSize-1);
3619        return;
3620      }
3621      else
3622      {
3623        ruhXe = (UChar)iMaxPos;
3624        ruhYe = (UChar)std::max( (iMaxPos - (iXe - iMaxPos)), 0 );
3625        std::swap( ruhXs, ruhXe );
3626        std::swap( ruhYs, ruhYe );
3627        return;
3628      }
3629    }
3630    else
3631    {
3632      Int iYe = iVirtualEndY - iDeltaEnd;
3633      if( iYe < 0 )
3634      {
3635        ruhXe = (UChar)std::max( (iMaxPos + iYe), 0 );
3636        ruhYe = 0;
3637        std::swap( ruhXs, ruhXe );
3638        std::swap( ruhYs, ruhYe );
3639        return;
3640      }
3641      else if( iYe > iMaxPos )
3642      {
3643        ruhXe = (UChar)std::max( (iMaxPos - (iYe - iMaxPos)), 0 );
3644        ruhYe = (UChar)iMaxPos;
3645        return;
3646      }
3647      else
3648      {
3649        ruhXe = (UChar)iMaxPos;
3650        ruhYe = (UChar)iYe;
3651        std::swap( ruhXs, ruhXe );
3652        std::swap( ruhYs, ruhYe );
3653        return;
3654      }
3655    }
3656  }
3657
3658  // case origin
3659  if( uiScaledStartPosX == 0 && uiScaledStartPosY == 0 )
3660  {
3661    if( iDeltaX*iDeltaY < 0 )
3662    {
3663      return;
3664    }
3665
3666    ruhXs = 0;
3667    ruhYs = 0;
3668
3669    if( iDeltaY == 0 )
3670    {
3671      ruhXe = (UChar)iMaxPos;
3672      ruhYe = 0;
3673      std::swap( ruhXs, ruhXe );
3674      std::swap( ruhYs, ruhYe );
3675      return;
3676    }
3677
3678    if( iDeltaX == 0 )
3679    {
3680      ruhXe = 0;
3681      ruhYe = (UChar)iMaxPos;
3682      return;
3683    }
3684
3685    Int iVirtualEndX = (Int)ruhXs + roftoi( (Double)iMaxPos * ((Double)iDeltaX / (Double)iDeltaY) );
3686
3687    if( iVirtualEndX > iMaxPos )
3688    {
3689      Int iYe = roftoi( (Double)((Int)iMaxPos - (Int)ruhXs) * ((Double)iDeltaY / (Double)iDeltaX) ) - iDeltaEnd;
3690      if( iYe < (Int)uiScaledBlockSize )
3691      {
3692        ruhXe = (UChar)(uiScaledBlockSize-1);
3693        ruhYe = (UChar)std::max( iYe, 0 );
3694        std::swap( ruhXs, ruhXe );
3695        std::swap( ruhYs, ruhYe );
3696        return;
3697      }
3698      else
3699      {
3700        ruhXe = (UChar)std::max( (iMaxPos - (iYe - iMaxPos)), 0 );
3701        ruhYe = (UChar)(uiScaledBlockSize-1);
3702        return;
3703      }
3704    }
3705    else
3706    {
3707      Int iXe = iVirtualEndX + iDeltaEnd;
3708      if( iXe < 0 )
3709      {
3710        ruhXe = 0;
3711        ruhYe = (UChar)std::max( (iMaxPos + iXe), 0 );
3712        return;
3713      }
3714      else if( iXe > iMaxPos )
3715      {
3716        ruhXe = (UChar)(uiScaledBlockSize-1);
3717        ruhYe = (UChar)std::max( (iMaxPos - (iXe - iMaxPos)), 0 );
3718        std::swap( ruhXs, ruhXe );
3719        std::swap( ruhYs, ruhYe );
3720        return;
3721      }
3722      else
3723      {
3724        ruhXe = (UChar)iXe;
3725        ruhYe = (UChar)(uiScaledBlockSize-1);
3726        return;
3727      }
3728    }
3729  }
3730}
3731#endif
3732
3733Void
3734TComPrediction::predIntraDepthAng(TComPattern* pcTComPattern, UInt uiDirMode, Pel* piPred, UInt uiStride, Int iWidth, Int iHeight )
3735{
3736  Pel*  pDst    = piPred;
3737  Int*  ptrSrc  = pcTComPattern->getAdiOrgBuf( iWidth, iHeight, m_piYuvExt );
3738  Int   sw      = ( iWidth<<1 ) + 1;
3739  xPredIntraAngDepth( ptrSrc+sw+1, sw, pDst, uiStride, iWidth, iHeight, uiDirMode );
3740}
3741
3742Int
3743TComPrediction::xGetDCDepth( Int* pSrc, Int iDelta, Int iBlkSize )
3744{
3745  Int iDC    = PDM_UNDEFINED_DEPTH;
3746  Int iSum   = 0;
3747  Int iNum   = 0;
3748  for( Int k = 0; k < iBlkSize; k++, pSrc += iDelta )
3749  {
3750    if( *pSrc != PDM_UNDEFINED_DEPTH )
3751    {
3752      iSum += *pSrc;
3753      iNum ++;
3754    }
3755  }
3756  if( iNum )
3757  {
3758    iDC = ( iSum + ( iNum >> 1 ) ) / iNum;
3759  }
3760  return iDC;
3761}
3762
3763Int
3764TComPrediction::xGetDCValDepth( Int iVal1, Int iVal2, Int iVal3, Int iVal4 )
3765{
3766  if     ( iVal1 != PDM_UNDEFINED_DEPTH )   return iVal1;
3767  else if( iVal2 != PDM_UNDEFINED_DEPTH )   return iVal2;
3768  else if( iVal3 != PDM_UNDEFINED_DEPTH )   return iVal3;
3769  return   iVal4;
3770}
3771
3772Void
3773TComPrediction::xPredIntraAngDepth( Int* pSrc, Int srcStride, Pel* pDst, Int dstStride, UInt width, UInt height, UInt dirMode )
3774{
3775  AOF( width == height );
3776  Int blkSize       = width;
3777  Int iDCAbove      = xGetDCDepth( pSrc - srcStride,                               1, blkSize );
3778  Int iDCAboveRight = xGetDCDepth( pSrc - srcStride + blkSize,                     1, blkSize );
3779  Int iDCLeft       = xGetDCDepth( pSrc -         1,                       srcStride, blkSize );
3780  Int iDCBelowLeft  = xGetDCDepth( pSrc -         1 + blkSize * srcStride, srcStride, blkSize );
3781  Int iWgt, iDC1, iDC2;
3782  if( dirMode < 2 ) // 1..2
3783  {
3784    iDC1  = xGetDCValDepth( iDCAbove, iDCAboveRight, iDCLeft,  iDCBelowLeft  );
3785    iDC2  = xGetDCValDepth( iDCLeft,  iDCBelowLeft,  iDCAbove, iDCAboveRight );
3786    iWgt  = 8;
3787  }
3788  else if( dirMode < 11 ) // 3..10
3789  {
3790    iDC1  = xGetDCValDepth( iDCLeft,  iDCBelowLeft,  iDCAbove, iDCAboveRight );
3791    iDC2  = xGetDCValDepth( iDCBelowLeft,  iDCLeft,  iDCAbove, iDCAboveRight );
3792    iWgt  = 6 + dirMode; 
3793  }
3794  else if( dirMode < 27 ) // 11..26
3795  {
3796    iDC1  = xGetDCValDepth( iDCAbove, iDCAboveRight, iDCLeft,  iDCBelowLeft  );
3797    iDC2  = xGetDCValDepth( iDCLeft,  iDCBelowLeft,  iDCAbove, iDCAboveRight );
3798    iWgt  = dirMode - 10;
3799  }
3800  else if( dirMode < 35 ) // 27..34
3801  {
3802    iDC1  = xGetDCValDepth( iDCAbove, iDCAboveRight, iDCLeft,  iDCBelowLeft  );
3803    iDC2  = xGetDCValDepth( iDCAboveRight, iDCAbove, iDCLeft,  iDCBelowLeft  );
3804    iWgt  = 42 - dirMode;
3805  }
3806  else // (wedgelet -> use simple DC prediction
3807  {
3808    iDC1  = xGetDCValDepth( iDCAbove, iDCAboveRight, iDCLeft,  iDCBelowLeft  );
3809    iDC2  = xGetDCValDepth( iDCLeft,  iDCBelowLeft,  iDCAbove, iDCAboveRight );
3810    iWgt  = 8;
3811  }
3812  Int iWgt2   = 16 - iWgt;
3813  Int iDCVal  = ( iWgt * iDC1 + iWgt2 * iDC2 + 8 ) >> 4;
3814
3815  // set depth
3816  for( Int iY = 0; iY < blkSize; iY++, pDst += dstStride )
3817  {
3818    for( Int iX = 0; iX < blkSize; iX++ )
3819    {
3820      pDst[ iX ] = iDCVal;
3821    }
3822  }
3823}
3824
3825//! \}
Note: See TracBrowser for help on using the repository browser.