Ignore:
Timestamp:
9 Oct 2013, 22:59:17 (11 years ago)
Author:
seregin
Message:

fix compilation warning by removing always true condition

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-3.1-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp

    r425 r426  
    311311
    312312        // 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 );
    314314
    315315        // 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
     
    720720
    721721          // 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 );
    723723
    724724          // 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.