mirror of
https://github.com/webmproject/libwebp.git
synced 2025-07-16 22:09:57 +02:00
mux: drop 'chunk' from ChunkInfo member names
fixes naming style (members should be lowercase, not camelcase). Change-Id: I431acdfe3cc3740d9effe9df80a94ca284a072b6
This commit is contained in:
@ -94,10 +94,10 @@ typedef enum {
|
||||
((uint32_t)c1 | (c2 << 8) | (c3 << 16) | (c4 << 24))
|
||||
|
||||
typedef struct {
|
||||
const char* chunkName;
|
||||
uint32_t chunkTag;
|
||||
TAG_ID chunkId;
|
||||
uint32_t chunkSize;
|
||||
const char* name;
|
||||
uint32_t tag;
|
||||
TAG_ID id;
|
||||
uint32_t size;
|
||||
} ChunkInfo;
|
||||
|
||||
extern const ChunkInfo kChunks[LAST_TAG_ID];
|
||||
|
Reference in New Issue
Block a user