Changeset 213 in 3DVCSoftware for branches/HTM-4.0.1-VSP-dev0/source/Lib/TLibEncoder/TEncCfg.h
- Timestamp:
- 31 Dec 2012, 18:33:14 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-4.0.1-VSP-dev0/source/Lib/TLibEncoder/TEncCfg.h
r193 r213 181 181 #endif 182 182 Bool m_bUseSAO; 183 #if LGE_ILLUCOMP_B0045 184 Bool m_bUseIC; 185 #endif 183 186 #if SAO_UNIT_INTERLEAVING 184 187 Int m_maxNumOffsetsPerPic; … … 194 197 Int m_iSearchRange; // 0:Full frame 195 198 Int m_bipredSearchRange; 196 199 #if DV_V_RESTRICTION_B0037 200 Bool m_bUseDisparitySearchRangeRestriction; 201 Int m_iVerticalDisparitySearchRange; 202 #endif 197 203 //====== Quality control ======== 198 204 Int m_iMaxDeltaQP; // Max. absolute delta QP (1:default) … … 264 270 #if HHI_MPI 265 271 Bool m_bUseMVI; 272 #endif 273 #if RWTH_SDC_DLT_B0036 274 Bool m_bUseDLT; 275 Bool m_bUseSDC; 266 276 #endif 267 277 … … 290 300 Int m_iColumnRowInfoPresent; 291 301 Int m_iUniformSpacingIdr; 292 #if FIX_REMOVE_TILE_DEPENDENCE293 #else294 Int m_iTileBoundaryIndependenceIdr;295 #endif296 302 Int m_iNumColumnsMinus1; 297 303 UInt* m_puiColumnWidth; … … 322 328 #endif 323 329 324 #if VIDYO_VPS_INTEGRATION 330 #if VIDYO_VPS_INTEGRATION|QC_MVHEVC_B0046 325 331 UInt m_layerId; 326 332 #endif … … 339 345 #endif 340 346 341 #if OL_DEPTHLIMIT_A0044 342 Bool m_bDepthPartitionLimiting; 347 #if HHI_DMM_PRED_TEX && FLEX_CODING_ORDER_M23723 348 Bool m_bUseDMM34; 349 #endif 350 351 #if OL_QTLIMIT_PREDCODING_B0068 352 Bool m_bUseQTLPC; 343 353 #endif 344 354 … … 483 493 Void setSearchRange ( Int i ) { m_iSearchRange = i; } 484 494 Void setBipredSearchRange ( Int i ) { m_bipredSearchRange = i; } 485 495 #if DV_V_RESTRICTION_B0037 496 Void setUseDisparitySearchRangeRestriction ( Bool b ) { m_bUseDisparitySearchRangeRestriction = b; } 497 Void setVerticalDisparitySearchRange ( Int i ) { m_iVerticalDisparitySearchRange = i; } 498 #endif 486 499 #if HHI_INTER_VIEW_MOTION_PRED 487 500 UInt getMultiviewMvRegMode () { return m_uiMultiviewMvRegMode; } … … 574 587 Int getFastSearch () { return m_iFastSearch; } 575 588 Int getSearchRange () { return m_iSearchRange; } 576 589 #if DV_V_RESTRICTION_B0037 590 Bool getUseDisparitySearchRangeRestriction () { return m_bUseDisparitySearchRangeRestriction; } 591 Int getVerticalDisparitySearchRange () { return m_iVerticalDisparitySearchRange; } 592 #endif 577 593 #if HHI_VSO 578 594 //==== VSO ========== … … 716 732 Void setUseMVI ( Bool bVal ) {m_bUseMVI = bVal;} 717 733 #endif 734 #if RWTH_SDC_DLT_B0036 735 Void setUseDLT ( Bool b ) { m_bUseDLT = b; } 736 Void setUseSDC ( Bool b ) { m_bUseSDC = b; } 737 #endif 718 738 Void setUseSAO ( Bool bVal ) {m_bUseSAO = bVal;} 719 739 Bool getUseSAO () {return m_bUseSAO;} 740 #if LGE_ILLUCOMP_B0045 741 Void setUseIC ( Bool bVal ) {m_bUseIC = bVal;} 742 Bool getUseIC () {return m_bUseIC;} 743 #endif 720 744 #if SAO_UNIT_INTERLEAVING 721 745 Void setMaxNumOffsetsPerPic (Int iVal) { m_maxNumOffsetsPerPic = iVal; } … … 837 861 Int getTSIG() { return m_signHidingThreshold; } 838 862 #endif 839 #if VIDYO_VPS_INTEGRATION 863 #if VIDYO_VPS_INTEGRATION |QC_MVHEVC_B0046 840 864 Void setLayerId ( UInt layerId ) { m_layerId = layerId; } 841 865 UInt getLayerId () { return m_layerId; } … … 852 876 #endif 853 877 854 #if OL_DEPTHLIMIT_A0044 855 Void setUseDPL(Bool b) {m_bDepthPartitionLimiting = b; } 856 Bool getUseDPL() {return m_bDepthPartitionLimiting;} 878 #if HHI_DMM_PRED_TEX && FLEX_CODING_ORDER_M23723 879 Void setUseDMM34( Bool b) { m_bUseDMM34 = b; } 880 Bool getUseDMM34() { return m_bUseDMM34; } 881 #endif 882 883 #if OL_QTLIMIT_PREDCODING_B0068 884 Void setUseQTLPC( Bool b ) { m_bUseQTLPC = b; } 885 Bool getUseQTLPC() { return m_bUseQTLPC; } 886 #endif 887 888 #if RWTH_SDC_DLT_B0036 889 Bool getUseDLT() { return m_bUseDLT; } 890 Bool getUseSDC() { return m_bUseSDC; } 857 891 #endif 858 892 … … 863 897 Void setCodedOffset ( Int** p ) { m_aaiCodedOffset = p; } 864 898 865 #if SONY_COLPIC_AVAILABILITY 899 #if SONY_COLPIC_AVAILABILITY || VSP_N 866 900 Int getViewOrderIdx () { return m_iViewOrderIdx; } 867 901 #endif
Note: See TracChangeset for help on using the changeset viewer.