mirror of
https://github.com/samsonjs/media.git
synced 2026-04-19 13:35:47 +00:00
Avoid "unnecessary boolean expression" warning
This is a no-op change to avoid an error-prone unnecessary boolean expression warning. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=127787709
This commit is contained in:
parent
6c2a967763
commit
0022487746
1 changed files with 2 additions and 1 deletions
|
|
@ -268,7 +268,8 @@ import java.util.Collections;
|
|||
bitArray.readUnsignedExpGolombCodedInt(); // max_transform_hierarchy_depth_inter
|
||||
bitArray.readUnsignedExpGolombCodedInt(); // max_transform_hierarchy_depth_intra
|
||||
// if (scaling_list_enabled_flag) { if (sps_scaling_list_data_present_flag) {...}}
|
||||
if (bitArray.readBit() && bitArray.readBit()) {
|
||||
boolean scalingListEnabled = bitArray.readBit();
|
||||
if (scalingListEnabled && bitArray.readBit()) {
|
||||
skipScalingList(bitArray);
|
||||
}
|
||||
bitArray.skipBits(2); // amp_enabled_flag (1), sample_adaptive_offset_enabled_flag (1)
|
||||
|
|
|
|||
Loading…
Reference in a new issue