Changeset 1467 in SHVCSoftware


Ignore:
Timestamp:
26 Aug 2015, 19:34:17 (9 years ago)
Author:
seregin
Message:

enable check for SEI messages

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-dev/source/App/TAppDecoder/TAppDecTop.cpp

    r1466 r1467  
    657657#endif
    658658  {
    659     m_apcTDecTop[layer]->init();
    660     m_apcTDecTop[layer]->setDecodedPictureHashSEIEnabled(m_decodedPictureHashSEIEnabled);
    661 #if CONFORMANCE_BITSTREAM_MODE
    662     m_apcTDecTop[layer]->setNumLayer( MAX_LAYERS );
    663 #else
    664     m_apcTDecTop[layer]->setNumLayer( m_tgtLayerId + 1 );
    665 #endif
    666     m_apcTDecTop[layer]->setCommonDecoderParams( &m_commonDecoderParams );
    667   }
    668 #if CONFORMANCE_BITSTREAM_MODE
    669   for(UInt layer = 0; layer < MAX_VPS_LAYER_IDX_PLUS1; layer++)
    670   {
    671     m_apcTDecTop[layer]->setConfModeFlag( m_confModeFlag );
    672   }
    673 #endif
    674 #else
     659    TDecTop& m_cTDecTop = *m_apcTDecTop[layer];
     660#endif
     661
    675662  m_cTDecTop.init();
    676663  m_cTDecTop.setDecodedPictureHashSEIEnabled(m_decodedPictureHashSEIEnabled);
     
    678665  m_cTDecTop.setForceDecodeBitDepth(m_forceDecodeBitDepth);
    679666#endif
     667
    680668  if (!m_outputDecodedSEIMessagesFilename.empty())
    681669  {
     
    683671    m_cTDecTop.setDecodedSEIMessageOutputStream(&os);
    684672  }
    685 #endif
     673
     674#if SVC_EXTENSION 
     675#if CONFORMANCE_BITSTREAM_MODE
     676    m_cTDecTop.setNumLayer( MAX_LAYERS );
     677#else
     678    m_cTDecTop.setNumLayer( m_tgtLayerId + 1 );
     679#endif
     680    m_cTDecTop.setCommonDecoderParams( &m_commonDecoderParams );
     681    m_cTDecTop.setConfModeFlag( m_confModeFlag );
     682  }
     683#endif
     684
    686685#if Q0074_COLOUR_REMAPPING_SEI
    687686  if (m_pcSeiColourRemappingInfoPrevious != NULL)
Note: See TracChangeset for help on using the changeset viewer.