Ticket #954: vps_extension_fix.patch
File vps_extension_fix.patch, 663 bytes (added by jonatan, 12 years ago) |
---|
-
source/Lib/TLibDecoder/TDecCAVLC.cpp
811 811 READ_UVLC( uiCode, "vps_num_hrd_parameters" ); assert(uiCode == 0); 812 812 // hrd_parameters 813 813 #endif 814 READ_FLAG( uiCode, "vps_extension_flag" ); assert(!uiCode); 815 //future extensions go here.. 816 814 READ_FLAG( uiCode, "vps_extension_flag" ); 815 if (uiCode) 816 { 817 while ( xMoreRbspData() ) 818 { 819 READ_FLAG( uiCode, "vps_extension_data_flag"); 820 } 821 } 822 817 823 return; 818 824 } 819 825