From 4cb8edf4b211a3cf12e44c452927d152624b6ad4 Mon Sep 17 00:00:00 2001 From: Mark Hahn Date: Thu, 4 Jul 2013 11:40:48 -0700 Subject: [PATCH] removed DHT marker FFC4 from list of SOF markers --- lib/image/jpeg.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/image/jpeg.coffee b/lib/image/jpeg.coffee index 7354e77..965f46d 100644 --- a/lib/image/jpeg.coffee +++ b/lib/image/jpeg.coffee @@ -8,7 +8,7 @@ class JPEG if data.readUInt16() isnt 0xFFD8 throw "SOI not found in JPEG" - markers = [0xFFC0, 0xFFC1, 0xFFC2, 0xFFC3, 0xFFC4, 0xFFC5, 0xFFC6, 0xFFC7, + markers = [0xFFC0, 0xFFC1, 0xFFC2, 0xFFC3, 0xFFC5, 0xFFC6, 0xFFC7, 0xFFC8, 0xFFC9, 0xFFCA, 0xFFCB, 0xFFCC, 0xFFCD, 0xFFCE, 0xFFCF] while data.pos < len