Changeset 109 in SHVCSoftware for branches/HM-10.0-dev-SHM/source/Lib/TLibEncoder
- Timestamp:
- 3 Apr 2013, 01:05:45 (12 years ago)
- Location:
- branches/HM-10.0-dev-SHM/source/Lib/TLibEncoder
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HM-10.0-dev-SHM/source/Lib/TLibEncoder/TEncCavlc.cpp
r108 r109 649 649 } 650 650 #endif 651 #if !VPS_EXTNS 651 652 WRITE_FLAG( 0, "vps_extension_flag" ); 652 653 #else 654 WRITE_FLAG( 1, "vps_extension_flag" ); 655 codeVPSExtension(pcVPS); 656 WRITE_FLAG( 0, "vps_extension2_flag" ); // Flag value of 1 reserved 657 #endif 653 658 //future extensions here.. 654 659 655 660 return; 656 661 } 662 663 #if VPS_EXTNS 664 Void TEncCavlc::codeVPSExtension (TComVPS *vps) 665 { 666 // ... More syntax elements to be written here 667 668 // ... More syntax elements to be written here 669 } 670 #endif 657 671 658 672 Void TEncCavlc::codeSliceHeader ( TComSlice* pcSlice ) -
branches/HM-10.0-dev-SHM/source/Lib/TLibEncoder/TEncCavlc.h
r54 r109 89 89 UInt getCoeffCost () { return m_uiCoeffCost; } 90 90 Void codeVPS ( TComVPS* pcVPS ); 91 #if VPS_EXTNS 92 Void codeVPSExtension ( TComVPS* pcVPS ); 93 #endif 91 94 Void codeVUI ( TComVUI *pcVUI, TComSPS* pcSPS ); 92 95 Void codeSPS ( TComSPS* pcSPS );
Note: See TracChangeset for help on using the changeset viewer.