Changeset 189 in 3DVCSoftware for trunk/source/Lib/TLibCommon/TComSlice.h
- Timestamp:
- 18 Nov 2012, 22:11:37 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/Lib/TLibCommon/TComSlice.h
r116 r189 323 323 Bool m_bUseMVI; 324 324 #endif 325 326 #if RWTH_SDC_DLT_B0036 327 Bool m_bUseDLT; 328 329 UInt m_uiBitsPerDepthValue; 330 UInt m_uiNumDepthmapValues; 331 UInt* m_uiDepthValue2Idx; 332 UInt* m_uiIdx2DepthValue; 333 #endif 325 334 326 335 Bool m_bLFCrossTileBoundaryFlag; … … 354 363 #endif 355 364 356 #if OL_ DEPTHLIMIT_A0044357 Bool m_b DepthPartitionLimiting;365 #if OL_QTLIMIT_PREDCODING_B0068 366 Bool m_bUseQTLPC; 358 367 #endif 359 368 … … 547 556 Bool getUseMVI () {return m_bUseMVI;} 548 557 #endif 558 559 #if RWTH_SDC_DLT_B0036 560 Bool getUseDLT () { return m_bUseDLT; } 561 Void setUseDLT ( Bool b ) { m_bUseDLT = b; } 562 563 UInt getBitsPerDepthValue() { return m_bUseDLT?m_uiBitsPerDepthValue:g_uiBitDepth; } 564 UInt getNumDepthValues() { return m_bUseDLT?m_uiNumDepthmapValues:g_uiIBDI_MAX; } 565 UInt depthValue2idx(Pel uiValue) { return m_bUseDLT?m_uiDepthValue2Idx[uiValue]:uiValue; } 566 Pel idx2DepthValue(UInt uiIdx) { return m_bUseDLT?m_uiIdx2DepthValue[uiIdx]:uiIdx; } 567 Void setDepthLUTs (UInt* uidx2DepthValue = NULL, UInt uiNumDepthValues = 0); 568 #endif 549 569 550 570 UInt getMaxTLayers() { return m_uiMaxTLayers; } … … 623 643 #endif 624 644 625 #if OL_ DEPTHLIMIT_A0044626 Void setUse DPL(Bool b) {m_bDepthPartitionLimiting = b;}627 Bool getUse DPL() {return m_bDepthPartitionLimiting;}645 #if OL_QTLIMIT_PREDCODING_B0068 646 Void setUseQTLPC( Bool b ) { m_bUseQTLPC = b; } 647 Bool getUseQTLPC() { return m_bUseQTLPC; } 628 648 #endif 629 649 … … 863 883 Bool m_cabacInitPresentFlag; 864 884 UInt m_encCABACTableIdx; // Used to transmit table selection across slices 865 #if POZNAN_CABAC_INIT_FLAG_FIX885 #if FIX_POZNAN_CABAC_INIT_FLAG 866 886 UInt m_encPrevPOC; 867 887 #endif … … 998 1018 Bool getCabacInitPresentFlag() { return m_cabacInitPresentFlag; } 999 1019 UInt getEncCABACTableIdx() { return m_encCABACTableIdx; } 1000 #if POZNAN_CABAC_INIT_FLAG_FIX1020 #if FIX_POZNAN_CABAC_INIT_FLAG 1001 1021 Void setEncPrevPOC(UInt uiPOC) { m_encPrevPOC = uiPOC; } 1002 1022 UInt getEncPrevPOC() { return m_encPrevPOC; } … … 1279 1299 #if SONY_COLPIC_AVAILABILITY 1280 1300 Int m_iViewOrderIdx; 1301 #endif 1302 #if LGE_ILLUCOMP_B0045 1303 Bool m_bApplyIC; 1281 1304 #endif 1282 1305 … … 1574 1597 Int* getInvCodedOffset () { return m_aaiCodedOffset[1]; } 1575 1598 1599 #if LGE_ILLUCOMP_B0045 1600 Void setApplyIC ( Bool b ) { m_bApplyIC = b; } 1601 Bool getApplyIC () { return m_bApplyIC; } 1602 Void xSetApplyIC (); 1603 #endif 1604 1576 1605 protected: 1577 1606 TComPic* xGetRefPic (TComList<TComPic*>& rcListPic, UInt uiPOC);
Note: See TracChangeset for help on using the changeset viewer.