6 * $Id: io.h,v 1.1 2003/10/21 12:08:54 jpr Exp $
14 * Size of the input and output buffer
16 #define JPEG_BUF_SIZE 4096
19 * The following variables keep track of the input and output
20 * buffer for the JPEG data.
22 extern char outputBuffer[JPEG_BUF_SIZE]; /* output buffer */
23 extern int numOutputBytes; /* bytes in the output buffer */
24 extern Uchar *inputBuffer; /* Input buffer for JPEG data */
25 extern int inputBufferOffset; /* Offset of current byte */