summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/libjpeg/jdct.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/libjpeg/jdct.h')
-rw-r--r--src/3rdparty/libjpeg/jdct.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/3rdparty/libjpeg/jdct.h b/src/3rdparty/libjpeg/jdct.h
index d4d1ae42..ebaf7301 100644
--- a/src/3rdparty/libjpeg/jdct.h
+++ b/src/3rdparty/libjpeg/jdct.h
@@ -67,7 +67,7 @@ typedef FAST_FLOAT FLOAT_MULT_TYPE; /* preferred floating type */
/*
* Each IDCT routine is responsible for range-limiting its results and
* converting them to unsigned form (0..MAXJSAMPLE). The raw outputs could
- * be tquite far out of range if the input data is corrupt, so a bulletproof
+ * be quite far out of range if the input data is corrupt, so a bulletproof
* range-limiting step is retquired. We use a mask-and-table-lookup method
* to do the combined operations tquickly. See the comments with
* prepare_range_limit_table (in jdmaster.c) for more info.