Changeset 262 in 3DVCSoftware for branches/HTM-5.1-dev2-Sony/source/App
- Timestamp:
- 7 Feb 2013, 06:01:05 (12 years ago)
- Location:
- branches/HTM-5.1-dev2-Sony/source/App
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-5.1-dev2-Sony/source/App/TAppDecoder/TAppDecTop.cpp
r210 r262 96 96 #endif 97 97 98 #if SONY_COLPIC_AVAILABILITY99 m_tDecTop[0]->setViewOrderIdx(0);100 #endif101 98 Int viewDepthId = 0; 102 99 Int previousViewDepthId = 0; -
branches/HTM-5.1-dev2-Sony/source/App/TAppEncoder/TAppEncCfg.cpp
r210 r262 341 341 #if LGE_ILLUCOMP_B0045 342 342 ("IlluCompEnable", m_bUseIC , true , "Use illumination compensation for inter-view prediction" ) 343 #endif 344 #if INTER_VIEW_VECTOR_SCALING_C0115 345 ("IVSEnable", m_bUseIVS , true , "Use inter-view vector scaling" ) 343 346 #endif 344 347 #if DBL_CONTROL … … 1806 1809 printf("IlluCompEnable: %d ", m_bUseIC); 1807 1810 #endif 1808 1811 #if INTER_VIEW_VECTOR_SCALING_C0115 1812 printf("IVSEnable: %d ", m_bUseIVS); 1813 #endif 1809 1814 printf("\n"); 1810 1815 -
branches/HTM-5.1-dev2-Sony/source/App/TAppEncoder/TAppEncCfg.h
r210 r262 170 170 vector<Bool> m_abUseSAO; 171 171 #if LGE_ILLUCOMP_B0045 172 Bool m_bUseIC; ///< flag for using illumination compensation for inter-view prediction 172 Bool m_bUseIC; ///< flag for using illumination compensation for inter-view prediction 173 #endif 174 #if INTER_VIEW_VECTOR_SCALING_C0115 175 Bool m_bUseIVS; ///< flag for using inter-view vector scaling 173 176 #endif 174 177 #if SAO_UNIT_INTERLEAVING -
branches/HTM-5.1-dev2-Sony/source/App/TAppEncoder/TAppEncTop.cpp
r210 r262 121 121 m_cVPS.setDependentFlag ( iViewIdx ? true:false, layerId ); 122 122 m_cVPS.setDependentLayer ( layerId - (m_bUsingDepthMaps ? 2:1), layerId ); 123 #if INTER_VIEW_VECTOR_SCALING_C0115 124 m_cVPS.setIVScalingFlag ( m_bUseIVS ); 125 #endif 123 126 #endif 124 127 … … 316 319 #if LGE_ILLUCOMP_B0045 317 320 m_acTEncTopList[iViewIdx]->setUseIC ( m_bUseIC ); 321 #endif 322 #if INTER_VIEW_VECTOR_SCALING_C0115 323 m_acTEncTopList[iViewIdx]->setUseIVS ( m_bUseIVS ); 318 324 #endif 319 325 #if SAO_UNIT_INTERLEAVING … … 639 645 m_acTEncDepthTopList[iViewIdx]->setUseIC ( false ); 640 646 #endif 647 #if INTER_VIEW_VECTOR_SCALING_C0115 648 m_acTEncDepthTopList[iViewIdx]->setUseIVS ( m_bUseIVS ); 649 #endif 641 650 #if SAO_UNIT_INTERLEAVING 642 651 m_acTEncDepthTopList[iViewIdx]->setMaxNumOffsetsPerPic (m_maxNumOffsetsPerPic);
Note: See TracChangeset for help on using the changeset viewer.