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

Last change on this file since 1288 was 253, checked in by lg, 12 years ago

Integration of JCT3V-C0046

  • Property svn:eol-style set to native
File size: 99.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 LGE_ILLUCOMP_DEPTH_C0046
789    Bool bICFlag = pcCU->getICFlag(uiPartAddr) && (pcCU->getSlice()->getRefViewId( eRefPicList, iRefIdx ) != pcCU->getSlice()->getViewId());
790#endif
791#if DEPTH_MAP_GENERATION
792    xPredInterPrdDepthMap( pcCU, pcCU->getSlice()->getRefPic( eRefPicList, iRefIdx )->getPicYuvRec(), uiPartAddr, &cMv, iWidth, iHeight, 0, 0, rpcYuvPred, uiRShift, uiOffset
793#if LGE_ILLUCOMP_DEPTH_C0046
794        , bICFlag
795#endif
796        );
797#else
798    xPredInterPrdDepthMap( pcCU, pcCU->getSlice()->getRefPic( eRefPicList, iRefIdx )->getPicYuvRec(), uiPartAddr, &cMv, iWidth, iHeight, rpcYuvPred, uiRShift, uiOffset );
799#endif
800  }
801  else
802  {
803#endif
804#if LGE_ILLUCOMP_B0045
805    Bool bICFlag = pcCU->getICFlag(uiPartAddr) && (pcCU->getSlice()->getRefViewId( eRefPicList, iRefIdx ) != pcCU->getSlice()->getViewId());
806
807    xPredInterLumaBlk  ( pcCU, pcCU->getSlice()->getRefPic( eRefPicList, iRefIdx )->getPicYuvRec(), uiPartAddr, &cMv, iWidth, iHeight, rpcYuvPred, bi, bICFlag);
808#else
809  xPredInterLumaBlk  ( pcCU, pcCU->getSlice()->getRefPic( eRefPicList, iRefIdx )->getPicYuvRec(), uiPartAddr, &cMv, iWidth, iHeight, rpcYuvPred, bi );
810#endif
811#if HHI_FULL_PEL_DEPTH_MAP_MV_ACC
812  }
813#endif
814#if LGE_ILLUCOMP_B0045
815  Bool bICFlag = pcCU->getICFlag(uiPartAddr) && (pcCU->getSlice()->getRefViewId( eRefPicList, iRefIdx ) != pcCU->getSlice()->getViewId());
816
817  xPredInterChromaBlk( pcCU, pcCU->getSlice()->getRefPic( eRefPicList, iRefIdx )->getPicYuvRec(), uiPartAddr, &cMv, iWidth, iHeight, rpcYuvPred, bi, bICFlag );
818#else
819  xPredInterChromaBlk( pcCU, pcCU->getSlice()->getRefPic( eRefPicList, iRefIdx )->getPicYuvRec(), uiPartAddr, &cMv, iWidth, iHeight, rpcYuvPred, bi );
820#endif
821}
822
823
824#if DEPTH_MAP_GENERATION
825Void TComPrediction::xPredInterBi ( TComDataCU* pcCU, UInt uiPartAddr, Int iWidth, Int iHeight, UInt uiSubSampExpX, UInt uiSubSampExpY, TComYuv*& rpcYuvPred, Int iPartIdx, Bool bPrdDepthMap )
826#else
827Void TComPrediction::xPredInterBi ( TComDataCU* pcCU, UInt uiPartAddr, Int iWidth, Int iHeight, TComYuv*& rpcYuvPred, Int iPartIdx )
828#endif
829{
830  TComYuv* pcMbYuv;
831  Int      iRefIdx[2] = {-1, -1};
832
833  for ( Int iRefList = 0; iRefList < 2; iRefList++ )
834  {
835    RefPicList eRefPicList = (iRefList ? REF_PIC_LIST_1 : REF_PIC_LIST_0);
836    iRefIdx[iRefList] = pcCU->getCUMvField( eRefPicList )->getRefIdx( uiPartAddr );
837
838    if ( iRefIdx[iRefList] < 0 )
839    {
840      continue;
841    }
842
843    assert( iRefIdx[iRefList] < pcCU->getSlice()->getNumRefIdx(eRefPicList) );
844
845    pcMbYuv = &m_acYuvPred[iRefList];
846    if( pcCU->getCUMvField( REF_PIC_LIST_0 )->getRefIdx( uiPartAddr ) >= 0 && pcCU->getCUMvField( REF_PIC_LIST_1 )->getRefIdx( uiPartAddr ) >= 0 )
847    {
848#if DEPTH_MAP_GENERATION
849      xPredInterUni ( pcCU, uiPartAddr, iWidth, iHeight, eRefPicList, pcMbYuv, iPartIdx, bPrdDepthMap, uiSubSampExpX, uiSubSampExpY, true );
850#else
851      xPredInterUni ( pcCU, uiPartAddr, iWidth, iHeight, eRefPicList, pcMbYuv, iPartIdx, true );
852#endif
853    }
854    else
855    {
856      if ( pcCU->getSlice()->getPPS()->getWPBiPredIdc() )
857      {
858#if DEPTH_MAP_GENERATION
859        xPredInterUni ( pcCU, uiPartAddr, iWidth, iHeight, eRefPicList, pcMbYuv, iPartIdx, bPrdDepthMap, uiSubSampExpX, uiSubSampExpY, true );
860#else
861        xPredInterUni ( pcCU, uiPartAddr, iWidth, iHeight, eRefPicList, pcMbYuv, iPartIdx, true );
862#endif
863      }
864      else
865      {
866#if DEPTH_MAP_GENERATION
867        xPredInterUni ( pcCU, uiPartAddr, iWidth, iHeight, eRefPicList, pcMbYuv, iPartIdx, bPrdDepthMap, uiSubSampExpX, uiSubSampExpY, false );
868#else
869        xPredInterUni ( pcCU, uiPartAddr, iWidth, iHeight, eRefPicList, pcMbYuv, iPartIdx, false );
870#endif
871      }
872    }
873  }
874
875  if ( pcCU->getSlice()->getPPS()->getWPBiPredIdc() )
876  {
877    xWeightedPredictionBi( pcCU, &m_acYuvPred[0], &m_acYuvPred[1], iRefIdx[0], iRefIdx[1], uiPartAddr, iWidth, iHeight, rpcYuvPred );
878  }
879  else
880  {
881#if DEPTH_MAP_GENERATION
882    if ( bPrdDepthMap )
883    {
884      xWeightedAveragePdm( pcCU, &m_acYuvPred[0], &m_acYuvPred[1], iRefIdx[0], iRefIdx[1], uiPartAddr, iWidth, iHeight, rpcYuvPred, uiSubSampExpX, uiSubSampExpY );
885    }
886    else
887    {
888    xWeightedAverage( pcCU, &m_acYuvPred[0], &m_acYuvPred[1], iRefIdx[0], iRefIdx[1], uiPartAddr, iWidth, iHeight, rpcYuvPred );
889  }
890#else
891    xWeightedAverage( pcCU, &m_acYuvPred[0], &m_acYuvPred[1], iRefIdx[0], iRefIdx[1], uiPartAddr, iWidth, iHeight, rpcYuvPred );
892#endif
893  }
894}
895
896Void
897#if DEPTH_MAP_GENERATION
898TComPrediction::xPredInterPrdDepthMap( TComDataCU* pcCU, TComPicYuv* pcPicYuvRef, UInt uiPartAddr, TComMv* pcMv, Int iWidth, Int iHeight, UInt uiSubSampExpX, UInt uiSubSampExpY, TComYuv*& rpcYuv, UInt uiRShift, UInt uiOffset
899#if LGE_ILLUCOMP_DEPTH_C0046
900, Bool bICFlag
901#endif
902)
903#else
904TComPrediction::xPredInterPrdDepthMap( TComDataCU* pcCU, TComPicYuv* pcPicYuvRef, UInt uiPartAddr, TComMv* pcMv, Int iWidth, Int iHeight, TComYuv*& rpcYuv, UInt uiRShift, UInt uiOffset )
905#endif
906{
907#if DEPTH_MAP_GENERATION
908  Int     iShiftX     = 2 + uiSubSampExpX;
909  Int     iShiftY     = 2 + uiSubSampExpY;
910  Int     iAddX       = ( 1 << iShiftX ) >> 1;
911  Int     iAddY       = ( 1 << iShiftY ) >> 1;
912  Int     iHor        = ( pcMv->getHor() + iAddX ) >> iShiftX;
913  Int     iVer        = ( pcMv->getVer() + iAddY ) >> iShiftY;
914#if HHI_FULL_PEL_DEPTH_MAP_MV_ACC
915  if( pcCU->getSlice()->getSPS()->isDepth() )
916  {
917    iHor = pcMv->getHor();
918    iVer = pcMv->getVer();
919  }
920#endif
921  Int     iRefStride  = pcPicYuvRef->getStride();
922  Int     iDstStride  = rpcYuv->getStride();
923  Int     iRefOffset  = iHor + iVer * iRefStride;
924#else
925  Int     iFPelMask   = ~3;
926  Int     iRefStride  = pcPicYuvRef->getStride();
927  Int     iDstStride  = rpcYuv->getStride();
928  Int     iHor        = ( pcMv->getHor() + 2 ) & iFPelMask;
929  Int     iVer        = ( pcMv->getVer() + 2 ) & iFPelMask;
930#if HHI_FULL_PEL_DEPTH_MAP_MV_ACC
931  if( pcCU->getSlice()->getSPS()->isDepth() )
932  {
933    iHor = pcMv->getHor() * 4;
934    iVer = pcMv->getVer() * 4;
935}
936#endif
937#if !QC_MVHEVC_B0046
938  Int     ixFrac      = iHor & 0x3;
939  Int     iyFrac      = iVer & 0x3;
940#endif
941  Int     iRefOffset  = ( iHor >> 2 ) + ( iVer >> 2 ) * iRefStride;
942#endif
943
944  Pel*    piRefY      = pcPicYuvRef->getLumaAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() + uiPartAddr ) + iRefOffset;
945  Pel*    piDstY      = rpcYuv->getLumaAddr( uiPartAddr );
946
947  for( Int y = 0; y < iHeight; y++, piDstY += iDstStride, piRefY += iRefStride )
948  {
949    for( Int x = 0; x < iWidth; x++ )
950    {
951      piDstY[ x ] = ( piRefY[ x ] << uiRShift ) - uiOffset;
952    }
953  }
954
955#if LGE_ILLUCOMP_DEPTH_C0046
956  if(bICFlag)
957  {
958    Int a, b, iShift;
959    TComMv tTmpMV(pcMv->getHor()<<2, pcMv->getVer()<<2);
960
961    piRefY      = pcPicYuvRef->getLumaAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() + uiPartAddr ) + iRefOffset;
962    piDstY      = rpcYuv->getLumaAddr( uiPartAddr );
963
964    xGetLLSICPrediction(pcCU, &tTmpMV, pcPicYuvRef, a, b, iShift);
965
966    for( Int y = 0; y < iHeight; y++, piDstY += iDstStride, piRefY += iRefStride )
967    {
968      for( Int x = 0; x < iWidth; x++ )
969      {
970        if(uiOffset)
971        {
972          Int iIFshift = IF_INTERNAL_PREC - ( g_uiBitDepth + g_uiBitIncrement );
973          piDstY[ x ] = ( (a*piDstY[ x ]+a*IF_INTERNAL_OFFS) >> iShift ) + b*(1<<iIFshift) - IF_INTERNAL_OFFS;
974        }
975        else
976          piDstY[ x ] = Clip( ( (a*piDstY[ x ]) >> iShift ) + b );
977      }
978    }
979  }
980#endif
981}
982
983
984/**
985 * \brief Generate motion-compensated luma block
986 *
987 * \param cu       Pointer to current CU
988 * \param refPic   Pointer to reference picture
989 * \param partAddr Address of block within CU
990 * \param mv       Motion vector
991 * \param width    Width of block
992 * \param height   Height of block
993 * \param dstPic   Pointer to destination picture
994 * \param bi       Flag indicating whether bipred is used
995 */
996#if LGE_ILLUCOMP_B0045
997Void TComPrediction::xPredInterLumaBlk( TComDataCU *cu, TComPicYuv *refPic, UInt partAddr, TComMv *mv, Int width, Int height, TComYuv *&dstPic, Bool bi, Bool bICFlag)
998#else
999Void TComPrediction::xPredInterLumaBlk( TComDataCU *cu, TComPicYuv *refPic, UInt partAddr, TComMv *mv, Int width, Int height, TComYuv *&dstPic, Bool bi )
1000#endif
1001{
1002  Int refStride = refPic->getStride(); 
1003  Int refOffset = ( mv->getHor() >> 2 ) + ( mv->getVer() >> 2 ) * refStride;
1004  Pel *ref      = refPic->getLumaAddr( cu->getAddr(), cu->getZorderIdxInCU() + partAddr ) + refOffset;
1005 
1006  Int dstStride = dstPic->getStride();
1007  Pel *dst      = dstPic->getLumaAddr( partAddr );
1008 
1009  Int xFrac = mv->getHor() & 0x3;
1010  Int yFrac = mv->getVer() & 0x3;
1011
1012#if HHI_FULL_PEL_DEPTH_MAP_MV_ACC
1013  assert( ! cu->getSlice()->getIsDepth() || ( xFrac == 0 && yFrac == 0 ) );
1014#endif
1015
1016  if ( yFrac == 0 )
1017  {
1018    m_if.filterHorLuma( ref, refStride, dst, dstStride, width, height, xFrac,       !bi );
1019  }
1020  else if ( xFrac == 0 )
1021  {
1022    m_if.filterVerLuma( ref, refStride, dst, dstStride, width, height, yFrac, true, !bi );
1023  }
1024  else
1025  {
1026    Int tmpStride = m_filteredBlockTmp[0].getStride();
1027    Short *tmp    = m_filteredBlockTmp[0].getLumaAddr();
1028
1029    Int filterSize = NTAPS_LUMA;
1030    Int halfFilterSize = ( filterSize >> 1 );
1031
1032    m_if.filterHorLuma(ref - (halfFilterSize-1)*refStride, refStride, tmp, tmpStride, width, height+filterSize-1, xFrac, false     );
1033    m_if.filterVerLuma(tmp + (halfFilterSize-1)*tmpStride, tmpStride, dst, dstStride, width, height,              yFrac, false, !bi);   
1034  }
1035
1036#if LGE_ILLUCOMP_B0045
1037  if(bICFlag)
1038  {
1039    Int a, b, iShift, i, j;
1040
1041    xGetLLSICPrediction(cu, mv, refPic, a, b, iShift);
1042
1043    for (i = 0; i < height; i++)
1044    {
1045      for (j = 0; j < width; j++)
1046      {
1047        if(bi)
1048        {
1049          Int iIFshift = IF_INTERNAL_PREC - ( g_uiBitDepth + g_uiBitIncrement );
1050          dst[j] = ( (a*dst[j]+a*IF_INTERNAL_OFFS) >> iShift ) + b*(1<<iIFshift) - IF_INTERNAL_OFFS;
1051        }
1052        else
1053          dst[j] = Clip( ( (a*dst[j]) >> iShift ) + b );
1054      }
1055      dst += dstStride;
1056    }
1057  }
1058#endif
1059}
1060
1061/**
1062 * \brief Generate motion-compensated chroma block
1063 *
1064 * \param cu       Pointer to current CU
1065 * \param refPic   Pointer to reference picture
1066 * \param partAddr Address of block within CU
1067 * \param mv       Motion vector
1068 * \param width    Width of block
1069 * \param height   Height of block
1070 * \param dstPic   Pointer to destination picture
1071 * \param bi       Flag indicating whether bipred is used
1072 */
1073#if LGE_ILLUCOMP_B0045
1074Void TComPrediction::xPredInterChromaBlk( TComDataCU *cu, TComPicYuv *refPic, UInt partAddr, TComMv *mv, Int width, Int height, TComYuv *&dstPic, Bool bi, Bool bICFlag )
1075#else
1076Void TComPrediction::xPredInterChromaBlk( TComDataCU *cu, TComPicYuv *refPic, UInt partAddr, TComMv *mv, Int width, Int height, TComYuv *&dstPic, Bool bi )
1077#endif
1078{
1079  Int     refStride  = refPic->getCStride();
1080  Int     dstStride  = dstPic->getCStride();
1081 
1082  Int     refOffset  = (mv->getHor() >> 3) + (mv->getVer() >> 3) * refStride;
1083 
1084  Pel*    refCb     = refPic->getCbAddr( cu->getAddr(), cu->getZorderIdxInCU() + partAddr ) + refOffset;
1085  Pel*    refCr     = refPic->getCrAddr( cu->getAddr(), cu->getZorderIdxInCU() + partAddr ) + refOffset;
1086 
1087  Pel* dstCb = dstPic->getCbAddr( partAddr );
1088  Pel* dstCr = dstPic->getCrAddr( partAddr );
1089 
1090  Int     xFrac  = mv->getHor() & 0x7;
1091  Int     yFrac  = mv->getVer() & 0x7;
1092  UInt    cxWidth  = width  >> 1;
1093  UInt    cxHeight = height >> 1;
1094 
1095  Int     extStride = m_filteredBlockTmp[0].getStride();
1096  Short*  extY      = m_filteredBlockTmp[0].getLumaAddr();
1097 
1098  Int filterSize = NTAPS_CHROMA;
1099 
1100  Int halfFilterSize = (filterSize>>1);
1101 
1102  if ( yFrac == 0 )
1103  {
1104    m_if.filterHorChroma(refCb, refStride, dstCb,  dstStride, cxWidth, cxHeight, xFrac, !bi);   
1105    m_if.filterHorChroma(refCr, refStride, dstCr,  dstStride, cxWidth, cxHeight, xFrac, !bi);   
1106  }
1107  else if ( xFrac == 0 )
1108  {
1109    m_if.filterVerChroma(refCb, refStride, dstCb, dstStride, cxWidth, cxHeight, yFrac, true, !bi);   
1110    m_if.filterVerChroma(refCr, refStride, dstCr, dstStride, cxWidth, cxHeight, yFrac, true, !bi);   
1111  }
1112  else
1113  {
1114    m_if.filterHorChroma(refCb - (halfFilterSize-1)*refStride, refStride, extY,  extStride, cxWidth, cxHeight+filterSize-1, xFrac, false);
1115    m_if.filterVerChroma(extY  + (halfFilterSize-1)*extStride, extStride, dstCb, dstStride, cxWidth, cxHeight  , yFrac, false, !bi);
1116   
1117    m_if.filterHorChroma(refCr - (halfFilterSize-1)*refStride, refStride, extY,  extStride, cxWidth, cxHeight+filterSize-1, xFrac, false);
1118    m_if.filterVerChroma(extY  + (halfFilterSize-1)*extStride, extStride, dstCr, dstStride, cxWidth, cxHeight  , yFrac, false, !bi);   
1119  }
1120#if LGE_ILLUCOMP_B0045
1121  if(bICFlag)
1122  {
1123    Int a, b, iShift, i, j;
1124    xGetLLSICPredictionChroma(cu, mv, refPic, a, b, iShift, 0); // Cb
1125    for (i = 0; i < cxHeight; i++)
1126    {
1127      for (j = 0; j < cxWidth; j++)
1128      {
1129        if(bi)
1130        {
1131          Int iIFshift = IF_INTERNAL_PREC - ( g_uiBitDepth + g_uiBitIncrement );
1132          dstCb[j] = ( (a*dstCb[j]+a*IF_INTERNAL_OFFS) >> iShift ) + b*(1<<iIFshift) - IF_INTERNAL_OFFS;
1133        }
1134        else
1135          dstCb[j] = Clip3(0, 255, ((a*dstCb[j])>>iShift)+b);
1136      }
1137      dstCb += dstStride;
1138    }
1139
1140    xGetLLSICPredictionChroma(cu, mv, refPic, a, b, iShift, 1); // Cr
1141    for (i = 0; i < cxHeight; i++)
1142    {
1143      for (j = 0; j < cxWidth; j++)
1144      {
1145        if(bi)
1146        {
1147          Int iIFshift = IF_INTERNAL_PREC - ( g_uiBitDepth + g_uiBitIncrement );
1148          dstCr[j] = ( (a*dstCr[j]+a*IF_INTERNAL_OFFS) >> iShift ) + b*(1<<iIFshift) - IF_INTERNAL_OFFS;
1149        }
1150        else
1151          dstCr[j] = Clip3(0, 255, ((a*dstCr[j])>>iShift)+b);
1152      }
1153      dstCr += dstStride;
1154    }
1155  }
1156#endif
1157}
1158
1159#if DEPTH_MAP_GENERATION
1160Void TComPrediction::xWeightedAveragePdm( TComDataCU* pcCU, TComYuv* pcYuvSrc0, TComYuv* pcYuvSrc1, Int iRefIdx0, Int iRefIdx1, UInt uiPartIdx, Int iWidth, Int iHeight, TComYuv*& rpcYuvDst, UInt uiSubSampExpX, UInt uiSubSampExpY )
1161{
1162  if( iRefIdx0 >= 0 && iRefIdx1 >= 0 )
1163  {
1164    rpcYuvDst->addAvgPdm( pcYuvSrc0, pcYuvSrc1, uiPartIdx, iWidth, iHeight, uiSubSampExpX, uiSubSampExpY );
1165  }
1166  else if ( iRefIdx0 >= 0 && iRefIdx1 <  0 )
1167  {
1168    pcYuvSrc0->copyPartToPartYuvPdm( rpcYuvDst, uiPartIdx, iWidth, iHeight, uiSubSampExpX, uiSubSampExpY );
1169  }
1170  else if ( iRefIdx0 <  0 && iRefIdx1 >= 0 )
1171  {
1172    pcYuvSrc1->copyPartToPartYuvPdm( rpcYuvDst, uiPartIdx, iWidth, iHeight, uiSubSampExpX, uiSubSampExpY );
1173  }
1174  else
1175  {
1176    assert (0);
1177  }
1178}
1179#endif
1180
1181Void TComPrediction::xWeightedAverage( TComDataCU* pcCU, TComYuv* pcYuvSrc0, TComYuv* pcYuvSrc1, Int iRefIdx0, Int iRefIdx1, UInt uiPartIdx, Int iWidth, Int iHeight, TComYuv*& rpcYuvDst )
1182{
1183  if( iRefIdx0 >= 0 && iRefIdx1 >= 0 )
1184  {
1185    rpcYuvDst->addAvg( pcYuvSrc0, pcYuvSrc1, uiPartIdx, iWidth, iHeight );
1186  }
1187  else if ( iRefIdx0 >= 0 && iRefIdx1 <  0 )
1188  {
1189    pcYuvSrc0->copyPartToPartYuv( rpcYuvDst, uiPartIdx, iWidth, iHeight );
1190  }
1191  else if ( iRefIdx0 <  0 && iRefIdx1 >= 0 )
1192  {
1193    pcYuvSrc1->copyPartToPartYuv( rpcYuvDst, uiPartIdx, iWidth, iHeight );
1194  }
1195}
1196
1197// AMVP
1198Void TComPrediction::getMvPredAMVP( TComDataCU* pcCU, UInt uiPartIdx, UInt uiPartAddr, RefPicList eRefPicList, Int iRefIdx, TComMv& rcMvPred )
1199{
1200  AMVPInfo* pcAMVPInfo = pcCU->getCUMvField(eRefPicList)->getAMVPInfo();
1201
1202  if( pcCU->getAMVPMode(uiPartAddr) == AM_NONE || (pcAMVPInfo->iN <= 1 && pcCU->getAMVPMode(uiPartAddr) == AM_EXPL) )
1203  {
1204    rcMvPred = pcAMVPInfo->m_acMvCand[0];
1205
1206    pcCU->setMVPIdxSubParts( 0, eRefPicList, uiPartAddr, uiPartIdx, pcCU->getDepth(uiPartAddr));
1207    pcCU->setMVPNumSubParts( pcAMVPInfo->iN, eRefPicList, uiPartAddr, uiPartIdx, pcCU->getDepth(uiPartAddr));
1208    return;
1209  }
1210
1211  assert(pcCU->getMVPIdx(eRefPicList,uiPartAddr) >= 0);
1212  rcMvPred = pcAMVPInfo->m_acMvCand[pcCU->getMVPIdx(eRefPicList,uiPartAddr)];
1213  return;
1214}
1215
1216/** Function for deriving planar intra prediction.
1217 * \param pSrc pointer to reconstructed sample array
1218 * \param srcStride the stride of the reconstructed sample array
1219 * \param rpDst reference to pointer for the prediction sample array
1220 * \param dstStride the stride of the prediction sample array
1221 * \param width the width of the block
1222 * \param height the height of the block
1223 *
1224 * This function derives the prediction samples for planar mode (intra coding).
1225 */
1226Void TComPrediction::xPredIntraPlanar( Int* pSrc, Int srcStride, Pel* rpDst, Int dstStride, UInt width, UInt height )
1227{
1228  assert(width == height);
1229
1230  Int k, l, bottomLeft, topRight;
1231  Int horPred;
1232  Int leftColumn[MAX_CU_SIZE], topRow[MAX_CU_SIZE], bottomRow[MAX_CU_SIZE], rightColumn[MAX_CU_SIZE];
1233  UInt blkSize = width;
1234  UInt offset2D = width;
1235  UInt shift1D = g_aucConvertToBit[ width ] + 2;
1236  UInt shift2D = shift1D + 1;
1237
1238  // Get left and above reference column and row
1239  for(k=0;k<blkSize+1;k++)
1240  {
1241    topRow[k] = pSrc[k-srcStride];
1242    leftColumn[k] = pSrc[k*srcStride-1];
1243  }
1244
1245  // Prepare intermediate variables used in interpolation
1246  bottomLeft = leftColumn[blkSize];
1247  topRight   = topRow[blkSize];
1248  for (k=0;k<blkSize;k++)
1249  {
1250    bottomRow[k]   = bottomLeft - topRow[k];
1251    rightColumn[k] = topRight   - leftColumn[k];
1252    topRow[k]      <<= shift1D;
1253    leftColumn[k]  <<= shift1D;
1254  }
1255
1256  // Generate prediction signal
1257  for (k=0;k<blkSize;k++)
1258  {
1259    horPred = leftColumn[k] + offset2D;
1260    for (l=0;l<blkSize;l++)
1261    {
1262      horPred += rightColumn[k];
1263      topRow[l] += bottomRow[l];
1264      rpDst[k*dstStride+l] = ( (horPred + topRow[l]) >> shift2D );
1265    }
1266  }
1267}
1268
1269/** Function for deriving chroma LM intra prediction.
1270 * \param pcPattern pointer to neighbouring pixel access pattern
1271 * \param piSrc pointer to reconstructed chroma sample array
1272 * \param pPred pointer for the prediction sample array
1273 * \param uiPredStride the stride of the prediction sample array
1274 * \param uiCWidth the width of the chroma block
1275 * \param uiCHeight the height of the chroma block
1276 * \param uiChromaId boolean indication of chroma component
1277 *
1278 * This function derives the prediction samples for chroma LM mode (chroma intra coding)
1279 */
1280Void TComPrediction::predLMIntraChroma( TComPattern* pcPattern, Int* piSrc, Pel* pPred, UInt uiPredStride, UInt uiCWidth, UInt uiCHeight, UInt uiChromaId )
1281{
1282  UInt uiWidth  = 2 * uiCWidth;
1283
1284  xGetLLSPrediction( pcPattern, piSrc+uiWidth+2, uiWidth+1, pPred, uiPredStride, uiCWidth, uiCHeight, 1 ); 
1285}
1286
1287/** Function for deriving downsampled luma sample of current chroma block and its above, left causal pixel
1288 * \param pcPattern pointer to neighbouring pixel access pattern
1289 * \param uiCWidth the width of the chroma block
1290 * \param uiCHeight the height of the chroma block
1291 *
1292 * This function derives downsampled luma sample of current chroma block and its above, left causal pixel
1293 */
1294Void TComPrediction::getLumaRecPixels( TComPattern* pcPattern, UInt uiCWidth, UInt uiCHeight )
1295{
1296  UInt uiWidth  = 2 * uiCWidth;
1297  UInt uiHeight = 2 * uiCHeight; 
1298
1299  Pel* pRecSrc = pcPattern->getROIY();
1300  Pel* pDst0 = m_pLumaRecBuffer + m_iLumaRecStride + 1;
1301
1302  Int iRecSrcStride = pcPattern->getPatternLStride();
1303  Int iRecSrcStride2 = iRecSrcStride << 1;
1304  Int iDstStride = m_iLumaRecStride;
1305  Int iSrcStride = ( max( uiWidth, uiHeight ) << 1 ) + 1;
1306
1307  Int* ptrSrc = pcPattern->getAdiOrgBuf( uiWidth, uiHeight, m_piYuvExt );
1308
1309  // initial pointers
1310  Pel* pDst = pDst0 - 1 - iDstStride; 
1311  Int* piSrc = ptrSrc;
1312
1313  // top left corner downsampled from ADI buffer
1314  // don't need this point
1315
1316  // top row downsampled from ADI buffer
1317  pDst++;     
1318  piSrc ++;
1319  for (Int i = 0; i < uiCWidth; i++)
1320  {
1321    pDst[i] = ((piSrc[2*i] * 2 ) + piSrc[2*i - 1] + piSrc[2*i + 1] + 2) >> 2;
1322  }
1323
1324  // left column downsampled from ADI buffer
1325  pDst = pDst0 - 1; 
1326  piSrc = ptrSrc + iSrcStride;
1327  for (Int j = 0; j < uiCHeight; j++)
1328  {
1329    pDst[0] = ( piSrc[0] + piSrc[iSrcStride] ) >> 1;
1330    piSrc += iSrcStride << 1; 
1331    pDst += iDstStride;   
1332  }
1333
1334  // inner part from reconstructed picture buffer
1335  for( Int j = 0; j < uiCHeight; j++ )
1336  {
1337    for (Int i = 0; i < uiCWidth; i++)
1338    {
1339      pDst0[i] = (pRecSrc[2*i] + pRecSrc[2*i + iRecSrcStride]) >> 1;
1340    }
1341
1342    pDst0 += iDstStride;
1343    pRecSrc += iRecSrcStride2;
1344  }
1345}
1346
1347/** Function for deriving the positon of first non-zero binary bit of a value
1348 * \param x input value
1349 *
1350 * This function derives the positon of first non-zero binary bit of a value
1351 */
1352Int GetMSB( UInt x )
1353{
1354  Int iMSB = 0, bits = ( sizeof( Int ) << 3 ), y = 1;
1355
1356  while( x > 1 )
1357  {
1358    bits >>= 1;
1359    y = x >> bits;
1360
1361    if( y )
1362    {
1363      x = y;
1364      iMSB += bits;
1365    }
1366  }
1367
1368  iMSB+=y;
1369
1370  return iMSB;
1371}
1372
1373/** Function for counting leading number of zeros/ones
1374 * \param x input value
1375 \ This function counts leading number of zeros for positive numbers and
1376 \ leading number of ones for negative numbers. This can be implemented in
1377 \ single instructure cycle on many processors.
1378 */
1379
1380Short CountLeadingZerosOnes (Short x)
1381{
1382  Short clz;
1383  Short i;
1384
1385  if(x == 0)
1386  {
1387    clz = 0;
1388  }
1389  else
1390  {
1391    if (x == -1)
1392    {
1393      clz = 15;
1394    }
1395    else
1396    {
1397      if(x < 0)
1398      {
1399        x = ~x;
1400      }
1401      clz = 15;
1402      for(i = 0;i < 15;++i)
1403      {
1404        if(x) 
1405        {
1406          clz --;
1407        }
1408        x = x >> 1;
1409      }
1410    }
1411  }
1412  return clz;
1413}
1414
1415/** Function for deriving LM intra prediction.
1416 * \param pcPattern pointer to neighbouring pixel access pattern
1417 * \param pSrc0 pointer to reconstructed chroma sample array
1418 * \param iSrcStride the stride of reconstructed chroma sample array
1419 * \param pDst0 reference to pointer for the prediction sample array
1420 * \param iDstStride the stride of the prediction sample array
1421 * \param uiWidth the width of the chroma block
1422 * \param uiHeight the height of the chroma block
1423 * \param uiExt0 line number of neiggboirng pixels for calculating LM model parameter, default value is 1
1424 *
1425 * This function derives the prediction samples for chroma LM mode (chroma intra coding)
1426 */
1427Void TComPrediction::xGetLLSPrediction( TComPattern* pcPattern, Int* pSrc0, Int iSrcStride, Pel* pDst0, Int iDstStride, UInt uiWidth, UInt uiHeight, UInt uiExt0 )
1428{
1429
1430  Pel  *pDst, *pLuma;
1431  Int  *pSrc;
1432
1433  Int  iLumaStride = m_iLumaRecStride;
1434  Pel* pLuma0 = m_pLumaRecBuffer + uiExt0 * iLumaStride + uiExt0;
1435
1436  Int i, j, iCountShift = 0;
1437
1438  UInt uiExt = uiExt0;
1439
1440  // LLS parameters estimation -->
1441
1442  Int x = 0, y = 0, xx = 0, xy = 0;
1443
1444  pSrc  = pSrc0  - iSrcStride;
1445  pLuma = pLuma0 - iLumaStride;
1446
1447  for( j = 0; j < uiWidth; j++ )
1448  {
1449    x += pLuma[j];
1450    y += pSrc[j];
1451    xx += pLuma[j] * pLuma[j];
1452    xy += pLuma[j] * pSrc[j];
1453  }
1454  iCountShift += g_aucConvertToBit[ uiWidth ] + 2;
1455
1456  pSrc  = pSrc0 - uiExt;
1457  pLuma = pLuma0 - uiExt;
1458
1459  for( i = 0; i < uiHeight; i++ )
1460  {
1461    x += pLuma[0];
1462    y += pSrc[0];
1463    xx += pLuma[0] * pLuma[0];
1464    xy += pLuma[0] * pSrc[0];
1465
1466    pSrc  += iSrcStride;
1467    pLuma += iLumaStride;
1468  }
1469  iCountShift += iCountShift > 0 ? 1 : ( g_aucConvertToBit[ uiWidth ] + 2 );
1470
1471  Int iTempShift = ( g_uiBitDepth + g_uiBitIncrement ) + g_aucConvertToBit[ uiWidth ] + 3 - 15;
1472
1473  if(iTempShift > 0)
1474  {
1475    x  = ( x +  ( 1 << ( iTempShift - 1 ) ) ) >> iTempShift;
1476    y  = ( y +  ( 1 << ( iTempShift - 1 ) ) ) >> iTempShift;
1477    xx = ( xx + ( 1 << ( iTempShift - 1 ) ) ) >> iTempShift;
1478    xy = ( xy + ( 1 << ( iTempShift - 1 ) ) ) >> iTempShift;
1479    iCountShift -= iTempShift;
1480  }
1481
1482  Int a, b, iShift = 13;
1483
1484  if( iCountShift == 0 )
1485  {
1486    a = 0;
1487    b = 1 << (g_uiBitDepth + g_uiBitIncrement - 1);
1488    iShift = 0;
1489  }
1490  else
1491  {
1492    Int a1 = ( xy << iCountShift ) - y * x;
1493    Int a2 = ( xx << iCountShift ) - x * x;             
1494
1495    {
1496      const Int iShiftA2 = 6;
1497      const Int iShiftA1 = 15;
1498      const Int iAccuracyShift = 15;
1499
1500      Int iScaleShiftA2 = 0;
1501      Int iScaleShiftA1 = 0;
1502      Int a1s = a1;
1503      Int a2s = a2;
1504
1505      iScaleShiftA1 = GetMSB( abs( a1 ) ) - iShiftA1;
1506      iScaleShiftA2 = GetMSB( abs( a2 ) ) - iShiftA2; 
1507
1508      if( iScaleShiftA1 < 0 )
1509      {
1510        iScaleShiftA1 = 0;
1511      }
1512     
1513      if( iScaleShiftA2 < 0 )
1514      {
1515        iScaleShiftA2 = 0;
1516      }
1517     
1518      Int iScaleShiftA = iScaleShiftA2 + iAccuracyShift - iShift - iScaleShiftA1;
1519
1520      a2s = a2 >> iScaleShiftA2;
1521
1522      a1s = a1 >> iScaleShiftA1;
1523
1524      if (a2s >= 1)
1525      {
1526        a = a1s * m_uiaShift[ a2s - 1];
1527      }
1528      else
1529      {
1530        a = 0;
1531      }
1532     
1533      if( iScaleShiftA < 0 )
1534      {
1535        a = a << -iScaleShiftA;
1536      }
1537      else
1538      {
1539        a = a >> iScaleShiftA;
1540      }
1541     
1542       a = Clip3(-( 1 << 15 ), ( 1 << 15 ) - 1, a); 
1543     
1544      Int minA = -(1 << (6));
1545      Int maxA = (1 << 6) - 1;
1546      if( a <= maxA && a >= minA )
1547      {
1548        // do nothing
1549      }
1550      else
1551      {
1552        Short n = CountLeadingZerosOnes(a);
1553        a = a >> (9-n);
1554        iShift -= (9-n);
1555      }
1556
1557      b = (  y - ( ( a * x ) >> iShift ) + ( 1 << ( iCountShift - 1 ) ) ) >> iCountShift;
1558    }
1559  }   
1560
1561  // <-- end of LLS parameters estimation
1562
1563  // get prediction -->
1564  uiExt = uiExt0;
1565  pLuma = pLuma0;
1566  pDst = pDst0;
1567
1568  for( i = 0; i < uiHeight; i++ )
1569  {
1570    for( j = 0; j < uiWidth; j++ )
1571    {
1572      pDst[j] = Clip( ( ( a * pLuma[j] ) >> iShift ) + b );
1573    }
1574   
1575    pDst  += iDstStride;
1576    pLuma += iLumaStride;
1577  }
1578  // <-- end of get prediction
1579
1580}
1581
1582
1583#if LGE_ILLUCOMP_B0045
1584/** Function for deriving LM illumination compensation.
1585 */
1586Void TComPrediction::xGetLLSICPrediction(TComDataCU* pcCU, TComMv *pMv, TComPicYuv *pRefPic, Int &a, Int &b, Int &iShift)
1587{
1588  TComPicYuv *pRecPic = pcCU->getPic()->getPicYuvRec();
1589  Pel *pRec, *pRef;
1590  UInt uiWidth, uiHeight, uiTmpPartIdx;
1591  Int iRecStride = pRecPic->getStride(), iRefStride = pRefPic->getStride();
1592  Int iCUPelX, iCUPelY, iRefX, iRefY, iRefOffset;
1593
1594  iCUPelX = pcCU->getCUPelX() + g_auiRasterToPelX[g_auiZscanToRaster[pcCU->getZorderIdxInCU()]];
1595  iCUPelY = pcCU->getCUPelY() + g_auiRasterToPelY[g_auiZscanToRaster[pcCU->getZorderIdxInCU()]];
1596  iRefX   = iCUPelX + (pMv->getHor() >> 2);
1597  iRefY   = iCUPelY + (pMv->getVer() >> 2);
1598  uiWidth = pcCU->getWidth(0);
1599  uiHeight = pcCU->getHeight(0);
1600
1601  Int i, j, iCountShift = 0;
1602
1603  // LLS parameters estimation -->
1604
1605  Int x = 0, y = 0, xx = 0, xy = 0;
1606
1607  if(pcCU->getPUAbove(uiTmpPartIdx, pcCU->getZorderIdxInCU()) && iCUPelY > 0 && iRefY > 0)
1608  {
1609    iRefOffset = ( pMv->getHor() >> 2 ) + ( pMv->getVer() >> 2 ) * iRefStride - iRefStride;
1610    pRef = pRefPic->getLumaAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() ) + iRefOffset;
1611    pRec = pRecPic->getLumaAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() ) - iRecStride;
1612
1613    for( j = 0; j < uiWidth; j++ )
1614    {
1615      x += pRef[j];
1616      y += pRec[j];
1617      xx += pRef[j] * pRef[j];
1618      xy += pRef[j] * pRec[j];
1619    }
1620    iCountShift += g_aucConvertToBit[ uiWidth ] + 2;
1621  }
1622
1623
1624  if(pcCU->getPULeft(uiTmpPartIdx, pcCU->getZorderIdxInCU()) && iCUPelX > 0 && iRefX > 0)
1625  {
1626    iRefOffset = ( pMv->getHor() >> 2 ) + ( pMv->getVer() >> 2 ) * iRefStride - 1;
1627    pRef = pRefPic->getLumaAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() ) + iRefOffset;
1628    pRec = pRecPic->getLumaAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() ) - 1;
1629
1630    for( i = 0; i < uiHeight; i++ )
1631    {
1632      x += pRef[0];
1633      y += pRec[0];
1634      xx += pRef[0] * pRef[0];
1635      xy += pRef[0] * pRec[0];
1636
1637      pRef += iRefStride;
1638      pRec += iRecStride;
1639    }
1640    iCountShift += iCountShift > 0 ? 1 : ( g_aucConvertToBit[ uiWidth ] + 2 );
1641  }
1642
1643  Int iTempShift = ( g_uiBitDepth + g_uiBitIncrement ) + g_aucConvertToBit[ uiWidth ] + 3 - 15;
1644
1645  if(iTempShift > 0)
1646  {
1647    x  = ( x +  ( 1 << ( iTempShift - 1 ) ) ) >> iTempShift;
1648    y  = ( y +  ( 1 << ( iTempShift - 1 ) ) ) >> iTempShift;
1649    xx = ( xx + ( 1 << ( iTempShift - 1 ) ) ) >> iTempShift;
1650    xy = ( xy + ( 1 << ( iTempShift - 1 ) ) ) >> iTempShift;
1651    iCountShift -= iTempShift;
1652  }
1653
1654  iShift = 13;
1655
1656  if( iCountShift == 0 )
1657  {
1658    a = 1;
1659    b = 0;
1660    iShift = 0;
1661  }
1662  else
1663  {
1664    Int a1 = ( xy << iCountShift ) - y * x;
1665    Int a2 = ( xx << iCountShift ) - x * x;             
1666
1667    {
1668      const Int iShiftA2 = 6;
1669      const Int iShiftA1 = 15;
1670      const Int iAccuracyShift = 15;
1671
1672      Int iScaleShiftA2 = 0;
1673      Int iScaleShiftA1 = 0;
1674      Int a1s = a1;
1675      Int a2s = a2;
1676
1677      iScaleShiftA1 = GetMSB( abs( a1 ) ) - iShiftA1;
1678      iScaleShiftA2 = GetMSB( abs( a2 ) ) - iShiftA2; 
1679
1680      if( iScaleShiftA1 < 0 )
1681      {
1682        iScaleShiftA1 = 0;
1683      }
1684
1685      if( iScaleShiftA2 < 0 )
1686      {
1687        iScaleShiftA2 = 0;
1688      }
1689
1690      Int iScaleShiftA = iScaleShiftA2 + iAccuracyShift - iShift - iScaleShiftA1;
1691
1692      a2s = a2 >> iScaleShiftA2;
1693
1694      a1s = a1 >> iScaleShiftA1;
1695
1696      if (a2s >= 1)
1697      {
1698        a = a1s * m_uiaShift[ a2s - 1];
1699      }
1700      else
1701      {
1702        a = 0;
1703      }
1704
1705      if( iScaleShiftA < 0 )
1706      {
1707        a = a << -iScaleShiftA;
1708      }
1709      else
1710      {
1711        a = a >> iScaleShiftA;
1712      }
1713
1714      a = Clip3(-( 1 << 15 ), ( 1 << 15 ) - 1, a); 
1715
1716      Int minA = -(1 << (6));
1717      Int maxA = (1 << 6) - 1;
1718      if( a <= maxA && a >= minA )
1719      {
1720        // do nothing
1721      }
1722      else
1723      {
1724        Short n = CountLeadingZerosOnes(a);
1725        a = a >> (9-n);
1726        iShift -= (9-n);
1727      }
1728
1729      b = (  y - ( ( a * x ) >> iShift ) + ( 1 << ( iCountShift - 1 ) ) ) >> iCountShift;
1730    }
1731  }   
1732}
1733
1734Void TComPrediction::xGetLLSICPredictionChroma(TComDataCU* pcCU, TComMv *pMv, TComPicYuv *pRefPic, Int &a, Int &b, Int &iShift, Int iChromaId)
1735{
1736  TComPicYuv *pRecPic = pcCU->getPic()->getPicYuvRec();
1737  Pel *pRec = NULL, *pRef = NULL;
1738  UInt uiWidth, uiHeight, uiTmpPartIdx;
1739  Int iRecStride = pRecPic->getCStride(), iRefStride = pRefPic->getCStride();
1740  Int iCUPelX, iCUPelY, iRefX, iRefY, iRefOffset;
1741
1742  iCUPelX = pcCU->getCUPelX() + g_auiRasterToPelX[g_auiZscanToRaster[pcCU->getZorderIdxInCU()]];
1743  iCUPelY = pcCU->getCUPelY() + g_auiRasterToPelY[g_auiZscanToRaster[pcCU->getZorderIdxInCU()]];
1744#if FIX_LGE_ILLUCOMP_B0045
1745  iRefX   = iCUPelX + (pMv->getHor() >> 2);
1746  iRefY   = iCUPelY + (pMv->getVer() >> 2);
1747#else
1748  iRefX   = iCUPelX + (pMv->getHor() >> 3);
1749  iRefY   = iCUPelY + (pMv->getVer() >> 3);
1750#endif
1751  uiWidth = pcCU->getWidth(0) >> 1;
1752  uiHeight = pcCU->getHeight(0) >> 1;
1753
1754  Int i, j, iCountShift = 0;
1755
1756  // LLS parameters estimation -->
1757
1758  Int x = 0, y = 0, xx = 0, xy = 0;
1759
1760  if(pcCU->getPUAbove(uiTmpPartIdx, pcCU->getZorderIdxInCU()) && iCUPelY > 0 && iRefY > 0)
1761  {
1762    iRefOffset = ( pMv->getHor() >> 3 ) + ( pMv->getVer() >> 3 ) * iRefStride - iRefStride;
1763    if (iChromaId == 0) // Cb
1764    {
1765      pRef = pRefPic->getCbAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() ) + iRefOffset;
1766      pRec = pRecPic->getCbAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() ) - iRecStride;
1767    }
1768    else if (iChromaId == 1) // Cr
1769    {
1770      pRef = pRefPic->getCrAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() ) + iRefOffset;
1771      pRec = pRecPic->getCrAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() ) - iRecStride;
1772    }
1773
1774    for( j = 0; j < uiWidth; j++ )
1775    {
1776      x += pRef[j];
1777      y += pRec[j];
1778      xx += pRef[j] * pRef[j];
1779      xy += pRef[j] * pRec[j];
1780    }
1781    iCountShift += g_aucConvertToBit[ uiWidth ] + 2;
1782  }
1783
1784
1785  if(pcCU->getPULeft(uiTmpPartIdx, pcCU->getZorderIdxInCU()) && iCUPelX > 0 && iRefX > 0)
1786  {
1787    iRefOffset = ( pMv->getHor() >> 3 ) + ( pMv->getVer() >> 3 ) * iRefStride - 1;
1788    if (iChromaId == 0) // Cb
1789    {
1790      pRef = pRefPic->getCbAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() ) + iRefOffset;
1791      pRec = pRecPic->getCbAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() ) - 1;
1792    }
1793    else if (iChromaId == 1) // Cr
1794    {
1795      pRef = pRefPic->getCrAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() ) + iRefOffset;
1796      pRec = pRecPic->getCrAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() ) - 1;
1797    }
1798
1799    for( i = 0; i < uiHeight; i++ )
1800    {
1801      x += pRef[0];
1802      y += pRec[0];
1803      xx += pRef[0] * pRef[0];
1804      xy += pRef[0] * pRec[0];
1805
1806      pRef += iRefStride;
1807      pRec += iRecStride;
1808    }
1809    iCountShift += iCountShift > 0 ? 1 : ( g_aucConvertToBit[ uiWidth ] + 2 );
1810  }
1811
1812  Int iTempShift = ( g_uiBitDepth + g_uiBitIncrement ) + g_aucConvertToBit[ uiWidth ] + 3 - 15;
1813
1814  if(iTempShift > 0)
1815  {
1816    x  = ( x +  ( 1 << ( iTempShift - 1 ) ) ) >> iTempShift;
1817    y  = ( y +  ( 1 << ( iTempShift - 1 ) ) ) >> iTempShift;
1818    xx = ( xx + ( 1 << ( iTempShift - 1 ) ) ) >> iTempShift;
1819    xy = ( xy + ( 1 << ( iTempShift - 1 ) ) ) >> iTempShift;
1820    iCountShift -= iTempShift;
1821  }
1822
1823  iShift = 13;
1824
1825  if( iCountShift == 0 )
1826  {
1827    a = 1;
1828    b = 0;
1829    iShift = 0;
1830  }
1831  else
1832  {
1833    Int a1 = ( xy << iCountShift ) - y * x;
1834    Int a2 = ( xx << iCountShift ) - x * x;             
1835
1836    {
1837      const Int iShiftA2 = 6;
1838      const Int iShiftA1 = 15;
1839      const Int iAccuracyShift = 15;
1840
1841      Int iScaleShiftA2 = 0;
1842      Int iScaleShiftA1 = 0;
1843      Int a1s = a1;
1844      Int a2s = a2;
1845
1846      iScaleShiftA1 = GetMSB( abs( a1 ) ) - iShiftA1;
1847      iScaleShiftA2 = GetMSB( abs( a2 ) ) - iShiftA2; 
1848
1849      if( iScaleShiftA1 < 0 )
1850      {
1851        iScaleShiftA1 = 0;
1852      }
1853
1854      if( iScaleShiftA2 < 0 )
1855      {
1856        iScaleShiftA2 = 0;
1857      }
1858
1859      Int iScaleShiftA = iScaleShiftA2 + iAccuracyShift - iShift - iScaleShiftA1;
1860
1861      a2s = a2 >> iScaleShiftA2;
1862
1863      a1s = a1 >> iScaleShiftA1;
1864
1865      if (a2s >= 1)
1866      {
1867        a = a1s * m_uiaShift[ a2s - 1];
1868      }
1869      else
1870      {
1871        a = 0;
1872      }
1873
1874      if( iScaleShiftA < 0 )
1875      {
1876        a = a << -iScaleShiftA;
1877      }
1878      else
1879      {
1880        a = a >> iScaleShiftA;
1881      }
1882
1883      a = Clip3(-( 1 << 15 ), ( 1 << 15 ) - 1, a); 
1884
1885      Int minA = -(1 << (6));
1886      Int maxA = (1 << 6) - 1;
1887      if( a <= maxA && a >= minA )
1888      {
1889        // do nothing
1890      }
1891      else
1892      {
1893        Short n = CountLeadingZerosOnes(a);
1894        a = a >> (9-n);
1895        iShift -= (9-n);
1896      }
1897
1898      b = (  y - ( ( a * x ) >> iShift ) + ( 1 << ( iCountShift - 1 ) ) ) >> iCountShift;
1899    }
1900  }   
1901}
1902#endif
1903/** Function for filtering intra DC predictor.
1904 * \param pSrc pointer to reconstructed sample array
1905 * \param iSrcStride the stride of the reconstructed sample array
1906 * \param rpDst reference to pointer for the prediction sample array
1907 * \param iDstStride the stride of the prediction sample array
1908 * \param iWidth the width of the block
1909 * \param iHeight the height of the block
1910 *
1911 * This function performs filtering left and top edges of the prediction samples for DC mode (intra coding).
1912 */
1913Void TComPrediction::xDCPredFiltering( Int* pSrc, Int iSrcStride, Pel*& rpDst, Int iDstStride, Int iWidth, Int iHeight )
1914{
1915  Pel* pDst = rpDst;
1916  Int x, y, iDstStride2, iSrcStride2;
1917
1918  // boundary pixels processing
1919  pDst[0] = (Pel)((pSrc[-iSrcStride] + pSrc[-1] + 2 * pDst[0] + 2) >> 2);
1920
1921  for ( x = 1; x < iWidth; x++ )
1922  {
1923    pDst[x] = (Pel)((pSrc[x - iSrcStride] +  3 * pDst[x] + 2) >> 2);
1924  }
1925
1926  for ( y = 1, iDstStride2 = iDstStride, iSrcStride2 = iSrcStride-1; y < iHeight; y++, iDstStride2+=iDstStride, iSrcStride2+=iSrcStride )
1927  {
1928    pDst[iDstStride2] = (Pel)((pSrc[iSrcStride2] + 3 * pDst[iDstStride2] + 2) >> 2);
1929  }
1930
1931  return;
1932}
1933
1934#if HHI_DMM_WEDGE_INTRA || HHI_DMM_PRED_TEX
1935Void TComPrediction::predIntraLumaDMM( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiMode, Pel* piPred, UInt uiStride, Int iWidth, Int iHeight, Bool bAbove, Bool bLeft, Bool bEncoder )
1936{
1937#if HHI_DMM_WEDGE_INTRA
1938  if( uiMode == DMM_WEDGE_FULL_IDX        ) { xPredIntraWedgeFull ( pcCU, uiAbsPartIdx, piPred, uiStride, iWidth, iHeight, bAbove, bLeft, bEncoder, false, pcCU->getWedgeFullTabIdx ( uiAbsPartIdx ) ); }
1939  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 ) ); }
1940  if( uiMode == DMM_WEDGE_PREDDIR_IDX     ) { xPredIntraWedgeDir  ( pcCU, uiAbsPartIdx, piPred, uiStride, iWidth, iHeight, bAbove, bLeft, bEncoder, false, pcCU->getWedgePredDirDeltaEnd( uiAbsPartIdx ) ); }
1941  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 ) ); }
1942#endif
1943#if HHI_DMM_PRED_TEX
1944  if( uiMode == DMM_WEDGE_PREDTEX_IDX     ) { xPredIntraWedgeTex  ( pcCU, uiAbsPartIdx, piPred, uiStride, iWidth, iHeight, bAbove, bLeft, bEncoder, false ); }
1945  if( uiMode == DMM_WEDGE_PREDTEX_D_IDX   ) { xPredIntraWedgeTex  ( pcCU, uiAbsPartIdx, piPred, uiStride, iWidth, iHeight, bAbove, bLeft, bEncoder, true, pcCU->getWedgePredTexDeltaDC1( uiAbsPartIdx ), pcCU->getWedgePredTexDeltaDC2( uiAbsPartIdx ) ); }
1946  if( uiMode == DMM_CONTOUR_PREDTEX_IDX   ) { xPredIntraContourTex( pcCU, uiAbsPartIdx, piPred, uiStride, iWidth, iHeight, bAbove, bLeft, bEncoder, false ); }
1947  if( uiMode == DMM_CONTOUR_PREDTEX_D_IDX ) { xPredIntraContourTex( pcCU, uiAbsPartIdx, piPred, uiStride, iWidth, iHeight, bAbove, bLeft, bEncoder, true, pcCU->getContourPredTexDeltaDC1( uiAbsPartIdx ), pcCU->getContourPredTexDeltaDC2( uiAbsPartIdx ) ); }
1948#endif
1949}
1950
1951Void TComPrediction::getWedgePredDCs( TComWedgelet* pcWedgelet, Int* piMask, Int iMaskStride, Int& riPredDC1, Int& riPredDC2, Bool bAbove, Bool bLeft )
1952{
1953  riPredDC1 = ( 1<<( g_uiBitDepth + g_uiBitIncrement - 1) ); //pred val, if no neighbors are available
1954  riPredDC2 = ( 1<<( g_uiBitDepth + g_uiBitIncrement - 1) );
1955
1956  if( !bAbove && !bLeft ) { return; }
1957
1958  UInt uiNumSmpDC1 = 0, uiNumSmpDC2 = 0;
1959  Int iPredDC1 = 0, iPredDC2 = 0;
1960
1961  Bool* pabWedgePattern = pcWedgelet->getPattern();
1962  UInt  uiWedgeStride   = pcWedgelet->getStride();
1963
1964#if HS_REFERENCE_SUBSAMPLE_C0154
1965  Int subSamplePix;
1966  if ( pcWedgelet->getWidth() == 32 )
1967  {
1968    subSamplePix = 2;
1969  }
1970  else
1971  {
1972    subSamplePix = 1;
1973  }
1974#endif
1975
1976  if( bAbove )
1977  {
1978#if HS_REFERENCE_SUBSAMPLE_C0154
1979    for( Int k = 0; k < pcWedgelet->getWidth(); k+=subSamplePix )
1980#else
1981    for( Int k = 0; k < pcWedgelet->getWidth(); k++ )
1982#endif
1983    {
1984      if( true == pabWedgePattern[k] )
1985      {
1986        iPredDC2 += piMask[k-iMaskStride];
1987        uiNumSmpDC2++;
1988      }
1989      else
1990      {
1991        iPredDC1 += piMask[k-iMaskStride];
1992        uiNumSmpDC1++;
1993      }
1994    }
1995  }
1996  if( bLeft )
1997  {
1998#if HS_REFERENCE_SUBSAMPLE_C0154
1999    for( Int k = 0; k < pcWedgelet->getHeight(); k+=subSamplePix )
2000#else
2001    for( Int k = 0; k < pcWedgelet->getHeight(); k++ )
2002#endif
2003    {
2004      if( true == pabWedgePattern[k*uiWedgeStride] )
2005      {
2006        iPredDC2 += piMask[k*iMaskStride-1];
2007        uiNumSmpDC2++;
2008      } 
2009      else
2010      {
2011        iPredDC1 += piMask[k*iMaskStride-1];
2012        uiNumSmpDC1++;
2013      }
2014    }
2015  }
2016
2017  if( uiNumSmpDC1 > 0 )
2018  {
2019    iPredDC1 /= uiNumSmpDC1;
2020    riPredDC1 = iPredDC1;
2021  }
2022  if( uiNumSmpDC2 > 0 )
2023  {
2024    iPredDC2 /= uiNumSmpDC2;
2025    riPredDC2 = iPredDC2;
2026  }
2027}
2028
2029Void TComPrediction::calcWedgeDCs( TComWedgelet* pcWedgelet, Pel* piOrig, UInt uiStride, Int& riDC1, Int& riDC2 )
2030{
2031  UInt uiDC1 = 0;
2032  UInt uiDC2 = 0;
2033  UInt uiNumPixDC1 = 0, uiNumPixDC2 = 0;
2034  Bool* pabWedgePattern = pcWedgelet->getPattern();
2035  if( uiStride == pcWedgelet->getStride() )
2036  {
2037    for( UInt k = 0; k < (pcWedgelet->getWidth() * pcWedgelet->getHeight()); k++ )
2038    {
2039      if( true == pabWedgePattern[k] ) 
2040      {
2041        uiDC2 += piOrig[k];
2042        uiNumPixDC2++;
2043      }
2044      else
2045      {
2046        uiDC1 += piOrig[k];
2047        uiNumPixDC1++;
2048      }
2049    }
2050  }
2051  else
2052  {
2053    Pel* piTemp = piOrig;
2054    UInt uiWedgeStride = pcWedgelet->getStride();
2055    for( UInt uiY = 0; uiY < pcWedgelet->getHeight(); uiY++ )
2056    {
2057      for( UInt uiX = 0; uiX < pcWedgelet->getWidth(); uiX++ )
2058      {
2059        if( true == pabWedgePattern[uiX] ) 
2060        {
2061          uiDC2 += piTemp[uiX];
2062          uiNumPixDC2++;
2063        }
2064        else
2065        {
2066          uiDC1 += piTemp[uiX];
2067          uiNumPixDC1++;
2068        }
2069      }
2070      piTemp          += uiStride;
2071      pabWedgePattern += uiWedgeStride;
2072    }
2073  }
2074
2075  if( uiNumPixDC1 > 0 ) { riDC1 = uiDC1 / uiNumPixDC1; }
2076  else                  { riDC1 = ( 1<<( g_uiBitDepth + g_uiBitIncrement - 1) ); }
2077
2078  if( uiNumPixDC2 > 0 ) { riDC2 = uiDC2 / uiNumPixDC2; }
2079  else                  { riDC2 = ( 1<<( g_uiBitDepth + g_uiBitIncrement - 1) ); }
2080}
2081
2082Void TComPrediction::assignWedgeDCs2Pred( TComWedgelet* pcWedgelet, Pel* piPred, UInt uiStride, Int iDC1, Int iDC2 )
2083{
2084  Bool* pabWedgePattern = pcWedgelet->getPattern();
2085
2086  if( uiStride == pcWedgelet->getStride() )
2087  {
2088    for( UInt k = 0; k < (pcWedgelet->getWidth() * pcWedgelet->getHeight()); k++ )
2089    {
2090      if( true == pabWedgePattern[k] ) 
2091      {
2092        piPred[k] = iDC2;
2093      }
2094      else
2095      {
2096        piPred[k] = iDC1;
2097      }
2098    }
2099  }
2100  else
2101  {
2102    Pel* piTemp = piPred;
2103    UInt uiWedgeStride = pcWedgelet->getStride();
2104    for( UInt uiY = 0; uiY < pcWedgelet->getHeight(); uiY++ )
2105    {
2106      for( UInt uiX = 0; uiX < pcWedgelet->getWidth(); uiX++ )
2107      {
2108        if( true == pabWedgePattern[uiX] ) 
2109        {
2110          piTemp[uiX] = iDC2;
2111        }
2112        else
2113        {
2114          piTemp[uiX] = iDC1;
2115        }
2116      }
2117      piTemp          += uiStride;
2118      pabWedgePattern += uiWedgeStride;
2119    }
2120  }
2121}
2122
2123Void TComPrediction::xDeltaDCQuantScaleUp( TComDataCU* pcCU, Int& riDeltaDC )
2124{
2125  Int  iSign  = riDeltaDC < 0 ? -1 : 1;
2126  UInt uiAbs  = abs( riDeltaDC );
2127
2128  Int iQp = pcCU->getQP(0);
2129  Double dMax = (Double)( 1<<( g_uiBitDepth + g_uiBitIncrement - 1) );
2130  Double dStepSize = Clip3( 1.0, dMax, pow( 2.0, iQp/10.0 + g_iDeltaDCsQuantOffset ) );
2131
2132  riDeltaDC = iSign * roftoi( uiAbs * dStepSize );
2133  return;
2134}
2135
2136Void TComPrediction::xDeltaDCQuantScaleDown( TComDataCU*  pcCU, Int& riDeltaDC )
2137{
2138  Int  iSign  = riDeltaDC < 0 ? -1 : 1;
2139  UInt uiAbs  = abs( riDeltaDC );
2140
2141  Int iQp = pcCU->getQP(0);
2142  Double dMax = (Double)( 1<<( g_uiBitDepth + g_uiBitIncrement - 1) );
2143  Double dStepSize = Clip3( 1.0, dMax, pow( 2.0, iQp/10.0 + g_iDeltaDCsQuantOffset ) );
2144
2145  riDeltaDC = iSign * roftoi( uiAbs / dStepSize );
2146  return;
2147}
2148#endif
2149
2150#if HHI_DMM_PRED_TEX
2151Void TComPrediction::getBestContourFromTex( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiWidth, UInt uiHeight, TComWedgelet* pcContourWedge )
2152{
2153  pcContourWedge->clear();
2154
2155  // get copy of co-located texture luma block
2156  TComYuv cTempYuv;
2157  cTempYuv.create( uiWidth, uiHeight ); 
2158  cTempYuv.clear();
2159  Pel* piRefBlkY = cTempYuv.getLumaAddr();
2160  copyTextureLumaBlock( pcCU, uiAbsPartIdx, piRefBlkY, uiWidth, uiHeight );
2161  piRefBlkY = cTempYuv.getLumaAddr();
2162
2163  // find contour for texture luma block
2164  UInt iDC = 0;
2165  for( UInt k = 0; k < (uiWidth*uiHeight); k++ ) 
2166  { 
2167    iDC += piRefBlkY[k]; 
2168  }
2169  iDC /= (uiWidth*uiHeight);
2170  piRefBlkY = cTempYuv.getLumaAddr();
2171
2172  Bool* pabContourPattern = pcContourWedge->getPattern();
2173  for( UInt k = 0; k < (uiWidth*uiHeight); k++ ) 
2174  { 
2175    pabContourPattern[k] = (piRefBlkY[k] > iDC) ? true : false;
2176  }
2177
2178  cTempYuv.destroy();
2179}
2180
2181#if LGE_DMM3_SIMP_C0044
2182/**
2183 - fetch best Wedgelet pattern at decoder
2184 */
2185UInt TComPrediction::getBestWedgeFromTex( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiWidth, UInt uiHeight, UInt IntraTabIdx)
2186{
2187  assert( uiWidth >= DMM_WEDGEMODEL_MIN_SIZE && uiWidth <= DMM_WEDGEMODEL_MAX_SIZE );
2188
2189  UInt          uiBestTabIdx = 0;
2190  TComPic*      pcPicTex = pcCU->getSlice()->getTexturePic();
2191  TComDataCU*   pcColTexCU = pcPicTex->getCU(pcCU->getAddr());
2192  UInt          uiTexPartIdx = pcCU->getZorderIdxInCU() + uiAbsPartIdx;
2193  Int           uiColTexIntraDir = pcColTexCU->isIntra( uiTexPartIdx ) ? pcColTexCU->getLumaIntraDir( uiTexPartIdx ) : 255;
2194
2195  std::vector< std::vector<UInt> > pauiWdgLstSz = g_aauiWdgLstM3[g_aucConvertToBit[uiWidth]];
2196
2197  if( uiColTexIntraDir > DC_IDX && uiColTexIntraDir < 35 )
2198  {
2199    std::vector<UInt>* pauiWdgLst = &pauiWdgLstSz[uiColTexIntraDir-2];
2200    uiBestTabIdx    =   pauiWdgLst->at(IntraTabIdx);
2201  }
2202  else
2203  {
2204    WedgeNodeList* pacWedgeNodeList = &g_aacWedgeNodeLists[(g_aucConvertToBit[uiWidth])];
2205    uiBestTabIdx = pacWedgeNodeList->at(IntraTabIdx).getPatternIdx();
2206  }
2207
2208  return uiBestTabIdx;
2209}
2210#endif
2211
2212#if LGE_DMM3_SIMP_C0044
2213/**
2214 - calculate best Wedgelet pattern at encoder
2215 */
2216UInt TComPrediction::getBestWedgeFromTex( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiWidth, UInt uiHeight, Pel* piOrigi, UInt uiStride, UInt & ruiIntraTabIdx)
2217#else
2218UInt TComPrediction::getBestWedgeFromTex( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiWidth, UInt uiHeight )
2219#endif
2220{
2221  assert( uiWidth >= DMM_WEDGEMODEL_MIN_SIZE && uiWidth <= DMM_WEDGEMODEL_MAX_SIZE );
2222
2223  // get copy of co-located texture luma block
2224  TComYuv cTempYuv; 
2225  cTempYuv.create( uiWidth, uiHeight ); 
2226  cTempYuv.clear();
2227  Pel* piRefBlkY = cTempYuv.getLumaAddr();
2228
2229  copyTextureLumaBlock( pcCU, uiAbsPartIdx, piRefBlkY, uiWidth, uiHeight );
2230  piRefBlkY = cTempYuv.getLumaAddr();
2231
2232  // local pred buffer
2233  TComYuv cPredYuv; 
2234  cPredYuv.create( uiWidth, uiHeight ); 
2235  cPredYuv.clear();
2236  Pel* piPred = cPredYuv.getLumaAddr();
2237
2238  UInt uiPredStride = cPredYuv.getStride();
2239
2240  // wedge search
2241  TComWedgeDist cWedgeDist;
2242  UInt uiBestDist = MAX_UINT;
2243  UInt uiBestTabIdx = 0;
2244  Int  iDC1 = 0;
2245  Int  iDC2 = 0;
2246  WedgeList* pacWedgeList = &g_aacWedgeLists[(g_aucConvertToBit[uiWidth])];
2247#if LGE_DMM3_SIMP_C0044
2248  ruiIntraTabIdx  = 0;
2249#endif
2250#if HHIQC_DMMFASTSEARCH_B0039
2251  TComPic*      pcPicTex = pcCU->getSlice()->getTexturePic();
2252  TComDataCU* pcColTexCU = pcPicTex->getCU(pcCU->getAddr());
2253  UInt      uiTexPartIdx = pcCU->getZorderIdxInCU() + uiAbsPartIdx;
2254  Int   uiColTexIntraDir = pcColTexCU->isIntra( uiTexPartIdx ) ? pcColTexCU->getLumaIntraDir( uiTexPartIdx ) : 255;
2255
2256  std::vector< std::vector<UInt> > pauiWdgLstSz = g_aauiWdgLstM3[g_aucConvertToBit[uiWidth]];
2257  if( uiColTexIntraDir > DC_IDX && uiColTexIntraDir < 35 )
2258  {
2259    std::vector<UInt>* pauiWdgLst = &pauiWdgLstSz[uiColTexIntraDir-2];
2260    for( UInt uiIdxW = 0; uiIdxW < pauiWdgLst->size(); uiIdxW++ )
2261    {
2262      UInt uiIdx     =   pauiWdgLst->at(uiIdxW);
2263#if LGE_DMM3_SIMP_C0044
2264      calcWedgeDCs       ( &(pacWedgeList->at(uiIdx)), piOrigi,   uiWidth,      iDC1, iDC2 );
2265#else
2266      calcWedgeDCs       ( &(pacWedgeList->at(uiIdx)), piRefBlkY, uiWidth,      iDC1, iDC2 );
2267#endif
2268      assignWedgeDCs2Pred( &(pacWedgeList->at(uiIdx)), piPred,    uiPredStride, iDC1, iDC2 );
2269
2270#if LGE_DMM3_SIMP_C0044
2271      UInt uiActDist = cWedgeDist.getDistPart( piPred, uiPredStride, piOrigi, uiStride, uiWidth, uiHeight, WedgeDist_SAD );
2272#else
2273      UInt uiActDist = cWedgeDist.getDistPart( piPred, uiPredStride, piRefBlkY, uiWidth, uiWidth, uiHeight, WedgeDist_SAD );
2274#endif
2275
2276      if( uiActDist < uiBestDist || uiBestDist == MAX_UINT )
2277      {
2278        uiBestDist   = uiActDist;
2279        uiBestTabIdx = uiIdx;
2280#if LGE_DMM3_SIMP_C0044
2281        ruiIntraTabIdx = uiIdxW;
2282#endif
2283      }
2284    }
2285  }
2286  else
2287  {
2288    WedgeNodeList* pacWedgeNodeList = &g_aacWedgeNodeLists[(g_aucConvertToBit[uiWidth])];
2289    UInt uiBestNodeDist = MAX_UINT;
2290    UInt uiBestNodeId   = 0;
2291    for( UInt uiNodeId = 0; uiNodeId < pacWedgeNodeList->size(); uiNodeId++ )
2292    {
2293#if LGE_DMM3_SIMP_C0044
2294      calcWedgeDCs       ( &(pacWedgeList->at(pacWedgeNodeList->at(uiNodeId).getPatternIdx())), piOrigi, uiWidth,      iDC1, iDC2 );
2295#else
2296      calcWedgeDCs       ( &(pacWedgeList->at(pacWedgeNodeList->at(uiNodeId).getPatternIdx())), piRefBlkY, uiWidth,      iDC1, iDC2 );
2297#endif
2298      assignWedgeDCs2Pred( &(pacWedgeList->at(pacWedgeNodeList->at(uiNodeId).getPatternIdx())), piPred,    uiPredStride, iDC1, iDC2 );
2299
2300#if LGE_DMM3_SIMP_C0044
2301      UInt uiActDist = cWedgeDist.getDistPart( piPred, uiPredStride, piOrigi, uiStride, uiWidth, uiHeight, WedgeDist_SAD );
2302#else
2303      UInt uiActDist = cWedgeDist.getDistPart( piPred, uiPredStride, piRefBlkY, uiWidth, uiWidth, uiHeight, WedgeDist_SAD );
2304#endif
2305
2306      if( uiActDist < uiBestNodeDist || uiBestNodeDist == MAX_UINT )
2307      {
2308        uiBestNodeDist = uiActDist;
2309        uiBestNodeId   = uiNodeId;
2310#if LGE_DMM3_SIMP_C0044
2311        ruiIntraTabIdx = uiNodeId;
2312#endif
2313      }
2314    }
2315#if LGE_DMM3_SIMP_C0044
2316    uiBestTabIdx = pacWedgeNodeList->at(uiBestNodeId).getPatternIdx();
2317#else
2318    // refinement
2319    uiBestDist   = uiBestNodeDist;
2320    uiBestTabIdx = pacWedgeNodeList->at(uiBestNodeId).getPatternIdx();
2321    for( UInt uiRefId = 0; uiRefId < NUM_WEDGE_REFINES; uiRefId++ )
2322    {
2323      if( pacWedgeNodeList->at(uiBestNodeId).getRefineIdx( uiRefId ) != NO_IDX )
2324      {
2325        calcWedgeDCs       ( &(pacWedgeList->at(pacWedgeNodeList->at(uiBestNodeId).getRefineIdx( uiRefId ))), piRefBlkY, uiWidth,      iDC1, iDC2 );
2326        assignWedgeDCs2Pred( &(pacWedgeList->at(pacWedgeNodeList->at(uiBestNodeId).getRefineIdx( uiRefId ))), piPred,    uiPredStride, iDC1, iDC2 );
2327
2328        UInt uiActDist = cWedgeDist.getDistPart( piPred, uiPredStride, piRefBlkY, uiWidth, uiWidth, uiHeight, WedgeDist_SAD );
2329
2330        if( uiActDist < uiBestDist || uiBestDist == MAX_UINT )
2331        {
2332          uiBestDist   = uiActDist;
2333          uiBestTabIdx = pacWedgeNodeList->at(uiBestNodeId).getRefineIdx( uiRefId );
2334        }
2335      }
2336    }
2337#endif
2338  }
2339#else
2340  for( UInt uiIdx = 0; uiIdx < pacWedgeList->size(); uiIdx++ )
2341  {
2342    calcWedgeDCs       ( &(pacWedgeList->at(uiIdx)), piRefBlkY, uiWidth,      iDC1, iDC2 );
2343    assignWedgeDCs2Pred( &(pacWedgeList->at(uiIdx)), piPred,    uiPredStride, iDC1, iDC2 );
2344
2345    UInt uiActDist = cWedgeDist.getDistPart( piPred, uiPredStride, piRefBlkY, uiWidth, uiWidth, uiHeight, WedgeDist_SAD );
2346
2347    if( uiActDist < uiBestDist || uiBestDist == MAX_UINT )
2348    {
2349      uiBestDist   = uiActDist;
2350      uiBestTabIdx = uiIdx;
2351    }
2352  }
2353#endif
2354
2355  cPredYuv.destroy();
2356  cTempYuv.destroy();
2357  return uiBestTabIdx;
2358}
2359
2360Void TComPrediction::copyTextureLumaBlock( TComDataCU* pcCU, UInt uiAbsPartIdx, Pel* piDestBlockY, UInt uiWidth, UInt uiHeight )
2361{
2362  TComPicYuv* pcPicYuvRef = pcCU->getSlice()->getTexturePic()->getPicYuvRec();
2363  Int         iRefStride = pcPicYuvRef->getStride();
2364  Pel*        piRefY;
2365
2366  piRefY = pcPicYuvRef->getLumaAddr( pcCU->getAddr(), pcCU->getZorderIdxInCU() + uiAbsPartIdx );
2367
2368  for ( Int y = 0; y < uiHeight; y++ )
2369  {
2370    ::memcpy(piDestBlockY, piRefY, sizeof(Pel)*uiWidth);
2371//    ::memset(piDestBlockY, 128, sizeof(Pel)*uiWidth);
2372    piDestBlockY += uiWidth;
2373    piRefY += iRefStride;
2374  }
2375}
2376
2377Void 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 )
2378{
2379  assert( iWidth >= DMM_WEDGEMODEL_MIN_SIZE && iWidth <= DMM_WEDGEMODEL_MAX_SIZE );
2380  WedgeList* pacWedgeList = &g_aacWedgeLists[(g_aucConvertToBit[iWidth])];
2381
2382  // get wedge pattern
2383  UInt uiTextureWedgeTabIdx = 0;
2384  if( bEncoder ) 
2385  {
2386    // encoder: load stored wedge pattern from CU
2387    uiTextureWedgeTabIdx = pcCU->getWedgePredTexTabIdx( uiAbsPartIdx );
2388  }
2389  else
2390  {
2391    // decoder: get and store wedge pattern in CU
2392      // decoder: get and store wedge pattern in CU
2393#if LGE_DMM3_SIMP_C0044
2394    UInt uiIntraTabIdx   = pcCU->getWedgePredTexIntraTabIdx ( uiAbsPartIdx );
2395    uiTextureWedgeTabIdx = getBestWedgeFromTex( pcCU, uiAbsPartIdx, (UInt)iWidth, (UInt)iHeight, uiIntraTabIdx );
2396#else
2397    uiTextureWedgeTabIdx = getBestWedgeFromTex( pcCU, uiAbsPartIdx, (UInt)iWidth, (UInt)iHeight );
2398#endif
2399
2400    UInt uiDepth = (pcCU->getDepth(0)) + (pcCU->getPartitionSize(0) == SIZE_2Nx2N ? 0 : 1);
2401    pcCU->setWedgePredTexTabIdxSubParts( uiTextureWedgeTabIdx, uiAbsPartIdx, uiDepth );
2402  }
2403  TComWedgelet* pcWedgelet = &(pacWedgeList->at(uiTextureWedgeTabIdx));
2404
2405  // get wedge pred DCs
2406  Int iPredDC1 = 0;
2407  Int iPredDC2 = 0;
2408  Int* piMask = pcCU->getPattern()->getAdiOrgBuf( iWidth, iHeight, m_piYuvExt );
2409  Int iMaskStride = ( iWidth<<1 ) + 1;
2410  piMask += iMaskStride+1;
2411  getWedgePredDCs( pcWedgelet, piMask, iMaskStride, iPredDC1, iPredDC2, bAbove, bLeft );
2412
2413#if HHI_DMM_DELTADC_Q1_C0034
2414#else
2415  if( bDelta ) 
2416  {
2417    xDeltaDCQuantScaleUp( pcCU, iDeltaDC1 );
2418    xDeltaDCQuantScaleUp( pcCU, iDeltaDC2 );
2419  }
2420#endif
2421
2422  // assign wedge pred DCs to prediction
2423  if( bDelta ) { assignWedgeDCs2Pred( pcWedgelet, piPred, uiStride, Clip ( iPredDC1+iDeltaDC1 ), Clip( iPredDC2+iDeltaDC2 ) ); }
2424  else         { assignWedgeDCs2Pred( pcWedgelet, piPred, uiStride,        iPredDC1,                   iPredDC2           ); }
2425}
2426
2427Void 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 )
2428{
2429  // get contour pattern
2430  TComWedgelet* pcContourWedge = new TComWedgelet( iWidth, iHeight );
2431  getBestContourFromTex( pcCU, uiAbsPartIdx, (UInt)iWidth, (UInt)iHeight, pcContourWedge );
2432
2433  // get wedge pred DCs
2434  Int iPredDC1 = 0;
2435  Int iPredDC2 = 0;
2436  Int* piMask = pcCU->getPattern()->getAdiOrgBuf( iWidth, iHeight, m_piYuvExt );
2437  Int iMaskStride = ( iWidth<<1 ) + 1;
2438  piMask += iMaskStride+1;
2439  getWedgePredDCs( pcContourWedge, piMask, iMaskStride, iPredDC1, iPredDC2, bAbove, bLeft );
2440
2441#if HHI_DMM_DELTADC_Q1_C0034
2442#else
2443  if( bDelta ) 
2444  {
2445    xDeltaDCQuantScaleUp( pcCU, iDeltaDC1 );
2446    xDeltaDCQuantScaleUp( pcCU, iDeltaDC2 );
2447  }
2448#endif
2449
2450  // assign wedge pred DCs to prediction
2451  if( bDelta ) { assignWedgeDCs2Pred( pcContourWedge, piPred, uiStride, Clip ( iPredDC1+iDeltaDC1 ), Clip( iPredDC2+iDeltaDC2 ) ); }
2452  else         { assignWedgeDCs2Pred( pcContourWedge, piPred, uiStride,        iPredDC1,                   iPredDC2           ); }
2453
2454  pcContourWedge->destroy();
2455  delete pcContourWedge;
2456}
2457#endif
2458
2459#if HHI_DMM_WEDGE_INTRA
2460UInt TComPrediction::getBestContinueWedge( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiWidth, UInt uiHeight, Int iDeltaEnd )
2461{
2462  UInt uiThisBlockSize = uiWidth;
2463  assert( uiThisBlockSize >= DMM_WEDGEMODEL_MIN_SIZE && uiThisBlockSize <= DMM_WEDGEMODEL_MAX_SIZE );
2464  WedgeRefList* pacContDWedgeRefList = &g_aacWedgeRefLists[(g_aucConvertToBit[uiThisBlockSize])];
2465
2466  UInt uiPredDirWedgeTabIdx = 0;
2467  TComDataCU* pcTempCU;
2468  UInt        uiTempPartIdx;
2469  // 1st: try continue above wedgelet
2470  pcTempCU = pcCU->getPUAbove( uiTempPartIdx, pcCU->getZorderIdxInCU() + uiAbsPartIdx );
2471  if( pcTempCU )
2472  {
2473    UChar uhLumaIntraDir = pcTempCU->getLumaIntraDir( uiTempPartIdx );
2474    if( DMM_WEDGE_FULL_IDX      == uhLumaIntraDir || 
2475        DMM_WEDGE_FULL_D_IDX    == uhLumaIntraDir || 
2476        DMM_WEDGE_PREDDIR_IDX   == uhLumaIntraDir || 
2477        DMM_WEDGE_PREDDIR_D_IDX == uhLumaIntraDir
2478#if HHI_DMM_PRED_TEX
2479        ||
2480        DMM_WEDGE_PREDTEX_IDX   == uhLumaIntraDir ||
2481        DMM_WEDGE_PREDTEX_D_IDX == uhLumaIntraDir   
2482#endif
2483      )
2484    {
2485      UInt uiRefWedgeSize = (UInt)g_aucIntraSizeIdxToWedgeSize[pcTempCU->getIntraSizeIdx( uiTempPartIdx )];
2486      WedgeList* pacWedgeList = &g_aacWedgeLists[(g_aucConvertToBit[uiRefWedgeSize])];
2487
2488      // get offset between current and reference block
2489      UInt uiOffsetX = 0;
2490      UInt uiOffsetY = 0;
2491      xGetBlockOffset( pcCU, uiAbsPartIdx, pcTempCU, uiTempPartIdx, uiOffsetX, uiOffsetY );
2492
2493      // get reference wedgelet
2494      UInt uiRefWedgeTabIdx = 0;
2495      switch( uhLumaIntraDir )
2496      {
2497      case( DMM_WEDGE_FULL_IDX      ): { uiRefWedgeTabIdx = pcTempCU->getWedgeFullTabIdx   ( uiTempPartIdx ); } break;
2498      case( DMM_WEDGE_FULL_D_IDX    ): { uiRefWedgeTabIdx = pcTempCU->getWedgeFullTabIdx   ( uiTempPartIdx ); } break;
2499      case( DMM_WEDGE_PREDDIR_IDX   ): { uiRefWedgeTabIdx = pcTempCU->getWedgePredDirTabIdx( uiTempPartIdx ); } break;
2500      case( DMM_WEDGE_PREDDIR_D_IDX ): { uiRefWedgeTabIdx = pcTempCU->getWedgePredDirTabIdx( uiTempPartIdx ); } break;
2501#if HHI_DMM_PRED_TEX
2502      case( DMM_WEDGE_PREDTEX_IDX   ): { uiRefWedgeTabIdx = pcTempCU->getWedgePredTexTabIdx( uiTempPartIdx ); } break;
2503      case( DMM_WEDGE_PREDTEX_D_IDX ): { uiRefWedgeTabIdx = pcTempCU->getWedgePredTexTabIdx( uiTempPartIdx ); } break;
2504#endif
2505      default: { assert( 0 ); return uiPredDirWedgeTabIdx; }
2506      }
2507      TComWedgelet* pcRefWedgelet;
2508      pcRefWedgelet = &(pacWedgeList->at( uiRefWedgeTabIdx ));
2509
2510      // find reference wedgelet, if direction is suitable for continue wedge
2511      if( pcRefWedgelet->checkPredDirAbovePossible( uiThisBlockSize, uiOffsetX ) )
2512      {
2513        UChar uhContD_Xs, uhContD_Ys, uhContD_Xe, uhContD_Ye;
2514        pcRefWedgelet->getPredDirStartEndAbove( uhContD_Xs, uhContD_Ys, uhContD_Xe, uhContD_Ye, uiThisBlockSize, uiOffsetX, iDeltaEnd );
2515        getWedgePatternIdx( pacContDWedgeRefList, uiPredDirWedgeTabIdx, uhContD_Xs, uhContD_Ys, uhContD_Xe, uhContD_Ye );
2516        return uiPredDirWedgeTabIdx;
2517      }
2518    }
2519  }
2520
2521  // 2nd: try continue left wedglelet
2522  pcTempCU = pcCU->getPULeft( uiTempPartIdx, pcCU->getZorderIdxInCU() + uiAbsPartIdx );
2523  if( pcTempCU )
2524  {
2525    UChar uhLumaIntraDir = pcTempCU->getLumaIntraDir( uiTempPartIdx );
2526    if( DMM_WEDGE_FULL_IDX      == uhLumaIntraDir || 
2527        DMM_WEDGE_FULL_D_IDX    == uhLumaIntraDir || 
2528        DMM_WEDGE_PREDDIR_IDX   == uhLumaIntraDir || 
2529        DMM_WEDGE_PREDDIR_D_IDX == uhLumaIntraDir
2530#if HHI_DMM_PRED_TEX
2531        ||
2532        DMM_WEDGE_PREDTEX_IDX   == uhLumaIntraDir ||
2533        DMM_WEDGE_PREDTEX_D_IDX == uhLumaIntraDir   
2534#endif
2535      )
2536    {
2537      UInt uiRefWedgeSize = (UInt)g_aucIntraSizeIdxToWedgeSize[pcTempCU->getIntraSizeIdx( uiTempPartIdx )];
2538      WedgeList* pacWedgeList = &g_aacWedgeLists[(g_aucConvertToBit[uiRefWedgeSize])];
2539
2540      // get offset between current and reference block
2541      UInt uiOffsetX = 0;
2542      UInt uiOffsetY = 0;
2543      xGetBlockOffset( pcCU, uiAbsPartIdx, pcTempCU, uiTempPartIdx, uiOffsetX, uiOffsetY );
2544
2545      // get reference wedgelet
2546      UInt uiRefWedgeTabIdx = 0;
2547      switch( uhLumaIntraDir )
2548      {
2549      case( DMM_WEDGE_FULL_IDX      ): { uiRefWedgeTabIdx = pcTempCU->getWedgeFullTabIdx   ( uiTempPartIdx ); } break;
2550      case( DMM_WEDGE_FULL_D_IDX    ): { uiRefWedgeTabIdx = pcTempCU->getWedgeFullTabIdx   ( uiTempPartIdx ); } break;
2551      case( DMM_WEDGE_PREDDIR_IDX   ): { uiRefWedgeTabIdx = pcTempCU->getWedgePredDirTabIdx( uiTempPartIdx ); } break;
2552      case( DMM_WEDGE_PREDDIR_D_IDX ): { uiRefWedgeTabIdx = pcTempCU->getWedgePredDirTabIdx( uiTempPartIdx ); } break;
2553#if HHI_DMM_PRED_TEX
2554      case( DMM_WEDGE_PREDTEX_IDX   ): { uiRefWedgeTabIdx = pcTempCU->getWedgePredTexTabIdx( uiTempPartIdx ); } break;
2555      case( DMM_WEDGE_PREDTEX_D_IDX ): { uiRefWedgeTabIdx = pcTempCU->getWedgePredTexTabIdx( uiTempPartIdx ); } break;
2556#endif
2557      default: { assert( 0 ); return uiPredDirWedgeTabIdx; }
2558      }
2559      TComWedgelet* pcRefWedgelet;
2560      pcRefWedgelet = &(pacWedgeList->at( uiRefWedgeTabIdx ));
2561
2562      // find reference wedgelet, if direction is suitable for continue wedge
2563      if( pcRefWedgelet->checkPredDirLeftPossible( uiThisBlockSize, uiOffsetY ) )
2564      {
2565        UChar uhContD_Xs, uhContD_Ys, uhContD_Xe, uhContD_Ye;
2566        pcRefWedgelet->getPredDirStartEndLeft( uhContD_Xs, uhContD_Ys, uhContD_Xe, uhContD_Ye, uiThisBlockSize, uiOffsetY, iDeltaEnd );
2567        getWedgePatternIdx( pacContDWedgeRefList, uiPredDirWedgeTabIdx, uhContD_Xs, uhContD_Ys, uhContD_Xe, uhContD_Ye );
2568        return uiPredDirWedgeTabIdx;
2569      }
2570    }
2571  }
2572
2573  // 3rd: (default) make wedglet from intra dir and max slope point
2574  Int iSlopeX = 0;
2575  Int iSlopeY = 0;
2576  UInt uiStartPosX = 0;
2577  UInt uiStartPosY = 0;
2578  if( xGetWedgeIntraDirPredData( pcCU, uiAbsPartIdx, uiThisBlockSize, iSlopeX, iSlopeY, uiStartPosX, uiStartPosY ) )
2579  {
2580    UChar uhContD_Xs, uhContD_Ys, uhContD_Xe, uhContD_Ye;
2581    xGetWedgeIntraDirStartEnd( pcCU, uiAbsPartIdx, uiThisBlockSize, iSlopeX, iSlopeY, uiStartPosX, uiStartPosY, uhContD_Xs, uhContD_Ys, uhContD_Xe, uhContD_Ye, iDeltaEnd );
2582    getWedgePatternIdx( pacContDWedgeRefList, uiPredDirWedgeTabIdx, uhContD_Xs, uhContD_Ys, uhContD_Xe, uhContD_Ye );
2583    return uiPredDirWedgeTabIdx;
2584  }
2585
2586  return uiPredDirWedgeTabIdx;
2587}
2588
2589Bool TComPrediction::getWedgePatternIdx( WedgeRefList* pcWedgeRefList, UInt& ruiTabIdx, UChar uhXs, UChar uhYs, UChar uhXe, UChar uhYe )
2590{
2591  ruiTabIdx = 0;
2592
2593  for( UInt uiIdx = 0; uiIdx < pcWedgeRefList->size(); uiIdx++ )
2594  {
2595    TComWedgeRef* pcTestWedgeRef = &(pcWedgeRefList->at(uiIdx));
2596
2597    if( pcTestWedgeRef->getStartX() == uhXs &&
2598      pcTestWedgeRef->getStartY() == uhYs &&
2599      pcTestWedgeRef->getEndX()   == uhXe &&
2600      pcTestWedgeRef->getEndY()   == uhYe    )
2601    {
2602      ruiTabIdx = pcTestWedgeRef->getRefIdx();
2603      return true;
2604    }
2605  }
2606
2607  return false;
2608}
2609
2610Void 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 )
2611{
2612  assert( iWidth >= DMM_WEDGEMODEL_MIN_SIZE && iWidth <= DMM_WEDGEMODEL_MAX_SIZE );
2613  WedgeList* pacWedgeList = &g_aacWedgeLists[(g_aucConvertToBit[iWidth])];
2614  TComWedgelet* pcWedgelet = &(pacWedgeList->at(uiTabIdx));
2615
2616  // get wedge pred DCs
2617  Int iPredDC1 = 0;
2618  Int iPredDC2 = 0;
2619
2620  Int* piMask = pcCU->getPattern()->getAdiOrgBuf( iWidth, iHeight, m_piYuvExt );
2621  Int iMaskStride = ( iWidth<<1 ) + 1;
2622  piMask += iMaskStride+1;
2623  getWedgePredDCs( pcWedgelet, piMask, iMaskStride, iPredDC1, iPredDC2, bAbove, bLeft );
2624
2625#if HHI_DMM_DELTADC_Q1_C0034
2626#else
2627  if( bDelta ) 
2628  {
2629    xDeltaDCQuantScaleUp( pcCU, iDeltaDC1 );
2630    xDeltaDCQuantScaleUp( pcCU, iDeltaDC2 );
2631  }
2632#endif
2633
2634  // assign wedge pred DCs to prediction
2635  if( bDelta ) { assignWedgeDCs2Pred( pcWedgelet, piPred, uiStride, Clip( iPredDC1+iDeltaDC1 ), Clip( iPredDC2+iDeltaDC2 ) ); }
2636  else         { assignWedgeDCs2Pred( pcWedgelet, piPred, uiStride, iPredDC1,           iPredDC2           ); }
2637}
2638
2639Void 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 )
2640{
2641  assert( iWidth >= DMM_WEDGEMODEL_MIN_SIZE && iWidth <= DMM_WEDGEMODEL_MAX_SIZE );
2642  WedgeList* pacWedgeList = &g_aacWedgeLists[(g_aucConvertToBit[iWidth])];
2643
2644  // get wedge pattern
2645  UInt uiDirWedgeTabIdx = 0;
2646  if( bEncoder )
2647  {
2648    // encoder: load stored wedge pattern from CU
2649    uiDirWedgeTabIdx = pcCU->getWedgePredDirTabIdx( uiAbsPartIdx );
2650  }
2651  else
2652  {
2653    uiDirWedgeTabIdx = getBestContinueWedge( pcCU, uiAbsPartIdx, iWidth, iHeight, iWedgeDeltaEnd );
2654
2655    UInt uiDepth = (pcCU->getDepth(0)) + (pcCU->getPartitionSize(0) == SIZE_2Nx2N ? 0 : 1);
2656    pcCU->setWedgePredDirTabIdxSubParts( uiDirWedgeTabIdx, uiAbsPartIdx, uiDepth );
2657  }
2658  TComWedgelet* pcWedgelet = &(pacWedgeList->at(uiDirWedgeTabIdx));
2659
2660  // get wedge pred DCs
2661  Int iPredDC1 = 0;
2662  Int iPredDC2 = 0;
2663
2664  Int* piMask = pcCU->getPattern()->getAdiOrgBuf( iWidth, iHeight, m_piYuvExt );
2665  Int iMaskStride = ( iWidth<<1 ) + 1;
2666  piMask += iMaskStride+1;
2667  getWedgePredDCs( pcWedgelet, piMask, iMaskStride, iPredDC1, iPredDC2, bAbove, bLeft );
2668
2669#if HHI_DMM_DELTADC_Q1_C0034
2670#else
2671  if( bDelta ) 
2672  {
2673    xDeltaDCQuantScaleUp( pcCU, iDeltaDC1 );
2674    xDeltaDCQuantScaleUp( pcCU, iDeltaDC2 );
2675  }
2676#endif
2677
2678  // assign wedge pred DCs to prediction
2679  if( bDelta ) { assignWedgeDCs2Pred( pcWedgelet, piPred, uiStride, Clip( iPredDC1+iDeltaDC1 ), Clip( iPredDC2+iDeltaDC2 ) ); }
2680  else         { assignWedgeDCs2Pred( pcWedgelet, piPred, uiStride,       iPredDC1,                   iPredDC2             ); }
2681}
2682
2683Void TComPrediction::xGetBlockOffset( TComDataCU* pcCU, UInt uiAbsPartIdx, TComDataCU* pcRefCU, UInt uiRefAbsPartIdx, UInt& ruiOffsetX, UInt& ruiOffsetY )
2684{
2685  ruiOffsetX = 0;
2686  ruiOffsetY = 0;
2687
2688  // get offset between current and above/left block
2689  UInt uiThisOriginX = pcCU->getCUPelX() + g_auiRasterToPelX[ g_auiZscanToRaster[uiAbsPartIdx] ];
2690  UInt uiThisOriginY = pcCU->getCUPelY() + g_auiRasterToPelY[ g_auiZscanToRaster[uiAbsPartIdx] ];
2691
2692  UInt uiNumPartInRefCU = pcRefCU->getTotalNumPart();
2693  UInt uiMaxDepthRefCU = 0;
2694  while( uiNumPartInRefCU > 1 )
2695  {
2696    uiNumPartInRefCU >>= 2;
2697    uiMaxDepthRefCU++;
2698  }
2699
2700  UInt uiDepthRefPU = (pcRefCU->getDepth(uiRefAbsPartIdx)) + (pcRefCU->getPartitionSize(uiRefAbsPartIdx) == SIZE_2Nx2N ? 0 : 1);
2701  UInt uiShifts = (uiMaxDepthRefCU - uiDepthRefPU)*2;
2702  UInt uiRefBlockOriginPartIdx = (uiRefAbsPartIdx>>uiShifts)<<uiShifts;
2703
2704  UInt uiRefOriginX = pcRefCU->getCUPelX() + g_auiRasterToPelX[ g_auiZscanToRaster[uiRefBlockOriginPartIdx] ];
2705  UInt uiRefOriginY = pcRefCU->getCUPelY() + g_auiRasterToPelY[ g_auiZscanToRaster[uiRefBlockOriginPartIdx] ];
2706
2707  if( (uiThisOriginX - uiRefOriginX) > 0 ) { ruiOffsetX = (UInt)(uiThisOriginX - uiRefOriginX); }
2708  if( (uiThisOriginY - uiRefOriginY) > 0 ) { ruiOffsetY = (UInt)(uiThisOriginY - uiRefOriginY); }
2709}
2710
2711Bool TComPrediction::xGetWedgeIntraDirPredData( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiBlockSize, Int& riSlopeX, Int& riSlopeY, UInt& ruiStartPosX, UInt& ruiStartPosY )
2712{
2713  riSlopeX     = 0;
2714  riSlopeY     = 0;
2715  ruiStartPosX = 0;
2716  ruiStartPosY = 0;
2717
2718  // 1st step: get wedge start point (max. slope)
2719  Int* piSource = pcCU->getPattern()->getAdiOrgBuf( uiBlockSize, uiBlockSize, m_piYuvExt );
2720  Int iSourceStride = ( uiBlockSize<<1 ) + 1;
2721
2722  UInt uiSlopeMaxAbove = 0;
2723  UInt uiPosSlopeMaxAbove = 0;
2724  for( UInt uiPosHor = 0; uiPosHor < (uiBlockSize-1); uiPosHor++ )
2725  {
2726    if( abs( piSource[uiPosHor+1] - piSource[uiPosHor] ) > uiSlopeMaxAbove )
2727    {
2728      uiSlopeMaxAbove = abs( piSource[uiPosHor+1] - piSource[uiPosHor] );
2729      uiPosSlopeMaxAbove = uiPosHor;
2730    }
2731  }
2732
2733  UInt uiSlopeMaxLeft = 0;
2734  UInt uiPosSlopeMaxLeft = 0;
2735  for( UInt uiPosVer = 0; uiPosVer < (uiBlockSize-1); uiPosVer++ )
2736  {
2737    if( abs( piSource[(uiPosVer+1)*iSourceStride] - piSource[uiPosVer*iSourceStride] ) > uiSlopeMaxLeft )
2738    {
2739      uiSlopeMaxLeft = abs( piSource[(uiPosVer+1)*iSourceStride] - piSource[uiPosVer*iSourceStride] );
2740      uiPosSlopeMaxLeft = uiPosVer;
2741    }
2742  }
2743
2744  if( uiSlopeMaxAbove == 0 && uiSlopeMaxLeft == 0 ) 
2745  { 
2746    return false; 
2747  }
2748
2749  if( uiSlopeMaxAbove > uiSlopeMaxLeft )
2750  {
2751    ruiStartPosX = uiPosSlopeMaxAbove;
2752    ruiStartPosY = 0;
2753  }
2754  else
2755  {
2756    ruiStartPosX = 0;
2757    ruiStartPosY = uiPosSlopeMaxLeft;
2758  }
2759
2760  // 2nd step: derive wedge direction
2761#if LOGI_INTRA_NAME_3MPM
2762  Int uiPreds[3] = {-1, -1, -1};
2763#else
2764  Int uiPreds[2] = {-1, -1};
2765#endif
2766  Int iMode = -1;
2767  Int iPredNum = pcCU->getIntraDirLumaPredictor( uiAbsPartIdx, uiPreds, &iMode ); 
2768
2769  UInt uiDirMode = 0;
2770#if LOGI_INTRA_NAME_3MPM
2771  if( iMode >= 0 ) { iPredNum = iMode; }
2772  if( iPredNum == 1 ) { uiDirMode = uiPreds[0]; }
2773  if( iPredNum == 2 ) { uiDirMode = uiPreds[1]; }
2774
2775  if( uiDirMode < 2 ) { return false; } // no planar & DC
2776
2777  Bool modeHor       = (uiDirMode < 18);
2778  Bool modeVer       = !modeHor;
2779  Int intraPredAngle = modeVer ? (Int)uiDirMode - VER_IDX : modeHor ? -((Int)uiDirMode - HOR_IDX) : 0;
2780#else
2781  if( iPredNum == 1 ) { uiDirMode = g_aucAngIntraModeOrder[uiPreds[0]]; }
2782  if( iPredNum == 2 ) { uiDirMode = g_aucAngIntraModeOrder[uiPreds[1]]; }
2783
2784  if( uiDirMode == 0 ) {  return false; } // no DC
2785
2786  Bool modeVer       = (uiDirMode < 18);
2787  Bool modeHor       = !modeVer;
2788  Int intraPredAngle = modeVer ? uiDirMode - 9 : modeHor ? uiDirMode - 25 : 0;
2789#endif
2790  Int absAng         = abs(intraPredAngle);
2791  Int signAng        = intraPredAngle < 0 ? -1 : 1;
2792  Int angTable[9]    = {0,2,5,9,13,17,21,26,32};
2793  absAng             = angTable[absAng];
2794  intraPredAngle     = signAng * absAng;
2795
2796  // 3rd step: set slope for direction
2797  if( modeHor )
2798  {
2799    if( intraPredAngle > 0 )
2800    {
2801      riSlopeX = -32;
2802      riSlopeY = intraPredAngle;
2803    }
2804    else
2805    {
2806      riSlopeX = 32;
2807      riSlopeY = -intraPredAngle;
2808    }
2809  }
2810  else if( modeVer )
2811  {
2812    if( intraPredAngle > 0 )
2813    {
2814      riSlopeX = intraPredAngle;
2815      riSlopeY = -32;
2816    }
2817    else
2818    {
2819      riSlopeX = -intraPredAngle;
2820      riSlopeY = 32;
2821    }
2822  }
2823
2824  return true;
2825}
2826
2827Void 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 )
2828{
2829  ruhXs = 0;
2830  ruhYs = 0;
2831  ruhXe = 0;
2832  ruhYe = 0;
2833
2834  // scaling of start pos and block size to wedge resolution
2835  UInt uiScaledStartPosX = 0;
2836  UInt uiScaledStartPosY = 0;
2837  UInt uiScaledBlockSize = 0;
2838  WedgeResolution eWedgeRes = g_aeWedgeResolutionList[(UInt)g_aucConvertToBit[uiBlockSize]];
2839  switch( eWedgeRes )
2840  {
2841  case( DOUBLE_PEL ): { uiScaledStartPosX = (uiPMSPosX>>1); uiScaledStartPosY = (uiPMSPosY>>1); uiScaledBlockSize = (uiBlockSize>>1); break; }
2842  case(   FULL_PEL ): { uiScaledStartPosX =  uiPMSPosX;     uiScaledStartPosY =  uiPMSPosY;     uiScaledBlockSize =  uiBlockSize;     break; }
2843  case(   HALF_PEL ): { uiScaledStartPosX = (uiPMSPosX<<1); uiScaledStartPosY = (uiPMSPosY<<1); uiScaledBlockSize = (uiBlockSize<<1); break; }
2844  }
2845  Int iMaxPos = (Int)uiScaledBlockSize - 1;
2846
2847  // case above
2848  if( uiScaledStartPosX > 0 && uiScaledStartPosY == 0 )
2849  {
2850    ruhXs = (UChar)uiScaledStartPosX;
2851    ruhYs = 0;
2852
2853    if( iDeltaY == 0 )
2854    {
2855      if( iDeltaX < 0 )
2856      {
2857        ruhXe = 0;
2858        ruhYe = (UChar)std::min( std::max( iDeltaEnd, 0 ), iMaxPos );
2859        return;
2860      }
2861      else
2862      {
2863        ruhXe = (UChar)iMaxPos;
2864        ruhYe = (UChar)std::min( std::max( -iDeltaEnd, 0 ), iMaxPos );
2865        std::swap( ruhXs, ruhXe );
2866        std::swap( ruhYs, ruhYe );
2867        return;
2868      }
2869    }
2870
2871    // regular case
2872    Int iVirtualEndX = (Int)ruhXs + roftoi( (Double)iMaxPos * ((Double)iDeltaX / (Double)iDeltaY) );
2873
2874    if( iVirtualEndX < 0 )
2875    {
2876      Int iYe = roftoi( (Double)(0 - (Int)ruhXs) * ((Double)iDeltaY / (Double)iDeltaX) ) + iDeltaEnd;
2877      if( iYe < (Int)uiScaledBlockSize )
2878      {
2879        ruhXe = 0;
2880        ruhYe = (UChar)std::max( iYe, 0 );
2881        return;
2882      }
2883      else
2884      {
2885        ruhXe = (UChar)std::min( (iYe - iMaxPos), iMaxPos );
2886        ruhYe = (UChar)iMaxPos;
2887        return;
2888      }
2889    }
2890    else if( iVirtualEndX > iMaxPos )
2891    {
2892      Int iYe = roftoi( (Double)(iMaxPos - (Int)ruhXs) * ((Double)iDeltaY / (Double)iDeltaX) ) - iDeltaEnd;
2893      if( iYe < (Int)uiScaledBlockSize )
2894      {
2895        ruhXe = (UChar)iMaxPos;
2896        ruhYe = (UChar)std::max( iYe, 0 );
2897        std::swap( ruhXs, ruhXe );
2898        std::swap( ruhYs, ruhYe );
2899        return;
2900      }
2901      else
2902      {
2903        ruhXe = (UChar)std::max( (iMaxPos - (iYe - iMaxPos)), 0 );
2904        ruhYe = (UChar)iMaxPos;
2905        return;
2906      }
2907    }
2908    else
2909    {
2910      Int iXe = iVirtualEndX + iDeltaEnd;
2911      if( iXe < 0 )
2912      {
2913        ruhXe = 0;
2914        ruhYe = (UChar)std::max( (iMaxPos + iXe), 0 );
2915        return;
2916      }
2917      else if( iXe > iMaxPos )
2918      {
2919        ruhXe = (UChar)iMaxPos;
2920        ruhYe = (UChar)std::max( (iMaxPos - (iXe - iMaxPos)), 0 );
2921        std::swap( ruhXs, ruhXe );
2922        std::swap( ruhYs, ruhYe );
2923        return;
2924      }
2925      else
2926      {
2927        ruhXe = (UChar)iXe;
2928        ruhYe = (UChar)iMaxPos;
2929        return;
2930      }
2931    }
2932  }
2933
2934  // case left
2935  if( uiScaledStartPosY > 0 && uiScaledStartPosX == 0 )
2936  {
2937    ruhXs = 0;
2938    ruhYs = (UChar)uiScaledStartPosY;
2939
2940    if( iDeltaX == 0 )
2941    {
2942      if( iDeltaY < 0 )
2943      {
2944        ruhXe = (UChar)std::min( std::max( -iDeltaEnd, 0 ), iMaxPos );
2945        ruhYe = 0;
2946        std::swap( ruhXs, ruhXe );
2947        std::swap( ruhYs, ruhYe );
2948        return;
2949      }
2950      else
2951      {
2952        ruhXe = (UChar)std::min( std::max( iDeltaEnd, 0 ), iMaxPos );
2953        ruhYe = (UChar)iMaxPos;
2954        return; 
2955      }
2956    }
2957
2958    // regular case
2959    Int iVirtualEndY = (Int)ruhYs + roftoi( (Double)iMaxPos * ((Double)iDeltaY / (Double)iDeltaX) );
2960
2961    if( iVirtualEndY < 0 )
2962    {
2963      Int iXe = roftoi( (Double)(0 - (Int)ruhYs ) * ((Double)iDeltaX / (Double)iDeltaY) ) - iDeltaEnd;
2964      if( iXe < (Int)uiScaledBlockSize )
2965      {
2966        ruhXe = (UChar)std::max( iXe, 0 );
2967        ruhYe = 0;
2968        std::swap( ruhXs, ruhXe );
2969        std::swap( ruhYs, ruhYe );
2970        return;
2971      }
2972      else
2973      {
2974        ruhXe = (UChar)iMaxPos;
2975        ruhYe = (UChar)std::min( (iXe - iMaxPos), iMaxPos );
2976        std::swap( ruhXs, ruhXe );
2977        std::swap( ruhYs, ruhYe );
2978        return;
2979      }
2980    }
2981    else if( iVirtualEndY > (uiScaledBlockSize-1) )
2982    {
2983      Int iXe = roftoi( (Double)((Int)(uiScaledBlockSize-1) - (Int)ruhYs ) * ((Double)iDeltaX / (Double)iDeltaY) ) + iDeltaEnd;
2984      if( iXe < (Int)uiScaledBlockSize )
2985      {
2986        ruhXe = (UChar)std::max( iXe, 0 );
2987        ruhYe = (UChar)(uiScaledBlockSize-1);
2988        return;
2989      }
2990      else
2991      {
2992        ruhXe = (UChar)iMaxPos;
2993        ruhYe = (UChar)std::max( (iMaxPos - (iXe - iMaxPos)), 0 );
2994        std::swap( ruhXs, ruhXe );
2995        std::swap( ruhYs, ruhYe );
2996        return;
2997      }
2998    }
2999    else
3000    {
3001      Int iYe = iVirtualEndY - iDeltaEnd;
3002      if( iYe < 0 )
3003      {
3004        ruhXe = (UChar)std::max( (iMaxPos + iYe), 0 );
3005        ruhYe = 0;
3006        std::swap( ruhXs, ruhXe );
3007        std::swap( ruhYs, ruhYe );
3008        return;
3009      }
3010      else if( iYe > iMaxPos )
3011      {
3012        ruhXe = (UChar)std::max( (iMaxPos - (iYe - iMaxPos)), 0 );
3013        ruhYe = (UChar)iMaxPos;
3014        return;
3015      }
3016      else
3017      {
3018        ruhXe = (UChar)iMaxPos;
3019        ruhYe = (UChar)iYe;
3020        std::swap( ruhXs, ruhXe );
3021        std::swap( ruhYs, ruhYe );
3022        return;
3023      }
3024    }
3025  }
3026
3027  // case origin
3028  if( uiScaledStartPosX == 0 && uiScaledStartPosY == 0 )
3029  {
3030    if( iDeltaX*iDeltaY < 0 )
3031    {
3032      return;
3033    }
3034
3035    ruhXs = 0;
3036    ruhYs = 0;
3037
3038    if( iDeltaY == 0 )
3039    {
3040      ruhXe = (UChar)iMaxPos;
3041      ruhYe = 0;
3042      std::swap( ruhXs, ruhXe );
3043      std::swap( ruhYs, ruhYe );
3044      return;
3045    }
3046
3047    if( iDeltaX == 0 )
3048    {
3049      ruhXe = 0;
3050      ruhYe = (UChar)iMaxPos;
3051      return;
3052    }
3053
3054    Int iVirtualEndX = (Int)ruhXs + roftoi( (Double)iMaxPos * ((Double)iDeltaX / (Double)iDeltaY) );
3055
3056    if( iVirtualEndX > iMaxPos )
3057    {
3058      Int iYe = roftoi( (Double)((Int)iMaxPos - (Int)ruhXs) * ((Double)iDeltaY / (Double)iDeltaX) ) - iDeltaEnd;
3059      if( iYe < (Int)uiScaledBlockSize )
3060      {
3061        ruhXe = (UChar)(uiScaledBlockSize-1);
3062        ruhYe = (UChar)std::max( iYe, 0 );
3063        std::swap( ruhXs, ruhXe );
3064        std::swap( ruhYs, ruhYe );
3065        return;
3066      }
3067      else
3068      {
3069        ruhXe = (UChar)std::max( (iMaxPos - (iYe - iMaxPos)), 0 );
3070        ruhYe = (UChar)(uiScaledBlockSize-1);
3071        return;
3072      }
3073    }
3074    else
3075    {
3076      Int iXe = iVirtualEndX + iDeltaEnd;
3077      if( iXe < 0 )
3078      {
3079        ruhXe = 0;
3080        ruhYe = (UChar)std::max( (iMaxPos + iXe), 0 );
3081        return;
3082      }
3083      else if( iXe > iMaxPos )
3084      {
3085        ruhXe = (UChar)(uiScaledBlockSize-1);
3086        ruhYe = (UChar)std::max( (iMaxPos - (iXe - iMaxPos)), 0 );
3087        std::swap( ruhXs, ruhXe );
3088        std::swap( ruhYs, ruhYe );
3089        return;
3090      }
3091      else
3092      {
3093        ruhXe = (UChar)iXe;
3094        ruhYe = (UChar)(uiScaledBlockSize-1);
3095        return;
3096      }
3097    }
3098  }
3099}
3100#endif
3101
3102Void
3103TComPrediction::predIntraDepthAng(TComPattern* pcTComPattern, UInt uiDirMode, Pel* piPred, UInt uiStride, Int iWidth, Int iHeight )
3104{
3105  Pel*  pDst    = piPred;
3106  Int*  ptrSrc  = pcTComPattern->getAdiOrgBuf( iWidth, iHeight, m_piYuvExt );
3107  Int   sw      = ( iWidth<<1 ) + 1;
3108#if !LOGI_INTRA_NAME_3MPM
3109  uiDirMode     = g_aucAngIntraModeOrder[ uiDirMode ];
3110#endif
3111  xPredIntraAngDepth( ptrSrc+sw+1, sw, pDst, uiStride, iWidth, iHeight, uiDirMode );
3112}
3113
3114Int
3115TComPrediction::xGetDCDepth( Int* pSrc, Int iDelta, Int iBlkSize )
3116{
3117  Int iDC    = PDM_UNDEFINED_DEPTH;
3118  Int iSum   = 0;
3119  Int iNum   = 0;
3120  for( Int k = 0; k < iBlkSize; k++, pSrc += iDelta )
3121  {
3122    if( *pSrc != PDM_UNDEFINED_DEPTH )
3123    {
3124      iSum += *pSrc;
3125      iNum ++;
3126    }
3127  }
3128  if( iNum )
3129  {
3130    iDC = ( iSum + ( iNum >> 1 ) ) / iNum;
3131  }
3132  return iDC;
3133}
3134
3135Int
3136TComPrediction::xGetDCValDepth( Int iVal1, Int iVal2, Int iVal3, Int iVal4 )
3137{
3138  if     ( iVal1 != PDM_UNDEFINED_DEPTH )   return iVal1;
3139  else if( iVal2 != PDM_UNDEFINED_DEPTH )   return iVal2;
3140  else if( iVal3 != PDM_UNDEFINED_DEPTH )   return iVal3;
3141  return   iVal4;
3142}
3143
3144Void
3145TComPrediction::xPredIntraAngDepth( Int* pSrc, Int srcStride, Pel* pDst, Int dstStride, UInt width, UInt height, UInt dirMode )
3146{
3147  AOF( width == height );
3148  Int blkSize       = width;
3149  Int iDCAbove      = xGetDCDepth( pSrc - srcStride,                               1, blkSize );
3150  Int iDCAboveRight = xGetDCDepth( pSrc - srcStride + blkSize,                     1, blkSize );
3151  Int iDCLeft       = xGetDCDepth( pSrc -         1,                       srcStride, blkSize );
3152  Int iDCBelowLeft  = xGetDCDepth( pSrc -         1 + blkSize * srcStride, srcStride, blkSize );
3153  Int iWgt, iDC1, iDC2;
3154  if( dirMode < 2 ) // 1..2
3155  {
3156    iDC1  = xGetDCValDepth( iDCAbove, iDCAboveRight, iDCLeft,  iDCBelowLeft  );
3157    iDC2  = xGetDCValDepth( iDCLeft,  iDCBelowLeft,  iDCAbove, iDCAboveRight );
3158    iWgt  = 8;
3159  }
3160  else if( dirMode < 11 ) // 3..10
3161  {
3162    iDC1  = xGetDCValDepth( iDCLeft,  iDCBelowLeft,  iDCAbove, iDCAboveRight );
3163    iDC2  = xGetDCValDepth( iDCBelowLeft,  iDCLeft,  iDCAbove, iDCAboveRight );
3164    iWgt  = 6 + dirMode; 
3165  }
3166  else if( dirMode < 27 ) // 11..26
3167  {
3168    iDC1  = xGetDCValDepth( iDCAbove, iDCAboveRight, iDCLeft,  iDCBelowLeft  );
3169    iDC2  = xGetDCValDepth( iDCLeft,  iDCBelowLeft,  iDCAbove, iDCAboveRight );
3170    iWgt  = dirMode - 10;
3171  }
3172  else if( dirMode < 35 ) // 27..34
3173  {
3174    iDC1  = xGetDCValDepth( iDCAbove, iDCAboveRight, iDCLeft,  iDCBelowLeft  );
3175    iDC2  = xGetDCValDepth( iDCAboveRight, iDCAbove, iDCLeft,  iDCBelowLeft  );
3176    iWgt  = 42 - dirMode;
3177  }
3178  else // (wedgelet -> use simple DC prediction
3179  {
3180    iDC1  = xGetDCValDepth( iDCAbove, iDCAboveRight, iDCLeft,  iDCBelowLeft  );
3181    iDC2  = xGetDCValDepth( iDCLeft,  iDCBelowLeft,  iDCAbove, iDCAboveRight );
3182    iWgt  = 8;
3183  }
3184  Int iWgt2   = 16 - iWgt;
3185  Int iDCVal  = ( iWgt * iDC1 + iWgt2 * iDC2 + 8 ) >> 4;
3186
3187  // set depth
3188  for( Int iY = 0; iY < blkSize; iY++, pDst += dstStride )
3189  {
3190    for( Int iX = 0; iX < blkSize; iX++ )
3191    {
3192      pDst[ iX ] = iDCVal;
3193    }
3194  }
3195}
3196
3197//! \}
Note: See TracBrowser for help on using the repository browser.