Changeset 58 in 3DVCSoftware for trunk/source


Ignore:
Timestamp:
14 May 2012, 20:52:00 (13 years ago)
Author:
hschwarz
Message:

updated configuration files

Location:
trunk/source
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/source/App/TAppEncoder/TAppEncCfg.cpp

    r56 r58  
    859859      xConfirmPara( m_pchBaseViewCameraNumbers  == 0                             ,   "BaseViewCameraNumbers must be given" );
    860860      xConfirmPara( m_iNumberOfViews != m_cCameraData.getBaseViewNumbers().size(),   "Number of Views in BaseViewCameraNumbers must be equal to NumberOfViews" );
    861       xConfirmPara( m_uiVSOMode < 0 || m_uiVSOMode > 4 ,                             "VSO Mode must be greater than or equal to 0 and less than 5");
     861      xConfirmPara( m_uiVSOMode > 4 ,                                                "VSO Mode must be less than 5");
    862862    }
    863863#endif
  • trunk/source/Lib/TLibEncoder/TEncSbac.cpp

    r56 r58  
    746746    if( bUseMVI )
    747747    {
    748       uiUnaryIdx = HHI_MPI_MERGE_POS;
    749     }
    750     else if( uiUnaryIdx >= HHI_MPI_MERGE_POS )
     748      uiUnaryIdx = (UInt)HHI_MPI_MERGE_POS;
     749    }
     750    else if( (Int)uiUnaryIdx >= (Int)HHI_MPI_MERGE_POS )
    751751    {
    752752      uiUnaryIdx++;
Note: See TracChangeset for help on using the changeset viewer.