Skip to content

Commit

Permalink
This is not valid standard C
Browse files Browse the repository at this point in the history
  • Loading branch information
aaaaaa123456789 committed Jan 19, 2022
1 parent 41f87cc commit 2c01168
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/struct.h
Original file line number Diff line number Diff line change
Expand Up @@ -85,12 +85,12 @@ struct JPEG_decoder_tables {
};

struct JPEG_component_info {
uint32_t index: 8;
uint32_t tableQ: 8;
uint32_t tableDC: 4;
uint32_t tableAC: 4;
uint32_t scaleH: 4;
uint32_t scaleV: 4;
unsigned index: 8;
unsigned tableQ: 8;
unsigned tableDC: 4;
unsigned tableAC: 4;
unsigned scaleH: 4;
unsigned scaleV: 4;
};

struct JPEG_decompressor_state {
Expand Down

0 comments on commit 2c01168

Please sign in to comment.