From c95190ed985408db38536fc9322044768b9858a0 Mon Sep 17 00:00:00 2001 From: Ryan Oldenburg Date: Mon, 29 May 2023 02:30:55 -0500 Subject: [PATCH] fix --- src/pixie/fileformats/jpeg.nim | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/pixie/fileformats/jpeg.nim b/src/pixie/fileformats/jpeg.nim index 50c3301..5b5eadf 100644 --- a/src/pixie/fileformats/jpeg.nim +++ b/src/pixie/fileformats/jpeg.nim @@ -1183,6 +1183,9 @@ proc decodeJpegDimensions*( break of 0xC1: failInvalid("unsupported extended sequential DCT format") + of 0xC4: + # Define Huffman Table + state.decodeDHT() of 0xDB: # Define Quantization Table(s) state.skipChunk()