summaryrefslogtreecommitdiffstats
path: root/include/jpegint.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/jpegint.h')
-rw-r--r--include/jpegint.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/jpegint.h b/include/jpegint.h
new file mode 100644
index 0000000..e3e5eb8
--- /dev/null
+++ b/include/jpegint.h
@@ -0,0 +1,12 @@
+extern const int jpeg_natural_order[]; /* zigzag coef order to natural order */
+
+/* Entropy decoding */
+struct jpeg_entropy_decoder {
+ JMETHOD(void, start_pass, (j_decompress_ptr cinfo));
+ JMETHOD(boolean, decode_mcu, (j_decompress_ptr cinfo,
+ JBLOCKROW *MCU_data));
+
+ /* This is here to share code between baseline and progressive decoders; */
+ /* other modules probably should not use it */
+ boolean insufficient_data; /* set TRUE after emitting warning */
+};