Changeset 41 in SHVCSoftware


Ignore:
Timestamp:
20 Feb 2013, 23:53:32 (12 years ago)
Author:
seregin
Message:

disable unused code with NO_RESIDUAL_FLAG_FOR_BLPRED, reported by Elena Alshina

Location:
branches/SHM-1.1-dev/source/Lib
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-1.1-dev/source/Lib/TLibCommon/TComDataCU.cpp

    r40 r41  
    48424842}
    48434843
    4844 #if INTRA_BL
     4844#if INTRA_BL && !NO_RESIDUAL_FLAG_FOR_BLPRED
    48454845Void TComDataCU::getBaseLumaBlk ( UInt uiWidth, UInt uiHeight, UInt uiAbsPartIdx, Pel* piPred, UInt uiStride )
    48464846{
  • branches/SHM-1.1-dev/source/Lib/TLibCommon/TComDataCU.h

    r28 r41  
    526526  // -------------------------------------------------------------------------------------------------------------------
    527527 
    528 #if INTRA_BL
     528#if INTRA_BL && !NO_RESIDUAL_FLAG_FOR_BLPRED
    529529  Void          getBaseLumaBlk   ( UInt uiWidth, UInt uiHeight, UInt uiAbsPartIdx, Pel* piPred, UInt uiStride );
    530530  Void          getBaseChromaBlk ( UInt uiWidth, UInt uiHeight, UInt uiAbsPartIdx, Pel* piPred, UInt uiStride, UInt uiChromaId );
  • branches/SHM-1.1-dev/source/Lib/TLibCommon/TComPrediction.cpp

    r2 r41  
    407407}
    408408
    409 #if INTRA_BL
     409#if INTRA_BL && !NO_RESIDUAL_FLAG_FOR_BLPRED
    410410Void TComPrediction::getBaseBlk( TComDataCU* pcCU, TComYuv* pcYuvPred, Int iPartAddr, Int iWidth, Int iHeight )
    411411{
  • branches/SHM-1.1-dev/source/Lib/TLibDecoder/TDecCu.cpp

    r17 r41  
    546546 
    547547  //===== get prediction signal =====
    548 #if INTRA_BL
     548#if INTRA_BL && !NO_RESIDUAL_FLAG_FOR_BLPRED
    549549  if(pcCU->isIntraBL ( uiAbsPartIdx ) )
    550550  {
     
    651651 
    652652  //===== get prediction signal =====
    653 #if INTRA_BL
     653#if INTRA_BL && !NO_RESIDUAL_FLAG_FOR_BLPRED
    654654  if(pcCU->isIntraBL ( uiAbsPartIdx ) )
    655655  {
  • branches/SHM-1.1-dev/source/Lib/TLibEncoder/TEncSearch.cpp

    r33 r41  
    10571057    pcCU->getPattern()->initAdiPattern( pcCU, uiAbsPartIdx, uiTrDepth, m_piYuvExt, m_iYuvExtStride, m_iYuvExtHeight, bAboveAvail, bLeftAvail );
    10581058    //===== get prediction signal =====
    1059 #if INTRA_BL
     1059#if INTRA_BL && !NO_RESIDUAL_FLAG_FOR_BLPRED
    10601060    if(pcCU->isIntraBL ( uiAbsPartIdx ) )
    10611061    {
     
    12591259
    12601260    //===== get prediction signal =====
    1261 #if INTRA_BL
     1261#if INTRA_BL && !NO_RESIDUAL_FLAG_FOR_BLPRED
    12621262  if(pcCU->isIntraBL ( uiAbsPartIdx ) )
    12631263  {
Note: See TracChangeset for help on using the changeset viewer.