summaryrefslogtreecommitdiffstats
path: root/include/jpegint.h
diff options
context:
space:
mode:
authorOliver Schinagl <oliver@schinagl.nl>2005-04-11 22:08:09 (GMT)
committerOliver Schinagl <oliver@schinagl.nl>2005-04-11 22:08:09 (GMT)
commitbad92fb32d5b32fdb478f4c4cbe2daa8d9900cbf (patch)
tree6e78c5175c1ee76747d8b61b7dd69e841a7dadcf /include/jpegint.h
parent1a735f44bbb5553bb2d12cf86de4b59b1206c9dd (diff)
download5kk53-bad92fb32d5b32fdb478f4c4cbe2daa8d9900cbf.zip
5kk53-bad92fb32d5b32fdb478f4c4cbe2daa8d9900cbf.tar.gz
5kk53-bad92fb32d5b32fdb478f4c4cbe2daa8d9900cbf.tar.bz2
Huffman coder and decoder compile cleanly now. Need to be used +tested however.
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 */
+};