Changeset 667 in 3DVCSoftware for branches/HTM-8.2-dev3-Qualcomm/source/Lib/TLibCommon
- Timestamp:
- 4 Nov 2013, 16:32:06 (11 years ago)
- Location:
- branches/HTM-8.2-dev3-Qualcomm/source/Lib/TLibCommon
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-8.2-dev3-Qualcomm/source/Lib/TLibCommon/ContextTables.h
r655 r667 109 109 #define NUM_DEPTH_INTRA_MODE_CTX 8 ///< number of context models for depth intra modes 110 110 #define NUM_DDC_FLAG_CTX 2 ///< number of context models for deltaDC flag (DMM or RBC) 111 #if QC_DIM_DELTADC_UNIFY_F0132 112 #define NUM_DDC_DATA_CTX 1 ///< number of context models for deltaDC data (DMM or RBC) 113 #else 111 114 #define NUM_DDC_DATA_CTX 2 ///< number of context models for deltaDC data (DMM or RBC) 115 #endif 112 116 #if H_3D_DIM_DMM 113 117 #define NUM_DMM1_DATA_CTX 1 ///< number of context models for DMM1 data … … 405 409 INIT_DDC_DATA[3][NUM_DDC_DATA_CTX] = 406 410 { 411 #if QC_DIM_DELTADC_UNIFY_F0132 412 { 154 }, 413 { 154 }, 414 { 154 }, 415 #else 407 416 { CNU, CNU }, 408 417 { CNU, CNU }, 409 418 { CNU, CNU }, 419 #endif 410 420 }; 411 421 #if H_3D_DIM_DMM -
branches/HTM-8.2-dev3-Qualcomm/source/Lib/TLibCommon/TComPrediction.cpp
r655 r667 475 475 assert( biSegPattern ); 476 476 Int* piMask = NULL; 477 #if QC_DIM_DELTADC_UNIFY_F0132 || HHI_DIM_PREDSAMP_FIX_F0171 478 piMask = pcCU->getPattern()->getAdiOrgBuf( iWidth, iHeight, m_piYuvExt ); // no filtering 479 #else 477 480 if( isDmmMode ) piMask = pcCU->getPattern()->getAdiOrgBuf( iWidth, iHeight, m_piYuvExt ); // no filtering for DMM 478 481 else piMask = pcCU->getPattern()->getPredictorPtr( 0, g_aucConvertToBit[ iWidth ] + 2, m_piYuvExt ); 482 #endif 479 483 assert( piMask ); 480 484 Int maskStride = 2*iWidth + 1; … … 491 495 Pel deltaDC2 = pcCU->getDimDeltaDC( dimType, 1, uiAbsPartIdx ); 492 496 #if H_3D_DIM_DMM 497 #if QC_DIM_DELTADC_UNIFY_F0132 498 if( isDmmMode || isRbcMode) 499 #else 493 500 if( isDmmMode ) 501 #endif 494 502 { 495 503 #if H_3D_DIM_DLT … … 502 510 } 503 511 #endif 504 #if H_3D_DIM_RBC 512 #if H_3D_DIM_RBC && !QC_DIM_DELTADC_UNIFY_F0132 505 513 if( isRbcMode ) 506 514 { -
branches/HTM-8.2-dev3-Qualcomm/source/Lib/TLibCommon/TypeDef.h
r655 r667 218 218 // HHI_DEPTH_INTRA_SEARCH_RAU_C0160 219 219 // LG_ZEROINTRADEPTHRESI_A0087 220 #define QC_DIM_DELTADC_UNIFY_F0132 1 // Unify delta DC coding in depth intra modes 221 #define HHI_DIM_PREDSAMP_FIX_F0171 1 220 222 #endif 221 223 ///// ***** VIEW SYNTHESIS PREDICTION *********
Note: See TracChangeset for help on using the changeset viewer.