From 102215a611e368aa928e5e23e7ca8f0a93d72ba7 Mon Sep 17 00:00:00 2001 From: Ryan Oldenburg Date: Wed, 25 May 2022 18:59:52 -0500 Subject: [PATCH] f --- src/pixie/fileformats/jpeg.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pixie/fileformats/jpeg.nim b/src/pixie/fileformats/jpeg.nim index 43a9146..aeba663 100644 --- a/src/pixie/fileformats/jpeg.nim +++ b/src/pixie/fileformats/jpeg.nim @@ -69,7 +69,6 @@ type len, pos: int bitsBuffered: int bitBuffer: uint32 - hitEnd: bool imageHeight, imageWidth: int quantizationTables: array[4, array[64, uint8]] huffmanTables: array[2, array[4, Huffman]] # 0 = DC, 1 = AC @@ -84,6 +83,7 @@ type restartInterval: int todoBeforeRestart: int eobRun: int + hitEnd: bool orientation: int when defined(release):