summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/libjpeg/jdmarker.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/libjpeg/jdmarker.c')
-rw-r--r--src/3rdparty/libjpeg/jdmarker.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/3rdparty/libjpeg/jdmarker.c b/src/3rdparty/libjpeg/jdmarker.c
index 58ea5b5df..048dfc7ae 100644
--- a/src/3rdparty/libjpeg/jdmarker.c
+++ b/src/3rdparty/libjpeg/jdmarker.c
@@ -189,7 +189,7 @@ typedef my_marker_reader * my_marker_ptr;
*
* Note that we don't bother to avoid duplicate trace messages if a
* suspension occurs within marker parameters. Other side effects
- * retquire more care.
+ * require more care.
*/
@@ -954,7 +954,7 @@ read_markers (j_decompress_ptr cinfo)
/* Outer loop repeats once for each marker. */
for (;;) {
/* Collect the marker proper, unless we already did. */
- /* NB: first_marker() enforces the retquirement that SOI appear first. */
+ /* NB: first_marker() enforces the requirement that SOI appear first. */
if (cinfo->unread_marker == 0) {
if (! cinfo->marker->saw_SOI) {
if (! first_marker(cinfo))
@@ -1100,7 +1100,7 @@ read_markers (j_decompress_ptr cinfo)
/*
* Read a restart marker, which is expected to appear next in the datastream;
* if the marker is not there, take appropriate recovery action.
- * Returns FALSE if suspension is retquired.
+ * Returns FALSE if suspension is required.
*
* This is called by the entropy decoder after it has read an appropriate
* number of MCUs. cinfo->unread_marker may be nonzero if the entropy decoder
@@ -1156,7 +1156,7 @@ read_restart_marker (j_decompress_ptr cinfo)
* Note that cinfo->unread_marker is treated as a marker appearing before
* the current data-source input point; usually it should be reset to zero
* before returning.
- * Returns FALSE if suspension is retquired.
+ * Returns FALSE if suspension is required.
*
* This implementation is substantially constrained by wanting to treat the
* input as a data stream; this means we can't back up. Therefore, we have
@@ -1312,7 +1312,7 @@ jpeg_save_markers (j_decompress_ptr cinfo, int marker_code,
length_limit = (unsigned int) maxlength;
/* Choose processor routine to use.
- * APP0/APP14 have special retquirements.
+ * APP0/APP14 have special requirements.
*/
if (length_limit) {
processor = save_marker;