Changeset 464 in 3DVCSoftware for branches/HTM-DEV-0.3-dev2a/source/Lib/TLibCommon/TComSlice.h
- Timestamp:
- 11 Jun 2013, 20:35:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-DEV-0.3-dev2a/source/Lib/TLibCommon/TComSlice.h
r446 r464 524 524 #if H_3D 525 525 Int m_viewIndex [MAX_NUM_LAYERS ]; 526 #if H_3D_ARP 527 UInt m_uiUseAdvResPred [MAX_NUM_LAYERS ]; 528 UInt m_uiARPStepNum [MAX_NUM_LAYERS ]; 529 #endif 526 530 #endif 527 531 … … 642 646 Int getDepthId ( Int layerIdInVps ) { return getScalabilityId( layerIdInVps, DEPTH_ID ); } 643 647 Int getLayerIdInNuh( Int viewIndex, Bool depthFlag ); 648 #if H_3D_ARP 649 UInt getUseAdvRP ( Int layerIdInVps ) { return m_uiUseAdvResPred[layerIdInVps]; } 650 UInt getARPStepNum( Int layerIdInVps ) { return m_uiARPStepNum[layerIdInVps]; } 651 Void setUseAdvRP ( Int layerIdInVps, UInt val ) { m_uiUseAdvResPred[layerIdInVps] = val; } 652 Void setARPStepNum( Int layerIdInVps, UInt val ) { m_uiARPStepNum[layerIdInVps] = val; } 653 #endif 644 654 #endif 645 655 … … 1486 1496 Int m_aaiCodedScale [2][MAX_NUM_LAYERS]; 1487 1497 Int m_aaiCodedOffset[2][MAX_NUM_LAYERS]; 1498 #if H_3D_ARP 1499 TComList<TComPic*> * m_pBaseViewRefPicList[MAX_NUM_LAYERS]; 1500 UInt m_nARPStepNum; 1501 #endif 1488 1502 #endif 1489 1503 #endif … … 1611 1625 #endif 1612 1626 #endif 1627 1628 #if H_3D_ARP 1629 Void setBaseViewRefPicList( TComList<TComPic*> *pListPic, Int iViewIdx ) { m_pBaseViewRefPicList[iViewIdx] = pListPic; } 1630 Void setARPStepNum(); 1631 TComPic* getBaseViewRefPic ( UInt uiPOC , Int iViewIdx ) { return xGetRefPic( *m_pBaseViewRefPicList[iViewIdx], uiPOC ); } 1632 UInt getARPStepNum( ) { return m_nARPStepNum; } 1633 #endif 1634 1613 1635 Void setRefPOCList (); 1614 1636 Void setColFromL0Flag ( UInt colFromL0 ) { m_colFromL0Flag = colFromL0; }
Note: See TracChangeset for help on using the changeset viewer.