From 403a2b95a8867b9a8826633b28dbd5a95610d50a Mon Sep 17 00:00:00 2001 From: Ryan Oldenburg Date: Wed, 25 May 2022 19:39:22 -0500 Subject: [PATCH] f --- src/pixie/fileformats/jpeg.nim | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/pixie/fileformats/jpeg.nim b/src/pixie/fileformats/jpeg.nim index d734de2..45f0ec4 100644 --- a/src/pixie/fileformats/jpeg.nim +++ b/src/pixie/fileformats/jpeg.nim @@ -69,24 +69,23 @@ type len, pos: int bitsBuffered: int bitBuffer: uint32 - imageHeight, imageWidth: int + progressive: bool quantizationTables: array[4, array[64, uint8]] huffmanTables: array[2, array[4, Huffman]] # 0 = DC, 1 = AC components: seq[Component] maxYScale, maxXScale: int mcuWidth, mcuHeight, numMcuWide, numMcuHigh: int + orientation: int scanComponents: int spectralStart, spectralEnd: int successiveApproxLow, successiveApproxHigh: int componentOrder: seq[int] - progressive: bool restartInterval: int todoBeforeRestart: int eobRun: int hitEnd: bool - orientation: int when defined(release): {.push checks: off.}