Changeset 364 in 3DVCSoftware for branches/HTM-DEV-0.1-dev/source/Lib/TLibCommon
- Timestamp:
- 3 May 2013, 16:34:51 (12 years ago)
- Location:
- branches/HTM-DEV-0.1-dev/source/Lib/TLibCommon
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-DEV-0.1-dev/source/Lib/TLibCommon/CommonDef.h
r362 r364 168 168 169 169 #endif 170 171 170 172 171 // ==================================================================================================================== -
branches/HTM-DEV-0.1-dev/source/Lib/TLibCommon/NAL.h
r362 r364 47 47 NalUnitType m_nalUnitType; ///< nal_unit_type 48 48 UInt m_temporalId; ///< temporal_id 49 50 49 #if H_MV 51 50 Int m_layerId; ///< layer id -
branches/HTM-DEV-0.1-dev/source/Lib/TLibCommon/TComDataCU.cpp
r324 r364 3200 3200 Bool bIsCurrRefLongTerm = m_pcSlice->getRefPic( eRefPicList, iRefIdx)->getIsLongTerm(); 3201 3201 Bool bIsNeibRefLongTerm = false; 3202 3203 3202 //--------------- V1 (END) ------------------// 3204 3203 if( pcTmpCU->getCUMvField(eRefPicList)->getRefIdx(uiIdx) >= 0) -
branches/HTM-DEV-0.1-dev/source/Lib/TLibCommon/TComPic.h
r324 r364 93 93 #endif 94 94 #endif 95 96 95 public: 97 96 TComPic(); … … 116 115 #endif 117 116 #endif 118 119 117 Bool getUsedByCurr() { return m_bUsedByCurr; } 120 118 Void setUsedByCurr( Bool bUsed ) { m_bUsedByCurr = bUsed; } … … 186 184 Void print( Bool legend ); 187 185 #endif 188 189 190 191 186 /** transfer ownership of seis to this picture */ 192 187 void setSEIs(SEIMessages& seis) { m_SEIs = seis; } -
branches/HTM-DEV-0.1-dev/source/Lib/TLibCommon/TComSlice.h
r363 r364 603 603 TimingInfo* getTimingInfo() { return &m_timingInfo; } 604 604 #endif 605 606 605 #if H_MV 607 606 Void setAvcBaseLayerFlag( Bool val ) { m_avcBaseLayerFlag = val; } … … 971 970 static const Int m_winUnitY[MAX_CHROMA_FORMAT_IDC+1]; 972 971 TComPTL m_pcPTL; 973 974 972 #if H_MV 975 973 Bool m_interViewMvVertConstraintFlag; 976 974 #endif 977 978 975 public: 979 976 TComSPS(); … … 1106 1103 1107 1104 TComPTL* getPTL() { return &m_pcPTL; } 1108 1109 1105 #if H_MV 1110 1106 Void setInterViewMvVertConstraintFlag(Bool val) { m_interViewMvVertConstraintFlag = val; } … … 1464 1460 1465 1461 Bool m_enableTMVPFlag; 1466 1467 1462 #if H_MV 1468 1463 Int m_layerId; … … 1472 1467 #endif 1473 1468 #endif 1474 1475 1469 public: 1476 1470 TComSlice(); … … 1639 1633 Void decodingMarking( TComList<TComPic*>& rcListPic, Int iGOPSIze, Int& iMaxRefPicNum ); 1640 1634 Void applyReferencePictureSet( TComList<TComPic*>& rcListPic, TComReferencePictureSet *RPSList); 1641 1642 1635 #if H_MV 1643 1636 Void createAndApplyIvReferencePictureSet( TComPicLists* ivPicLists, std::vector<TComPic*>& refPicSetInterLayer ); … … 1648 1641 Void xPrintRefPicList(); 1649 1642 #endif 1650 1651 1643 Bool isTemporalLayerSwitchingPoint( TComList<TComPic*>& rcListPic ); 1652 1644 Bool isStepwiseTemporalLayerSwitchingPointCandidate( TComList<TComPic*>& rcListPic ); -
branches/HTM-DEV-0.1-dev/source/Lib/TLibCommon/TypeDef.h
r362 r364 91 91 #define MAX_VPS_NUM_HRD_PARAMETERS 1 92 92 #define MAX_VPS_OP_SETS_PLUS1 1024 93 94 93 #if H_MV 95 94 #define MAX_VPS_NUH_LAYER_ID_PLUS1 64 … … 105 104 #define MAX_CPB_CNT 32 ///< Upper bound of (cpb_cnt_minus1 + 1) 106 105 #define MAX_NUM_LAYER_IDS 64 106 #if H_MV 107 107 #define MAX_NUM_LAYERS 64 108 #endif 108 109 109 110 #define COEF_REMAIN_BIN_REDUCTION 3 ///< indicates the level at which the VLC … … 569 570 #endif 570 571 #endif 571
Note: See TracChangeset for help on using the changeset viewer.