Changeset 446 in 3DVCSoftware for branches/HTM-DEV-0.2-dev/source/Lib/TLibExtractor/TExtrTop.h
- Timestamp:
- 26 May 2013, 16:22:23 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-DEV-0.2-dev/source/Lib/TLibExtractor/TExtrTop.h
r438 r446 46 46 #include <set> 47 47 48 #if H_MV 48 49 // ==================================================================================================================== 49 50 // Class definition … … 54 55 { 55 56 private: 56 #if VIDYO_VPS_INTEGRATION|QC_MVHEVC_B0046 57 57 58 TComVPS m_cVPS; 58 #endif 59 std::list<TComSPS> m_acSPSBuffer;59 std::list<TComSPS> m_acSPSBuffer; 60 std::list<Int > m_aiSPSLayerIdBuffer; 60 61 61 62 // functional classes … … 72 73 Bool extract( InputNALUnit& nalu, std::set<UInt>& rsuiExtractLayerIds ); 73 74 Void dumpSpsInfo( std::ostream& rcSpsInfoHandle ); 75 Void dumpVpsInfo( std::ostream& rcVpsInfoHandle ); 74 76 75 77 TComSPS *getFirstSPS() { return m_acSPSBuffer.empty() ? 0 : &(m_acSPSBuffer.front()); } 76 78 77 79 protected: 78 UInt xGetLayerId( UInt uiViewId, Bool bIsDepth ) { return ( ( uiViewId << 1 ) + ( bIsDepth ? 1 : 0 ) ); } 80 79 81 };// END CLASS DEFINITION TExtrTop 80 82 81 83 82 84 #endif // __TEXTRTOP__ 83 85 #endif
Note: See TracChangeset for help on using the changeset viewer.