source: 3DVCSoftware/branches/HTM-4.0.1-VSP-dev0/source/Lib/TLibCommon/TComPrediction.cpp @ 213

Last change on this file since 213 was 213, checked in by mitsubishi-htm, 12 years ago

A final release, as planned

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