Changeset 1467 in SHVCSoftware
- Timestamp:
- 26 Aug 2015, 19:34:17 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/App/TAppDecoder/TAppDecTop.cpp
r1466 r1467 657 657 #endif 658 658 { 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 675 662 m_cTDecTop.init(); 676 663 m_cTDecTop.setDecodedPictureHashSEIEnabled(m_decodedPictureHashSEIEnabled); … … 678 665 m_cTDecTop.setForceDecodeBitDepth(m_forceDecodeBitDepth); 679 666 #endif 667 680 668 if (!m_outputDecodedSEIMessagesFilename.empty()) 681 669 { … … 683 671 m_cTDecTop.setDecodedSEIMessageOutputStream(&os); 684 672 } 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 686 685 #if Q0074_COLOUR_REMAPPING_SEI 687 686 if (m_pcSeiColourRemappingInfoPrevious != NULL)
Note: See TracChangeset for help on using the changeset viewer.