Skip to content

Commit

Permalink
Made density fields in decompression struct pub
Browse files Browse the repository at this point in the history
  • Loading branch information
nikarh committed Mar 22, 2024
1 parent ba84212 commit 83fdf32
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -546,9 +546,9 @@ pub struct jpeg_decompress_struct {
saw_JFIF_marker: boolean,
JFIF_major_version: u8,
JFIF_minor_version: u8,
density_unit: u8,
X_density: u16,
Y_density: u16,
pub density_unit: u8,
pub X_density: u16,
pub Y_density: u16,
saw_Adobe_marker: boolean,
Adobe_transform: u8,
CCIR601_sampling: boolean,
Expand Down

0 comments on commit 83fdf32

Please sign in to comment.