Changeset 868 in 3DVCSoftware
- Timestamp:
- 25 Mar 2014, 12:11:22 (11 years ago)
- Location:
- branches/HTM-10.0-dev0/source/Lib/TLibCommon
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-10.0-dev0/source/Lib/TLibCommon/CommonDef.h
r854 r868 60 60 61 61 #if H_MV 62 #define NV_VERSION "10.0 "///< Current software version62 #define NV_VERSION "10.0r1" ///< Current software version 63 63 #define HM_VERSION "13.0" ///< 64 64 #else -
branches/HTM-10.0-dev0/source/Lib/TLibCommon/TComDataCU.cpp
r852 r868 4718 4718 4719 4719 TComMvField cMVField; 4720 #if !HTM10RC1_FIX 4720 4721 UChar ucInterDir = pcTextureCU->getInterDir( uiPartIdx ); 4721 4722 #endif 4722 4723 Int iDV = 0; 4723 4724 Int iViewIdx = 0; 4725 #if !HTM10RC1_FIX 4724 4726 if( ucInterDir & 1 ) 4725 4727 { 4728 #endif 4726 4729 pcTextureCU->getMvField( pcTextureCU, uiPartIdx, REF_PIC_LIST_0, cMVField ); 4730 #if HTM10RC1_FIX 4731 if( cMVField.getRefIdx() >= 0 ) 4732 { 4733 #endif 4727 4734 if( pcTextureSlice->getRefPOC( REF_PIC_LIST_0, cMVField.getRefIdx()) == pcTextureSlice->getPOC() ) 4728 4735 { … … 4744 4751 } 4745 4752 } 4753 4754 #if !HTM10RC1_FIX 4746 4755 if( !tmpDir && ( ucInterDir & 2 )) 4747 4756 { 4757 #endif 4748 4758 pcTextureCU->getMvField( pcTextureCU, uiPartIdx, REF_PIC_LIST_1, cMVField ); 4759 4760 #if HTM10RC1_FIX 4761 if( !tmpDir && cMVField.getRefIdx() >= 0 ) 4762 { 4763 #endif 4749 4764 if( pcTextureSlice->getRefPOC( REF_PIC_LIST_1, cMVField.getRefIdx()) == pcTextureSlice->getPOC() ) 4750 4765 { -
branches/HTM-10.0-dev0/source/Lib/TLibCommon/TypeDef.h
r866 r868 55 55 56 56 #ifndef HEVC_EXT 57 #define HEVC_EXT 157 #define HEVC_EXT 2 58 58 #endif 59 59 … … 279 279 280 280 #define MTK_DDD_G0063 1 // Disparity derived depth coding 281 #define HTM10RC1_FIX 1 // Fix of DDD 282 281 283 282 284 #if H_3D_VSP
Note: See TracChangeset for help on using the changeset viewer.