Changeset 1313 in 3DVCSoftware for trunk/source/Lib/TLibExtractor
- Timestamp:
- 13 Aug 2015, 17:38:13 (9 years ago)
- Location:
- trunk/source/Lib/TLibExtractor
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/Lib/TLibExtractor/TExtrTop.cpp
r1179 r1313 37 37 38 38 #include "TExtrTop.h" 39 #if H_MV39 #if NH_MV 40 40 TExtrTop::TExtrTop() 41 41 { … … 56 56 { 57 57 //extraction now has to be done using layer_id 58 UInt uiLayerId = nalu.m_ layerId;58 UInt uiLayerId = nalu.m_nuhLayerId; 59 59 60 60 61 61 // Initialize entropy decoder 62 62 m_cEntropyDecoder.setEntropyDecoder( &m_cCavlcDecoder ); 63 m_cEntropyDecoder.setBitstream ( nalu.m_Bitstream ); 63 64 TComInputBitstream inpBs = nalu.getBitstream(); 65 m_cEntropyDecoder.setBitstream ( &inpBs ); 64 66 65 67 if ( nalu.m_nalUnitType == NAL_UNIT_VPS ) … … 72 74 { 73 75 TComSPS cSPS; 74 #if H_3D75 76 76 m_cEntropyDecoder .decodeSPS( &cSPS ); 77 #else78 m_cEntropyDecoder .decodeSPS( &cSPS );79 #endif80 77 m_acSPSBuffer .push_back( cSPS ); 81 78 } … … 109 106 rcVpsInfoHandle << "LayerIdInNuh = " << layerId << std::endl; 110 107 rcVpsInfoHandle << "ViewOrderIndex = " << m_cVPS.getViewIndex ( layerId ) << std::endl; 111 #if H_3D112 108 rcVpsInfoHandle << "DepthFlag = " << m_cVPS.getDepthId ( layerId ) << std::endl; 113 #endif114 109 rcVpsInfoHandle << "ViewId = " << m_cVPS.getViewId ( layerId ) << std::endl; 115 110 } -
trunk/source/Lib/TLibExtractor/TExtrTop.h
r1179 r1313 46 46 #include <set> 47 47 48 #if H_MV48 #if NH_MV 49 49 // ==================================================================================================================== 50 50 // Class definition
Note: See TracChangeset for help on using the changeset viewer.