Changeset 646 in 3DVCSoftware for branches/HTM-8.2-dev0-Cleanup/source/App
- Timestamp:
- 19 Oct 2013, 02:18:06 (11 years ago)
- Location:
- branches/HTM-8.2-dev0-Cleanup/source/App
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-8.2-dev0-Cleanup/source/App/TAppDecoder/TAppDecTop.cpp
r622 r646 311 311 TComPic* picLastCoded = m_ivPicLists.getPic( m_tDecTop[dI]->getLayerId(), pocLastPic ); 312 312 assert( picLastCoded != NULL ); 313 #if MTK_SONY_PROGRESSIVE_MV_COMPRESSION_E0170314 313 picLastCoded->compressMotion(1); 315 #else316 picLastCoded->compressMotion();317 #endif318 314 } 319 315 } -
branches/HTM-8.2-dev0-Cleanup/source/App/TAppEncoder/TAppEncCfg.cpp
r638 r646 521 521 ("IlluCompEnable", m_abUseIC, std::vector<Bool>(2, true), "Enable illumination compensation") 522 522 #endif 523 #if LGE_INTER_SDC_E0156523 #if H_3D_INTER_SDC 524 524 ("InterSDC", m_bDepthInterSDCFlag, true, "Enable depth inter SDC") 525 525 #endif … … 2476 2476 printf("DLT:%d ", m_useDLT ); 2477 2477 #endif 2478 #if LGE_INTER_SDC_E01562478 #if H_3D_INTER_SDC 2479 2479 printf( "interSDC: %d ", m_bDepthInterSDCFlag ? 1 : 0 ); 2480 2480 #endif -
branches/HTM-8.2-dev0-Cleanup/source/App/TAppEncoder/TAppEncCfg.h
r638 r646 473 473 Bool m_bUsePC; ///< flag for using Predictive Coding with QTL 474 474 #endif 475 #if LGE_INTER_SDC_E0156475 #if H_3D_INTER_SDC 476 476 Bool m_bDepthInterSDCFlag; ///< flag for inter SDC of depth map coding 477 477 #endif -
branches/HTM-8.2-dev0-Cleanup/source/App/TAppEncoder/TAppEncTop.cpp
r638 r646 232 232 #endif 233 233 //====== Depth Inter SDC ========= 234 #if LGE_INTER_SDC_E0156234 #if H_3D_INTER_SDC 235 235 m_cTEncTop.setInterSDCEnable ( isDepth ? m_bDepthInterSDCFlag : false ); 236 236 #endif … … 1699 1699 vps.setViewSynthesisPredFlag( layer, !isLayerZero && !isDepth && m_viewSynthesisPredFlag ); 1700 1700 #endif 1701 #if LGE_INTER_SDC_E01561701 #if H_3D_INTER_SDC 1702 1702 vps.setInterSDCFlag( layer, !isLayerZero && isDepth && m_bDepthInterSDCFlag ); 1703 1703 #endif
Note: See TracChangeset for help on using the changeset viewer.