Ignore:
Timestamp:
14 Aug 2013, 21:05:40 (12 years ago)
Author:
hisilicon-htm
Message:

JCT3V-E0238: Fast Intra Prediction Mode Selection for Intra Depth Map Coding

Location:
branches/HTM-DEV-2.0-dev3-SCU-Hisilicon/source/Lib/TLibCommon
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-DEV-2.0-dev3-SCU-Hisilicon/source/Lib/TLibCommon/TComRdCost.cpp

    r537 r573  
    483483
    484484}
     485
     486#if SCU_HS_FAST_DEPTH_INTRA_E0238
     487
     488UInt TComRdCost::calcVAR (Pel* pi0, Int iStride, Int cuDepth)
     489{
     490  UInt uiSum = 0;
     491  Int x, y;
     492  Int temp = 0;
     493  if (iStride == 4)
     494      cuDepth = 4;
     495
     496  for (x = 0; x < iStride; x++)
     497  {
     498      for (y = 0; y < iStride; y++)
     499      {
     500         temp += pi0[x*iStride+y];
     501      }
     502  }
     503  temp = temp >> (6-cuDepth)*2;
     504
     505  for (x = 0; x < iStride; x++)
     506  {
     507      for (y = 0; y < iStride; y++)
     508      {
     509         uiSum += (pi0[x*iStride+y]-temp)*(pi0[x*iStride+y]-temp);
     510      }
     511  }
     512  return (uiSum >> (6-cuDepth)*2);
     513
     514}
     515#endif
     516
    485517
    486518#if WEIGHTED_CHROMA_DISTORTION
  • branches/HTM-DEV-2.0-dev3-SCU-Hisilicon/source/Lib/TLibCommon/TComRdCost.h

    r537 r573  
    228228 
    229229  UInt    calcHAD(Int bitDepth, Pel* pi0, Int iStride0, Pel* pi1, Int iStride1, Int iWidth, Int iHeight );
    230  
     230#if SCU_HS_FAST_DEPTH_INTRA_E0238
     231  UInt    calcVAR (Pel* pi0, Int iStride, Int cuDepth);
     232#endif 
    231233  // for motion cost
    232234#if !FIX203
  • branches/HTM-DEV-2.0-dev3-SCU-Hisilicon/source/Lib/TLibCommon/TypeDef.h

    r572 r573  
    181181                                              // LG_ZEROINTRADEPTHRESI_A0087
    182182#define SCU_HS_DMM4_REMOVE_DIV_E0242      1   // DMM4 Division Removal
     183#define SCU_HS_FAST_DEPTH_INTRA_E0238     1   // Fast DMM and RBC Mode Selection
    183184#if H_3D_DIM_SDC
    184185#define LGE_SDC_REMOVE_DC_E0158           1   // Removal of DC mode from SDC
Note: See TracChangeset for help on using the changeset viewer.