Changeset 795 in SHVCSoftware for branches/SHM-6-dev/source/Lib/TLibDecoder
- Timestamp:
- 6 Jun 2014, 20:36:57 (12 years ago)
- Location:
- branches/SHM-6-dev/source/Lib/TLibDecoder
- Files:
-
- 2 edited
-
TDecCAVLC.cpp (modified) (2 diffs)
-
TDecCAVLC.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-6-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp
r793 r795 848 848 849 849 READ_FLAG( uiCode, "sps_extension_flag"); 850 if (uiCode) 851 { 852 #if SPS_EXTENSION 853 850 851 #if SVC_EXTENSION 852 pcSPS->setExtensionFlag( uiCode ? true : false ); 853 854 if( pcSPS->getExtensionFlag() ) 855 { 854 856 #if O0142_CONDITIONAL_SPS_EXTENSION 855 857 UInt spsExtensionTypeFlag[8]; … … 870 872 { 871 873 #endif 872 873 #endif874 874 while ( xMoreRbspData() ) 875 875 { 876 876 READ_FLAG( uiCode, "sps_extension_data_flag"); 877 877 } 878 #if SPS_EXTENSION 879 } 880 #endif 881 } 882 } 883 884 #if SPS_EXTENSION 878 } 879 } 880 #else 881 if (uiCode) 882 { 883 while ( xMoreRbspData() ) 884 { 885 READ_FLAG( uiCode, "sps_extension_data_flag"); 886 } 887 } 888 #endif 889 } 890 891 #if SVC_EXTENSION 885 892 Void TDecCavlc::parseSPSExtension( TComSPS* pcSPS ) 886 893 { -
branches/SHM-6-dev/source/Lib/TLibDecoder/TDecCAVLC.h
r793 r795 75 75 Void parseQtRootCbf ( UInt uiAbsPartIdx, UInt& uiQtRootCbf ); 76 76 Void parseVPS ( TComVPS* pcVPS ); 77 #if S PS_EXTENSION77 #if SVC_EXTENSION 78 78 Void parseVPSExtension ( TComVPS* pcVPS ); 79 79 Void defaultVPSExtension ( TComVPS* pcVPS );
Note: See TracChangeset for help on using the changeset viewer.