Changeset 833 in SHVCSoftware for branches/SHM-dev
- Timestamp:
- 15 Jul 2014, 02:42:01 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibDecoder/TDecTop.cpp
r832 r833 2022 2022 } 2023 2023 2024 #if SVC_EXTENSION 2024 2025 Void TDecTop::xDecodeSPS() 2025 2026 { 2026 2027 TComSPS* sps = new TComSPS(); 2027 #if SVC_EXTENSION2028 2028 sps->setLayerId(m_layerId); 2029 2029 #if SPS_DPB_PARAMS … … 2049 2049 } 2050 2050 #endif 2051 #else //SVC_EXTENSION2052 m_cEntropyDecoder.decodeSPS( sps );2053 m_parameterSetManagerDecoder.storePrefetchedSPS(sps);2054 #endif //SVC_EXTENSION2055 2051 } 2056 2052 … … 2084 2080 #endif 2085 2081 } 2082 #else 2083 Void TDecTop::xDecodeSPS() 2084 { 2085 TComSPS* sps = new TComSPS(); 2086 m_cEntropyDecoder.decodeSPS( sps ); 2087 m_parameterSetManagerDecoder.storePrefetchedSPS(sps); 2088 } 2089 2090 Void TDecTop::xDecodePPS() 2091 { 2092 TComPPS* pps = new TComPPS(); 2093 m_cEntropyDecoder.decodePPS( pps ); 2094 m_parameterSetManagerDecoder.storePrefetchedPPS( pps ); 2095 } 2096 #endif //SVC_EXTENSION 2086 2097 2087 2098 Void TDecTop::xDecodeSEI( TComInputBitstream* bs, const NalUnitType nalUnitType )
Note: See TracChangeset for help on using the changeset viewer.