mirror of https://github.com/davisking/dlib.git
Minor changes to avoid errors and warnings in visual studio.
This commit is contained in:
parent
9c8188eed9
commit
a0f078d9a4
|
@ -297,7 +297,7 @@ dump_buffer (working_state * state)
|
|||
* between calls, so 24 bits are sufficient.
|
||||
*/
|
||||
|
||||
INLINE
|
||||
inline
|
||||
LOCAL(int)
|
||||
emit_bits (working_state * state, unsigned int code, int size)
|
||||
/* Emit some bits; return TRUE if successful, FALSE if must suspend */
|
||||
|
@ -827,7 +827,7 @@ jpeg_gen_optimal_table (j_compress_ptr cinfo, JHUFF_TBL * htbl, long freq[])
|
|||
for (i = 1; i <= MAX_CLEN; i++) {
|
||||
for (j = 0; j <= 255; j++) {
|
||||
if (codesize[j] == i) {
|
||||
htbl->huffval[p] = (unsigned short) j;
|
||||
htbl->huffval[p] = (unsigned char) j;
|
||||
p++;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -223,7 +223,7 @@ dump_buffer (phuff_entropy_ptr entropy)
|
|||
* between calls, so 24 bits are sufficient.
|
||||
*/
|
||||
|
||||
INLINE
|
||||
inline
|
||||
LOCAL(void)
|
||||
emit_bits (phuff_entropy_ptr entropy, unsigned int code, int size)
|
||||
/* Emit some bits, unless we are in gather mode */
|
||||
|
@ -276,7 +276,7 @@ flush_bits (phuff_entropy_ptr entropy)
|
|||
* Emit (or just count) a Huffman symbol.
|
||||
*/
|
||||
|
||||
INLINE
|
||||
inline
|
||||
LOCAL(void)
|
||||
emit_symbol (phuff_entropy_ptr entropy, int tbl_no, int symbol)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue