Changeset 956 in 3DVCSoftware
- Timestamp:
- 1 May 2014, 02:56:23 (11 years ago)
- Location:
- branches/HTM-11.0-dev0-Qualcomm
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-11.0-dev0-Qualcomm/cfg/3D-HEVC/baseCfg_3view.cfg
r950 r956 191 191 ViewSynthesisPred : 0 # View synthesis prediction 192 192 DepthRefinement : 0 # Dispary refined by depth DoNBDV 193 IvMvScaling : 1 # Interview motion vector scaling 194 SubPULog2Size : 3 # Log2 of sub-PU size for IvMvPred (2...6) 195 SubPUMPILog2Size : 3 # Log2 of sub-PU size for MPI (3...6) 196 DBBP : 0 # Depth-based Block Partitioning 193 197 194 198 ### DO NOT ADD ANYTHING BELOW THIS LINE ### -
branches/HTM-11.0-dev0-Qualcomm/source/App/TAppEncoder/TAppEncCfg.cpp
r950 r956 1591 1591 xConfirmPara( m_pchCameraParameterFile == 0 , "CameraParameterFile must be given"); 1592 1592 xConfirmPara( m_pchBaseViewCameraNumbers == 0 , "BaseViewCameraNumbers must be given" ); 1593 #if BUG_FIX_TK65 1594 xConfirmPara( ( ((UInt) m_numberOfLayers >> 1 ) != m_cCameraData.getBaseViewNumbers().size() ) && ( m_numberOfLayers != m_cCameraData.getBaseViewNumbers().size() ), "Number of Views in BaseViewCameraNumbers must be equal to NumberOfViews" ); 1595 #else 1593 1596 xConfirmPara( ((UInt) m_numberOfLayers >> 1 ) != m_cCameraData.getBaseViewNumbers().size(), "Number of Views in BaseViewCameraNumbers must be equal to NumberOfViews" ); 1597 #endif 1594 1598 xConfirmPara ( m_iCodedCamParPrecision < 0 || m_iCodedCamParPrecision > 5, "CodedCamParsPrecision must be in range of 0..5" ); 1595 1599 #if H_3D_VSO -
branches/HTM-11.0-dev0-Qualcomm/source/Lib/TLibCommon/TComDataCU.cpp
r950 r956 6830 6830 #else 6831 6831 picDepth = getSlice()->getIvPic( true, iTargetViewIdx ); 6832 #if !BUG_FIX_TK65 6832 6833 assert(picDepth != NULL); 6834 #endif 6833 6835 #endif 6834 6836 if (picDepth && bDepthRefine) … … 6901 6903 #else 6902 6904 TComPic* picDepth = getSlice()->getIvPic( true, pDInfo->m_aVIdxCan ); 6905 #if !BUG_FIX_TK65 6903 6906 assert(picDepth!=NULL); 6907 #endif 6904 6908 #endif 6905 6909 … … 6960 6964 #else 6961 6965 picDepth = getSlice()->getIvPic( true, viewIndex ); 6966 #if !BUG_FIX_TK65 6962 6967 assert(picDepth!=NULL); 6968 #endif 6963 6969 #endif 6964 6970 if (picDepth && bDepthRefine) … … 7060 7066 #else 7061 7067 picDepth = getSlice()->getIvPic (true, refViewIdx ); 7068 #if !BUG_FIX_TK65 7062 7069 assert(picDepth != NULL); 7070 #endif 7063 7071 #endif 7064 7072 UInt uiPartIdx = 0; //Notes from MTK: Please confirm that using 0 as partition index and partition address is correct for CU-level DoNBDV -
branches/HTM-11.0-dev0-Qualcomm/source/Lib/TLibCommon/TComSlice.cpp
r950 r956 1936 1936 } 1937 1937 } 1938 #if !BUG_FIX_TK65 1938 1939 assert( foundLayerIdinNuh != -1 ); 1939 1940 #endif 1940 1941 return foundLayerIdinNuh; 1941 1942 } -
branches/HTM-11.0-dev0-Qualcomm/source/Lib/TLibCommon/TypeDef.h
r950 r956 66 66 67 67 #define NTT_BUG_FIX_TK54 1 68 68 #define BUG_FIX_TK65 1 69 69 70 70 /////////////////////////////////////////////////////////////////////////////////////////
Note: See TracChangeset for help on using the changeset viewer.