mirror of
https://github.com/webmproject/libwebp.git
synced 2025-04-05 16:36:49 +02:00
fix the BITS=8 case
spotted by Måns Rullgård (mans at mansr dot com) Change-Id: I4484b1f00223a0be18cbe924b24a9f5ccffb7ea2
This commit is contained in:
parent
e5970bda8a
commit
77aa7d50a4
@ -93,6 +93,8 @@ static WEBP_INLINE void VP8LoadNewBytes(VP8BitReader* const br) {
|
|||||||
#elif (BITS == 16)
|
#elif (BITS == 16)
|
||||||
// gcc will recognize a 'rorw $8, ...' here:
|
// gcc will recognize a 'rorw $8, ...' here:
|
||||||
bits = (bit_t)(in_bits >> 8) | ((in_bits & 0xff) << 8);
|
bits = (bit_t)(in_bits >> 8) | ((in_bits & 0xff) << 8);
|
||||||
|
#else // BITS == 8
|
||||||
|
bits = (bit_t)in_bits;
|
||||||
#endif
|
#endif
|
||||||
#else // LITTLE_ENDIAN
|
#else // LITTLE_ENDIAN
|
||||||
bits = (bit_t)in_bits;
|
bits = (bit_t)in_bits;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user