Changeset 195 in 3DVCSoftware for branches/HTM-5.0-Qualcomm/source/App/TAppEncoder
- Timestamp:
- 26 Nov 2012, 22:32:00 (12 years ago)
- Location:
- branches/HTM-5.0-Qualcomm/source/App/TAppEncoder
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-5.0-Qualcomm/source/App/TAppEncoder/TAppEncCfg.cpp
r194 r195 329 329 /* Camera Paremetes */ 330 330 ("CameraParameterFile,cpf", m_pchCameraParameterFile, (Char *) 0, "Camera Parameter File Name") 331 #if MVHEVC331 #if QC_MVHEVC_B0046 332 332 ("BaseViewCameraNumbers" , m_aiVId, std::vector<Int>(1, MAX_VIEW_NUM), "Numbers of base views") 333 333 #endif … … 789 789 } 790 790 #else 791 #if ! MVHEVC791 #if !QC_MVHEVC_B0046 792 792 m_cCameraData .init ( (UInt)m_iNumberOfViews, 793 793 m_uiInputBitDepth, … … 806 806 // check validity of input parameters 807 807 xCheckParameter(); 808 #if ! MVHEVC808 #if !QC_MVHEVC_B0046 809 809 m_cCameraData.check( false, true ); 810 810 #endif -
branches/HTM-5.0-Qualcomm/source/App/TAppEncoder/TAppEncCfg.h
r194 r195 109 109 std::vector<Double> m_adQP; ///< QP value of key-picture (floating point) [0] video, [1] depth 110 110 std::vector<Int> m_aiQP; ///< QP value of key-picture (integer) [0] video, [1] depth 111 #if MVHEVC111 #if QC_MVHEVC_B0046 112 112 std::vector<Int> m_aiVId; ///< view id 113 113 #endif … … 288 288 Char* m_pchCameraParameterFile; ///< camera parameter file 289 289 Char* m_pchBaseViewCameraNumbers; 290 #if ! MVHEVC290 #if !QC_MVHEVC_B0046 291 291 TAppComCamPara m_cCameraData; 292 292 #endif -
branches/HTM-5.0-Qualcomm/source/App/TAppEncoder/TAppEncTop.cpp
r194 r195 67 67 Void TAppEncTop::xInitLibCfg() 68 68 { 69 #if VIDYO_VPS_INTEGRATION| MVHEVC70 #if ! MVHEVC69 #if VIDYO_VPS_INTEGRATION|QC_MVHEVC_B0046 70 #if !QC_MVHEVC_B0046 71 71 UInt layerId = 0; 72 72 #endif 73 73 // TODO: fix the assumption here that the temporal structures are all equal across all layers??? 74 74 m_cVPS.setMaxTLayers( m_maxTempLayer[0] ); 75 #if MVHEVC75 #if QC_MVHEVC_B0046 76 76 m_cVPS.setMaxLayers( m_iNumberOfViews ); 77 77 #else … … 107 107 m_acTEncTopList[iViewIdx]->setViewId ( iViewIdx ); 108 108 m_acTEncTopList[iViewIdx]->setIsDepth ( false ); 109 #if MVHEVC109 #if QC_MVHEVC_B0046 110 110 m_acTEncTopList[iViewIdx]->setLayerId ( iViewIdx ); 111 111 m_cVPS.setViewId ( m_aiVId[ iViewIdx ], iViewIdx ); … … 417 417 m_acTEncDepthTopList[iViewIdx]->setViewId ( iViewIdx ); 418 418 m_acTEncDepthTopList[iViewIdx]->setIsDepth ( true ); 419 #if MVHEVC419 #if QC_MVHEVC_B0046 420 420 m_acTEncDepthTopList[iViewIdx]->setLayerId ( iViewIdx ); 421 421 #else … … 836 836 { 837 837 m_acTEncTopList[iViewIdx]->init( this ); 838 #if MVHEVC838 #if QC_MVHEVC_B0046 839 839 //set setNumDirectRefLayer 840 840 Int iNumDirectRef = m_acTEncTopList[iViewIdx]->getSPS()->getNumberOfUsableInterViewRefs(); … … 887 887 TComPicYuv* pcPicYuvOrg = new TComPicYuv; 888 888 TComPicYuv* pcDepthPicYuvOrg = new TComPicYuv; 889 #if ! MVHEVC889 #if !QC_MVHEVC_B0046 890 890 TComPicYuv* pcPdmDepthOrg = new TComPicYuv; 891 891 #endif … … 990 990 { 991 991 Int iNumEncoded = 0; 992 #if ! MVHEVC992 #if !QC_MVHEVC_B0046 993 993 UInt iNextPoc = m_acTEncTopList[0] -> getFrameId( gopId ); 994 994 if ( iNextPoc < m_iFrameToBeEncoded ) … … 1052 1052 pcDepthPicYuvOrg = NULL; 1053 1053 1054 #if ! MVHEVC1055 #if BUG_FIX_HTM1054 #if !QC_MVHEVC_B0046 1055 #if FIX_DEL_NULLPTR 1056 1056 if ( pcPdmDepthOrg != NULL && m_uiMultiviewMvRegMode ) 1057 1057 #else … … 1267 1267 case NAL_UNIT_CODED_SLICE: 1268 1268 #if H0566_TLA 1269 #if !QC_REM_IDV 1269 #if !QC_REM_IDV_B0046 1270 1270 case NAL_UNIT_CODED_SLICE_IDV: 1271 1271 #endif -
branches/HTM-5.0-Qualcomm/source/App/TAppEncoder/TAppEncTop.h
r194 r195 87 87 #endif 88 88 89 #if VIDYO_VPS_INTEGRATION| MVHEVC89 #if VIDYO_VPS_INTEGRATION|QC_MVHEVC_B0046 90 90 TComVPS m_cVPS; 91 91 #endif … … 139 139 #endif 140 140 141 #if MVHEVC141 #if QC_MVHEVC_B0046 142 142 TComVPS* getVPS() { return &m_cVPS; } 143 143 #endif
Note: See TracChangeset for help on using the changeset viewer.