diff options
author | Boris Gjenero <boris.gjenero@gmail.com> | 2016-01-06 00:46:42 -0500 |
---|---|---|
committer | Gerrit Rockbox <gerrit@rockbox.org> | 2016-04-01 19:29:41 +0200 |
commit | 26697d08912feecd3c0c924773d518d1720f0640 (patch) | |
tree | f68906327c04fad29344f1ae30ec2c622b32c970 /apps/recorder/jpeg_common.h | |
parent | 25fc7f1860f31ae31f14f17449fae8105d21f628 (diff) | |
download | rockbox-26697d08912feecd3c0c924773d518d1720f0640.tar.gz rockbox-26697d08912feecd3c0c924773d518d1720f0640.zip |
Fix FS#12981 JPEG decoding problem when entropy data starts with FF
This changes JPEG fill and invalid byte handling to be like
mozjpeg, and bases entropy data start on SOS marker location.
Thanks to Stefan Waldmann and Dean Tersigni for reporting.
Change-Id: I3c79cc6ac8d714fdc75c12b57ba427d611c99519
Chaange-Id: Ibc7c17d38d5be63642bdaf6adfd6acc2a6cf4450
Diffstat (limited to 'apps/recorder/jpeg_common.h')
-rw-r--r-- | apps/recorder/jpeg_common.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/apps/recorder/jpeg_common.h b/apps/recorder/jpeg_common.h index 061cfc8e64..c2abce8f49 100644 --- a/apps/recorder/jpeg_common.h +++ b/apps/recorder/jpeg_common.h | |||
@@ -139,7 +139,6 @@ struct bitstream | |||
139 | #define HUFFTAB 0x0001 /* with huffman table */ | 139 | #define HUFFTAB 0x0001 /* with huffman table */ |
140 | #define QUANTTAB 0x0002 /* with quantization table */ | 140 | #define QUANTTAB 0x0002 /* with quantization table */ |
141 | #define APP0_JFIF 0x0004 /* with APP0 segment following JFIF standard */ | 141 | #define APP0_JFIF 0x0004 /* with APP0 segment following JFIF standard */ |
142 | #define FILL_FF 0x0008 /* with 0xFF padding bytes at begin/end */ | ||
143 | #define SOF0 0x0010 /* with SOF0-Segment */ | 142 | #define SOF0 0x0010 /* with SOF0-Segment */ |
144 | #define DHT 0x0020 /* with Definition of huffman tables */ | 143 | #define DHT 0x0020 /* with Definition of huffman tables */ |
145 | #define SOS 0x0040 /* with Start-of-Scan segment */ | 144 | #define SOS 0x0040 /* with Start-of-Scan segment */ |