mirror of
https://github.com/overte-org/overte.git
synced 2025-08-10 01:24:36 +02:00
Fix compiler warnings
This commit is contained in:
parent
41f3d81443
commit
a9b3d93260
1 changed files with 3 additions and 3 deletions
|
@ -287,8 +287,8 @@ typedef struct
|
||||||
} huffdec_bitbuf;
|
} huffdec_bitbuf;
|
||||||
|
|
||||||
/* Huffman Decoder bit buffer functions */
|
/* Huffman Decoder bit buffer functions */
|
||||||
void h_setbuf (huffdec_bitbuf * bb, guint8 * buf, guint size);
|
static void h_setbuf (huffdec_bitbuf * bb, guint8 * buf, guint size);
|
||||||
void h_reset (huffdec_bitbuf * bb);
|
static void h_reset (huffdec_bitbuf * bb);
|
||||||
|
|
||||||
#if ENABLE_OPT_BS
|
#if ENABLE_OPT_BS
|
||||||
static inline guint32 h_get1bit (huffdec_bitbuf * bb);
|
static inline guint32 h_get1bit (huffdec_bitbuf * bb);
|
||||||
|
@ -301,7 +301,7 @@ static inline void h_flushbits (huffdec_bitbuf * bb, guint N);
|
||||||
/* read N bits from the bit stream */
|
/* read N bits from the bit stream */
|
||||||
static inline guint32 h_getbits (huffdec_bitbuf * bb, guint N);
|
static inline guint32 h_getbits (huffdec_bitbuf * bb, guint N);
|
||||||
|
|
||||||
void h_rewindNbits (huffdec_bitbuf * bb, guint N);
|
static void h_rewindNbits (huffdec_bitbuf * bb, guint N);
|
||||||
static inline void h_byte_align (huffdec_bitbuf * bb);
|
static inline void h_byte_align (huffdec_bitbuf * bb);
|
||||||
static inline guint h_bytes_avail (huffdec_bitbuf * bb);
|
static inline guint h_bytes_avail (huffdec_bitbuf * bb);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue