Changeset 603 in 3DVCSoftware for branches/HTM-DEV-2.0-dev0/source/App


Ignore:
Timestamp:
31 Aug 2013, 01:49:56 (11 years ago)
Author:
tech
Message:

Preliminary integrations:

  • minor cleanups
  • fix of renderer inpainting
  • fix of warning
Location:
branches/HTM-DEV-2.0-dev0/source/App
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-DEV-2.0-dev0/source/App/TAppEncoder/TAppEncTop.cpp

    r598 r603  
    772772  printRateSummary();
    773773
     774#if H_3D_FIX_REN_WARNING
     775  Double dMaxDispDiff = m_cCameraData.getMaxShiftDeviation();
     776
     777  if ( !(dMaxDispDiff < 0) )
     778  { 
     779    printf("\n Max. possible shift error: %12.3f samples.\n", dMaxDispDiff );
     780  }
     781#endif
     782
    774783  return;
    775784}
  • branches/HTM-DEV-2.0-dev0/source/App/TAppRenderer/TAppRendererTop.cpp

    r446 r603  
    476476    renderUsedPelsMap( );
    477477      break;
    478 
    479478  default:
    480479    AOT(true);
    481480  }
     481
     482#if H_3D_FIX_REN_WARNING
     483  Double dMaxDispDiff = m_cCameraData.getMaxShiftDeviation();
     484
     485  if ( !(dMaxDispDiff < 0) )
     486  { 
     487    printf("\n Max. possible shift error: %12.3f samples.\n", dMaxDispDiff );
     488  }
     489#endif
    482490}
    483491
     
    937945  while ( ( ( iNumOfRenderedFrames < m_iFramesToBeRendered ) || ( m_iFramesToBeRendered == 0 ) ) && !bAnyEOS )
    938946  {
    939 
    940 
    941947    if ( iFrame >= m_iFrameSkip )
    942948    {     
Note: See TracChangeset for help on using the changeset viewer.