diff options
author | 2015-01-10 12:50:58 +0100 | |
---|---|---|
committer | 2015-01-10 12:50:58 +0100 | |
commit | 0404bdd34cb4779129f372ce735f316379644a84 (patch) | |
tree | 4c11357fbfa3b2c7d25172c29d59be54d3f67f1f /3rdparty/libjpeg/jchuff.c | |
parent | b0640c888bf6b9cb655e72a98e60ba6f9dcd8434 (diff) |
Fixes for libjpeg compile (nw)
Diffstat (limited to '3rdparty/libjpeg/jchuff.c')
-rw-r--r-- | 3rdparty/libjpeg/jchuff.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/3rdparty/libjpeg/jchuff.c b/3rdparty/libjpeg/jchuff.c index 257d7aa1f54..abf27d05e8a 100644 --- a/3rdparty/libjpeg/jchuff.c +++ b/3rdparty/libjpeg/jchuff.c @@ -302,7 +302,7 @@ dump_buffer_e (huff_entropy_ptr entropy) * between calls, so 24 bits are sufficient. */ -INLINE +/*INLINE*/ LOCAL(boolean) emit_bits_s (working_state * state, unsigned int code, int size) /* Emit some bits; return TRUE if successful, FALSE if must suspend */ @@ -341,7 +341,7 @@ emit_bits_s (working_state * state, unsigned int code, int size) } -INLINE +/*INLINE*/ LOCAL(void) emit_bits_e (huff_entropy_ptr entropy, unsigned int code, int size) /* Emit some bits, unless we are in gather mode */ @@ -406,7 +406,7 @@ flush_bits_e (huff_entropy_ptr entropy) * Emit (or just count) a Huffman symbol. */ -INLINE +/*INLINE*/ LOCAL(void) emit_dc_symbol (huff_entropy_ptr entropy, int tbl_no, int symbol) { @@ -419,7 +419,7 @@ emit_dc_symbol (huff_entropy_ptr entropy, int tbl_no, int symbol) } -INLINE +/*INLINE*/ LOCAL(void) emit_ac_symbol (huff_entropy_ptr entropy, int tbl_no, int symbol) { |