Changeset 1123 in 3DVCSoftware
- Timestamp:
- 8 Nov 2014, 22:14:15 (10 years ago)
- Location:
- branches/HTM-12.2-dev0/source/Lib
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-12.2-dev0/source/Lib/TLibCommon/TypeDef.h
r1122 r1123 237 237 #define H_3D_SINGLE_DEPTH 1 // Single depth mode proposed in JCT3V-I0095 238 238 #define MTK_SINGLE_DEPTH_VPS_FLAG_J0060 1 // Add VPS control flags and remove slice header control flag for single depth, JCT3V-J0060 239 #define ALIGN_J0060_J0107 1 // Aligment of changed tool parameters 239 #define ALIGN_J0060_J0107 1 // Alignment of changed tool parameters 240 #define ALGIN_J0107_J0059 1 // Alignment of changed tool parameters 240 241 241 242 #define MTK_J0033 1 -
branches/HTM-12.2-dev0/source/Lib/TLibDecoder/TDecCAVLC.cpp
r1119 r1123 2744 2744 #if H_3D_IV_MERGE 2745 2745 #if HHI_TOOL_PARAMETERS_I2_J0107 2746 #if ALGIN_J0107_J0059 2747 rpcSlice->setMaxNumMergeCand(( ( rpcSlice->getMpiFlag() || rpcSlice->getIvMvPredFlag() || rpcSlice->getViewSynthesisPredFlag() ) ? MRG_MAX_NUM_CANDS_MEM : MRG_MAX_NUM_CANDS) - uiCode); 2748 #else 2746 2749 rpcSlice->setMaxNumMergeCand(( ( rpcSlice->getMpiFlag() || rpcSlice->getIvMvPredFlag() ) ? MRG_MAX_NUM_CANDS_MEM : MRG_MAX_NUM_CANDS) - uiCode); 2750 #endif 2747 2751 #else 2748 2752 if(rpcSlice->getIsDepth()) -
branches/HTM-12.2-dev0/source/Lib/TLibEncoder/TEncCavlc.cpp
r1119 r1123 2154 2154 { 2155 2155 #if H_3D_IV_MERGE 2156 #if HHI_TOOL_PARAMETERS_I2_J0107 2156 #if HHI_TOOL_PARAMETERS_I2_J0107 2157 #if ALGIN_J0107_J0059 2158 WRITE_UVLC( ( ( pcSlice->getMpiFlag( ) || pcSlice->getIvMvPredFlag( ) || pcSlice->getViewSynthesisPredFlag( ) ) ? MRG_MAX_NUM_CANDS_MEM : MRG_MAX_NUM_CANDS ) - pcSlice->getMaxNumMergeCand(), "five_minus_max_num_merge_cand"); 2159 #else 2157 2160 WRITE_UVLC( ( ( pcSlice->getMpiFlag( ) || pcSlice->getIvMvPredFlag( ) ) ? MRG_MAX_NUM_CANDS_MEM : MRG_MAX_NUM_CANDS ) - pcSlice->getMaxNumMergeCand(), "five_minus_max_num_merge_cand"); 2161 #endif 2158 2162 #else 2159 2163 if(pcSlice->getIsDepth()) -
branches/HTM-12.2-dev0/source/Lib/TLibEncoder/TEncSlice.cpp
r1119 r1123 614 614 #if H_3D_IV_MERGE 615 615 #if HHI_TOOL_PARAMETERS_I2_J0107 616 #if ALGIN_J0107_J0059 617 rpcSlice->setMaxNumMergeCand ( m_pcCfg->getMaxNumMergeCand() + ( ( rpcSlice->getMpiFlag( ) || rpcSlice->getIvMvPredFlag( ) || rpcSlice->getViewSynthesisPredFlag( ) ) ? 1 : 0 )); 618 #else 616 619 rpcSlice->setMaxNumMergeCand ( m_pcCfg->getMaxNumMergeCand() + ( ( rpcSlice->getMpiFlag( ) || rpcSlice->getIvMvPredFlag( ) ) ? 1 : 0 )); 620 #endif 617 621 #else 618 622 if(rpcSlice->getIsDepth())
Note: See TracChangeset for help on using the changeset viewer.