mirror of
https://github.com/webmproject/libwebp.git
synced 2024-11-20 04:18:26 +01:00
remove use of bit-fields in VP8FInfo
(in favor of just plain uint8_t's) Change-Id: I6187587a4d8a9f5c304a132d98ec42ce24fd244a
This commit is contained in:
parent
87a4fca25f
commit
8983b83ee1
@ -151,10 +151,10 @@ typedef struct {
|
||||
// Informations about the macroblocks.
|
||||
|
||||
typedef struct { // filter specs
|
||||
unsigned int f_level_:6; // filter strength: 0..63
|
||||
unsigned int f_ilevel_:6; // inner limit: 1..63
|
||||
unsigned int f_inner_:1; // do inner filtering?
|
||||
unsigned int pad_:19;
|
||||
uint8_t f_level_; // filter strength: 0..63
|
||||
uint8_t f_ilevel_; // inner limit: 1..63
|
||||
uint8_t f_inner_; // do inner filtering?
|
||||
uint8_t pad_; // mostly needed for struct aligning on ARM
|
||||
} VP8FInfo;
|
||||
|
||||
typedef struct { // used for syntax-parsing
|
||||
|
Loading…
Reference in New Issue
Block a user