diff options
author | DRC <dcommander@users.sourceforge.net> | 2015-07-14 20:51:53 +0000 |
---|---|---|
committer | DRC <dcommander@users.sourceforge.net> | 2015-07-14 20:51:53 +0000 |
commit | a3deac158b24fb146ef551941e5f83ce646472ae (patch) | |
tree | 13fec70645b61710f930a93b7f30afb78e95359a /jddctmgr.c | |
parent | c23e36e80009728b8c0f5e36ba6cb07885334d3b (diff) |
Fix build whenever IDCT_SCALING_SUPPORTED is undefined
git-svn-id: svn+ssh://svn.code.sf.net/p/libjpeg-turbo/code/branches/1.4.x@1597 632fc199-4ca6-4c93-a231-07263d6284db
Diffstat (limited to 'jddctmgr.c')
-rw-r--r-- | jddctmgr.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -181,6 +181,7 @@ start_pass (j_decompress_ptr cinfo) break; } break; +#ifdef IDCT_SCALING_SUPPORTED case 9: method_ptr = jpeg_idct_9x9; method = JDCT_ISLOW; /* jidctint uses islow-style table */ @@ -218,6 +219,7 @@ start_pass (j_decompress_ptr cinfo) method_ptr = jpeg_idct_16x16; method = JDCT_ISLOW; /* jidctint uses islow-style table */ break; +#endif default: ERREXIT1(cinfo, JERR_BAD_DCTSIZE, compptr->_DCT_scaled_size); break; |