aboutsummaryrefslogtreecommitdiff
path: root/jdhuff.h
diff options
context:
space:
mode:
authordcommander <dcommander@632fc199-4ca6-4c93-a231-07263d6284db>2010-04-20 21:13:26 +0000
committerdcommander <dcommander@632fc199-4ca6-4c93-a231-07263d6284db>2010-04-20 21:13:26 +0000
commit77d822922280ae72e17d0b23c8fc3f3b82e2401a (patch)
treeb661f693bdd114063e83c3347bb29833e7b7ae15 /jdhuff.h
parent9365c108031e18553ddf934c549e62ae3b5c93cb (diff)
Use 64-bit holding buffer on Win64 for increased performance
git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@177 632fc199-4ca6-4c93-a231-07263d6284db
Diffstat (limited to 'jdhuff.h')
-rw-r--r--jdhuff.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/jdhuff.h b/jdhuff.h
index b192e48..0a242c5 100644
--- a/jdhuff.h
+++ b/jdhuff.h
@@ -73,7 +73,7 @@ EXTERN(void) jpeg_make_d_derived_tbl
* necessary.
*/
-#if __WORDSIZE == 64
+#if __WORDSIZE == 64 || defined(_WIN64)
typedef size_t bit_buf_type; /* type of bit-extraction buffer */
#define BIT_BUF_SIZE 64 /* size of buffer in bits */