Changeset 226 in SHVCSoftware for branches/SHM-2.1-dev/source/Lib/TLibEncoder
- Timestamp:
- 22 May 2013, 22:24:23 (12 years ago)
- Location:
- branches/SHM-2.1-dev/source/Lib/TLibEncoder
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-2.1-dev/source/Lib/TLibEncoder/TEncCavlc.cpp
r224 r226 571 571 #endif 572 572 573 #if SPS_EXTENSION 574 WRITE_FLAG( 1, "sps_extension_flag" ); 575 if( 1 ) // if( sps_extension_flag ) 576 { 577 codeSPSExtension( pcSPS ); 578 WRITE_FLAG( 0, "sps_extension2_flag" ); 579 } 580 #else 573 581 WRITE_FLAG( 0, "sps_extension_flag" ); 574 } 575 582 #endif 583 } 584 #if SPS_EXTENSION 585 Void TEncCavlc::codeSPSExtension( TComSPS* pcSPS ) 586 { 587 // syntax elements to be written here 588 } 589 #endif 576 590 Void TEncCavlc::codeVPS( TComVPS* pcVPS ) 577 591 { -
branches/SHM-2.1-dev/source/Lib/TLibEncoder/TEncCavlc.h
r191 r226 89 89 Void codeVUI ( TComVUI *pcVUI, TComSPS* pcSPS ); 90 90 Void codeSPS ( TComSPS* pcSPS ); 91 #if SPS_EXTENSION 92 Void codeSPSExtension ( TComSPS* pcSPS ); 93 #endif 91 94 Void codePPS ( TComPPS* pcPPS ); 92 95 Void codeSliceHeader ( TComSlice* pcSlice );
Note: See TracChangeset for help on using the changeset viewer.