Changeset 58 in 3DVCSoftware for trunk/source
- Timestamp:
- 14 May 2012, 20:52:00 (13 years ago)
- Location:
- trunk/source
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/App/TAppEncoder/TAppEncCfg.cpp
r56 r58 859 859 xConfirmPara( m_pchBaseViewCameraNumbers == 0 , "BaseViewCameraNumbers must be given" ); 860 860 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 andless than 5");861 xConfirmPara( m_uiVSOMode > 4 , "VSO Mode must be less than 5"); 862 862 } 863 863 #endif -
trunk/source/Lib/TLibEncoder/TEncSbac.cpp
r56 r58 746 746 if( bUseMVI ) 747 747 { 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 ) 751 751 { 752 752 uiUnaryIdx++;
Note: See TracChangeset for help on using the changeset viewer.