Changeset 833 in SHVCSoftware for branches/SHM-dev


Ignore:
Timestamp:
15 Jul 2014, 02:42:01 (10 years ago)
Author:
seregin
Message:

code formatting

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-dev/source/Lib/TLibDecoder/TDecTop.cpp

    r832 r833  
    20222022}
    20232023
     2024#if SVC_EXTENSION
    20242025Void TDecTop::xDecodeSPS()
    20252026{
    20262027  TComSPS* sps = new TComSPS();
    2027 #if SVC_EXTENSION
    20282028  sps->setLayerId(m_layerId);
    20292029#if SPS_DPB_PARAMS
     
    20492049  }
    20502050#endif
    2051 #else //SVC_EXTENSION
    2052   m_cEntropyDecoder.decodeSPS( sps );
    2053   m_parameterSetManagerDecoder.storePrefetchedSPS(sps);
    2054 #endif //SVC_EXTENSION
    20552051}
    20562052
     
    20842080#endif
    20852081}
     2082#else
     2083Void TDecTop::xDecodeSPS()
     2084{
     2085  TComSPS* sps = new TComSPS();
     2086  m_cEntropyDecoder.decodeSPS( sps );
     2087  m_parameterSetManagerDecoder.storePrefetchedSPS(sps);
     2088}
     2089
     2090Void TDecTop::xDecodePPS()
     2091{
     2092  TComPPS* pps = new TComPPS();
     2093  m_cEntropyDecoder.decodePPS( pps );
     2094  m_parameterSetManagerDecoder.storePrefetchedPPS( pps );
     2095}
     2096#endif //SVC_EXTENSION
    20862097
    20872098Void TDecTop::xDecodeSEI( TComInputBitstream* bs, const NalUnitType nalUnitType )
Note: See TracChangeset for help on using the changeset viewer.