mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Reorder fields in struct VLCcode for less memory use
This commit is contained in:
parent
604742ee99
commit
ebab55e266
1 changed files with 2 additions and 2 deletions
|
@ -102,11 +102,11 @@ static inline uint32_t bitswap_32(uint32_t x)
|
|||
}
|
||||
|
||||
typedef struct VLCcode {
|
||||
uint8_t bits;
|
||||
uint16_t symbol;
|
||||
/** codeword, with the first bit-to-be-read in the msb
|
||||
* (even if intended for a little-endian bitstream reader) */
|
||||
uint32_t code;
|
||||
uint16_t symbol;
|
||||
uint8_t bits;
|
||||
} VLCcode;
|
||||
|
||||
static int compare_vlcspec(const void *a, const void *b)
|
||||
|
|
Loading…
Add table
Reference in a new issue