We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a79e1dc commit caae789Copy full SHA for caae789
src/lib.rs
@@ -468,9 +468,6 @@ impl Decoder {
468
}
469
};
470
parsed_frame.gcd.disposal_method = shr_or((packed_field & 0b0001_1100) as u32, 2, 0);
471
- if parsed_frame.gcd.disposal_method == 0 {
472
- parsed_frame.gcd.disposal_method = 1; // elect to keep old image if discretionary
473
- }
474
parsed_frame.gcd.user_input_flag = (packed_field & 0b0000_0010) != 0;
475
parsed_frame.gcd.transparent_color_flag = (packed_field & 0b0000_0001) != 0;
476
Self::increment_offset(offset, 1);
0 commit comments