Changeset 1064 in 3DVCSoftware for branches/HTM-12.0-dev1/source/Lib
- Timestamp:
- 10 Oct 2014, 21:05:07 (11 years ago)
- Location:
- branches/HTM-12.0-dev1/source/Lib/TLibCommon
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-12.0-dev1/source/Lib/TLibCommon/TComDataCU.cpp
r1048 r1064 6164 6164 TComMv cMv; 6165 6165 #if MTK_I0093 6166 Int iDisp = getSlice()->getDepthToDisparityB( 0 )[ 1 << ( getSlice()->getSPS()->getBitDepthY() - 1 ) ]; 6166 #if H_3D_FIX_64BIT_SHIFT 6167 Int iDisp = getSlice()->getDepthToDisparityB( 0 )[ (Int64) (1 << ( getSlice()->getSPS()->getBitDepthY() - 1 )) ]; 6168 #else 6169 Int iDisp = getSlice()->getDepthToDisparityB( 0 )[ 1 << ( getSlice()->getSPS()->getBitDepthY() - 1 ) ]; 6170 #endif 6167 6171 #else 6168 6172 Int iDisp = getSlice()->getDepthToDisparityB( 0 )[ 128 ]; -
branches/HTM-12.0-dev1/source/Lib/TLibCommon/TComSlice.cpp
r1063 r1064 2309 2309 for ( i = 0; i < iNumViews ; i++ ) 2310 2310 { 2311 #if H_3D_FIX_UNINIT 2312 m_bCamParPresent[i] = false; 2313 #endif 2311 2314 m_bCamParInSliceHeader[i] = false; 2312 2315 m_aaaiCodedScale[i] = new Int*[ 2 ]; -
branches/HTM-12.0-dev1/source/Lib/TLibCommon/TypeDef.h
r1062 r1064 55 55 56 56 #ifndef HEVC_EXT 57 #define HEVC_EXT 157 #define HEVC_EXT 2 58 58 #endif 59 59 … … 228 228 #endif 229 229 230 #define H_3D_FIX_UNINIT 1 // Fix uninitialized flag 230 231 #define H_3D_INTER_SDC 1 // INTER SDC, Inter simplified depth coding 231 232 // LGE_INTER_SDC_E0156 Enable inter SDC for depth coding … … 281 282 #define SEC_HLS_CLEANUP_I0100 1 282 283 284 #define H_3D_FIX_64BIT_SHIFT 1 283 285 #endif // H_3D 284 286 … … 405 407 #define H_MV_HLS10_AUX 1 // Auxiliary pictures 406 408 #define H_MV_HLS10_GEN_FIX 1 409 #define H_MV_FIX_LOOP_GOPSIZE 1 410 #define H_MV_FIX_SUB_LAYERS_MAX_MINUS1 1 407 411 408 412 #define H_MV_HLS10_GEN_VSP_CONF_WIN 1 // VPS conformance window … … 415 419 #define H_MV_HLS10_PTL 1 // profile tier level 416 420 #define H_MV_HLS10_PTL_FIX 1 // profile tier level fix 421 #define H_MV_HLS10_PTL_INBL_FIX 1 // profile tier level fix 417 422 #define H_MV_HLS10_PTL_INFER_FIX 1 // fix inference ptl 418 423 #define H_MV_HLS10_MULTILAYERSPS 1 // multilayer SPS extension … … 1013 1018 #if H_MV_HLS10_PTL 1014 1019 MULTIVIEWMAIN = 6, 1015 MAIN3D = 5,1016 1020 #if H_3D 1017 1021 MAIN3D = 8,
Note: See TracChangeset for help on using the changeset viewer.