aboutsummaryrefslogtreecommitdiff
path: root/libjpeg.txt
diff options
context:
space:
mode:
authordcommander <dcommander@632fc199-4ca6-4c93-a231-07263d6284db>2012-01-28 01:48:07 +0000
committerdcommander <dcommander@632fc199-4ca6-4c93-a231-07263d6284db>2012-01-28 01:48:07 +0000
commit30f356660c17ca3b9daa7155576153c1af84993c (patch)
tree7f4eefaddc2ed8207df4f4fa145170c33d9b1d4c /libjpeg.txt
parent92dcb54ba5aaa4a660e1371fda0fafa669442a7a (diff)
Support additional scaling factors when decompressing
git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@753 632fc199-4ca6-4c93-a231-07263d6284db
Diffstat (limited to 'libjpeg.txt')
-rw-r--r--libjpeg.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/libjpeg.txt b/libjpeg.txt
index c781757..0153542 100644
--- a/libjpeg.txt
+++ b/libjpeg.txt
@@ -1113,7 +1113,8 @@ J_COLOR_SPACE out_color_space
unsigned int scale_num, scale_denom
Scale the image by the fraction scale_num/scale_denom. Default is
1/1, or no scaling. Currently, the only supported scaling ratios
- are 1/1, 1/2, 1/4, and 1/8. (The library design allows for arbitrary
+ are M/8 with all M from 1 to 16, or any reduced fraction thereof (such
+ as 1/2, 3/4, etc.) (The library design allows for arbitrary
scaling ratios but this is not likely to be implemented any time soon.)
Smaller scaling ratios permit significantly faster decoding since
fewer pixels need be processed and a simpler IDCT method can be used.