Ignore:
Timestamp:
27 Mar 2014, 22:31:12 (10 years ago)
Author:
tech
Message:

Cleanups part 4.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-10.1-dev0/source/Lib/TLibCommon/TComPrediction.cpp

    r878 r879  
    24722472  if( bL == bT )
    24732473  {
    2474 #if SCU_HS_DEPTH_DC_PRED_G0143
    24752474    const Int  iTRR = ( patternStride * 2 - 1  ) - srcStride;
    24762475    const Int  iLBB = ( patternStride * 2 - 1  ) * srcStride - 1;
    24772476    refDC1 = bL ? ( ptrSrc[iTR] + ptrSrc[iLB] )>>1 : (abs(ptrSrc[iTRR] - ptrSrc[-(Int)srcStride]) > abs(ptrSrc[iLBB] - ptrSrc[ -1]) ? ptrSrc[iTRR] : ptrSrc[iLBB]);
    2478 #else
    2479     refDC1 = bL ? ( ptrSrc[iTR] + ptrSrc[iLB] )>>1 : 1<<( g_bitDepthY - 1 );
    2480 #endif
    24812477    refDC2 =      ( ptrSrc[ -1] + ptrSrc[-(Int)srcStride] )>>1;
    24822478  }
Note: See TracChangeset for help on using the changeset viewer.