Changeset 795 in SHVCSoftware for branches/SHM-6-dev/source/Lib/TLibEncoder
- Timestamp:
- 6 Jun 2014, 20:36:57 (11 years ago)
- Location:
- branches/SHM-6-dev/source/Lib/TLibEncoder
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-6-dev/source/Lib/TLibEncoder/TEncCavlc.cpp
r793 r795 639 639 } 640 640 641 #if SPS_EXTENSION 642 WRITE_FLAG( 1, "sps_extension_flag" ); 643 if( 1 ) // if( sps_extension_flag ) 641 #if SVC_EXTENSION 642 WRITE_FLAG( pcSPS->getExtensionFlag() ? 1 : 0, "sps_extension_flag" ); 643 644 if( pcSPS->getExtensionFlag() ) 644 645 { 645 646 #if O0142_CONDITIONAL_SPS_EXTENSION … … 662 663 #endif 663 664 } 664 #if SPS_EXTENSION 665 666 #if SVC_EXTENSION 665 667 Void TEncCavlc::codeSPSExtension( TComSPS* pcSPS ) 666 668 { … … 689 691 } 690 692 } 691 #endif 693 #endif //SVC_EXTENSION 694 692 695 Void TEncCavlc::codeVPS( TComVPS* pcVPS ) 693 696 { -
branches/SHM-6-dev/source/Lib/TLibEncoder/TEncCavlc.h
r793 r795 159 159 Void codeDFSvlc ( Int iCode, const Char *pSymbolName ); 160 160 161 #if S PS_EXTENSION161 #if SVC_EXTENSION 162 162 Void codeSPSExtension ( TComSPS* pcSPS ); 163 163 Void codeVPSExtension ( TComVPS* pcVPS ); -
branches/SHM-6-dev/source/Lib/TLibEncoder/TEncTop.cpp
r778 r795 912 912 { 913 913 #if SVC_EXTENSION 914 m_cSPS.setExtensionFlag( m_layerId > 0 ? true : false ); 915 914 916 #if Q0078_ADD_LAYER_SETS 915 917 if (getNumDirectRefLayers() == 0 && getNumAddLayerSets() > 0)
Note: See TracChangeset for help on using the changeset viewer.