Ignore:
Timestamp:
28 Mar 2012, 10:04:50 (12 years ago)
Author:
poznan-univ
Message:

Linux bug fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/0.3-poznan-univ/source/App/TAppRenderer/TAppRendererCfg.cpp

    r28 r45  
    183183  m_bUseSetupString = ( m_pchViewConfig != NULL ) && ( m_iRenderMode != 0);
    184184
     185#if POZNAN_NONLINEAR_DEPTH     
     186  TComNonlinearDepthModel cNonlinearDepthModel;
     187  cNonlinearDepthModel.Clear();
     188  cNonlinearDepthModel.Init();
     189#endif
     190
    185191  if ( m_iRenderMode == 10 )
    186192  {
     
    188194      m_pchCameraParameterFile, m_pchBaseViewCameraNumbers, NULL, NULL, m_iLog2SamplingFactor+m_iShiftPrecision
    189195#if POZNAN_NONLINEAR_DEPTH     
    190       ,1.0f
     196      ,&cNonlinearDepthModel
    191197#endif
    192198      );
     
    211217      m_pchCameraParameterFile, m_pchBaseViewCameraNumbers, NULL, piaTempViews, m_iLog2SamplingFactor+m_iShiftPrecision
    212218#if POZNAN_NONLINEAR_DEPTH
    213       , 1.0f
     219      , &cNonlinearDepthModel
    214220#endif
    215221      );
     
    220226      m_pchCameraParameterFile, m_pchBaseViewCameraNumbers, m_pchSynthViewCameraNumbers, NULL, m_iLog2SamplingFactor+m_iShiftPrecision
    221227#if POZNAN_NONLINEAR_DEPTH
    222       ,1.0f
     228      ,&cNonlinearDepthModel
    223229#endif
    224230      );
     
    292298
    293299  xConfirmPara( m_iPreFilterSize      < 0 || m_iPreFilterSize      >  3, "PreFilterSize      must be more than or equal to 0 and less than 4" );
     300#if POZNAN_ENCODE_ONLY_DISOCCLUDED_CU
     301  xConfirmPara( m_iBlendMode          < 0 || m_iBlendMode          >  4, "BlendMode          must be more than or equal to 0 and less than 5"  );
     302#else
    294303  xConfirmPara( m_iBlendMode          < 0 || m_iBlendMode          >  3, "BlendMode          must be more than or equal to 0 and less than 4"  );
     304#endif
    295305  xConfirmPara( m_iBlendZThresPerc    < 0 || m_iBlendZThresPerc    > 100,"BlendZThresPerc    must be more than or equal to 0 and less than 101"  );
    296306  xConfirmPara( m_iBlendHoleMargin    < 0 || m_iBlendHoleMargin    >  20,"BlendHoleMargin    must be more than or equal to 0 and less than 19"  );
Note: See TracChangeset for help on using the changeset viewer.