Ignore:
Timestamp:
14 Feb 2013, 23:41:41 (12 years ago)
Author:
tech
Message:

Integration of branch dev 2.

File:
1 edited

Legend:

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

    r275 r280  
    847847}
    848848
    849 
     849#if MTK_MDIVRP_C0138
     850Void TComPrediction::residualPrediction(TComDataCU* pcCU, TComYuv* pcYuvPred, TComYuv* pcYuvResPred)
     851{
     852  Int         iWidth;
     853  Int         iHeight;
     854  UInt        uiPartAddr;
     855
     856  pcCU->getPartIndexAndSize( 0, uiPartAddr, iWidth, iHeight );
     857
     858  Bool bResAvail = false;
     859
     860  bResAvail = pcCU->getResidualSamples( 0,
     861#if QC_SIMPLIFIEDIVRP_M24938
     862    true,
     863#endif
     864    pcYuvResPred );
     865
     866  assert (bResAvail);
     867
     868  pcYuvPred->add(pcYuvResPred, iWidth, iHeight);
     869}
     870#endif
    850871
    851872#if DEPTH_MAP_GENERATION
Note: See TracChangeset for help on using the changeset viewer.