- Timestamp:
- 9 Oct 2013, 22:59:17 (11 years ago)
- Location:
- branches/SHM-3.1-dev/source/Lib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-3.1-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp
r425 r426 311 311 312 312 // The value of pps_scaling_list_ref_layer_id shall be in the range of 0 to 62, inclusive 313 assert( pcPPS->getScalingListRefLayerId() >= 0 &&pcPPS->getScalingListRefLayerId() <= 62 );313 assert( /*pcPPS->getScalingListRefLayerId() >= 0 &&*/ pcPPS->getScalingListRefLayerId() <= 62 ); 314 314 315 315 // When avc_base_layer_flag is equal to 1, it is a requirement of bitstream conformance that the value of pps_scaling_list_ref_layer_id shall be greater than 0 … … 720 720 721 721 // The value of sps_scaling_list_ref_layer_id shall be in the range of 0 to 62, inclusive 722 assert( pcSPS->getScalingListRefLayerId() >= 0 &&pcSPS->getScalingListRefLayerId() <= 62 );722 assert( /*pcSPS->getScalingListRefLayerId() >= 0 &&*/ pcSPS->getScalingListRefLayerId() <= 62 ); 723 723 724 724 // When avc_base_layer_flag is equal to 1, it is a requirement of bitstream conformance that the value of sps_scaling_list_ref_layer_id shall be greater than 0 -
branches/SHM-3.1-dev/source/Lib/TLibEncoder/TEncCavlc.cpp
r425 r426 243 243 { 244 244 // The value of pps_scaling_list_ref_layer_id shall be in the range of 0 to 62, inclusive 245 assert( pcPPS->getScalingListRefLayerId() >= 0 &&pcPPS->getScalingListRefLayerId() <= 62 );245 assert( /*pcPPS->getScalingListRefLayerId() >= 0 &&*/ pcPPS->getScalingListRefLayerId() <= 62 ); 246 246 247 247 // When avc_base_layer_flag is equal to 1, it is a requirement of bitstream conformance that the value of pps_scaling_list_ref_layer_id shall be greater than 0 … … 564 564 565 565 // The value of sps_scaling_list_ref_layer_id shall be in the range of 0 to 62, inclusive 566 assert( pcSPS->getScalingListRefLayerId() >= 0 &&pcSPS->getScalingListRefLayerId() <= 62 );566 assert( /*pcSPS->getScalingListRefLayerId() >= 0 &&*/ pcSPS->getScalingListRefLayerId() <= 62 ); 567 567 568 568 // When avc_base_layer_flag is equal to 1, it is a requirement of bitstream conformance that the value of sps_scaling_list_ref_layer_id shall be greater than 0
Note: See TracChangeset for help on using the changeset viewer.