aboutsummaryrefslogtreecommitdiff
path: root/jdhuff.c
diff options
context:
space:
mode:
authordcommander <dcommander@632fc199-4ca6-4c93-a231-07263d6284db>2015-04-22 08:39:37 +0000
committerdcommander <dcommander@632fc199-4ca6-4c93-a231-07263d6284db>2015-04-22 08:39:37 +0000
commitec250624b543aecd0dacd6b2ec9984f19d2d10d9 (patch)
tree61e71817c89d207c5e42c0f646d69aa54ad0098c /jdhuff.c
parent22f5121b5e5e6465044a81abe75ab1551b413bc1 (diff)
Oops. OS X doesn't define __WORDSIZE unless you include stdint.h, so apparently the Huffman codec hasn't ever been fully accelerated on 64-bit OS X.
git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@1540 632fc199-4ca6-4c93-a231-07263d6284db
Diffstat (limited to 'jdhuff.c')
-rw-r--r--jdhuff.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/jdhuff.c b/jdhuff.c
index 7dc1328..583ee11 100644
--- a/jdhuff.c
+++ b/jdhuff.c
@@ -22,6 +22,7 @@
#include "jdhuff.h" /* Declarations shared with jdphuff.c */
#include "jpegcomp.h"
#include "jstdhuff.c"
+#include <stdint.h>
/*
@@ -419,6 +420,10 @@ jpeg_fill_bit_buffer (bitread_working_state * state,
} \
}
+#if !defined(_WIN32) && !defined(__WORDSIZE)
+#error __WORDSIZE is not defined
+#endif
+
#if __WORDSIZE == 64 || defined(_WIN64)
/* Pre-fetch 48 bytes, because the holding register is 64-bit */