• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include <jpeglib.h>
2 
3 #if JPEG_LIB_VERSION < 80 && !defined(MEM_SRCDST_SUPPORTED)
4 
5 void
6 jpeg_mem_src (j_decompress_ptr cinfo, unsigned char * buffer,
7 	unsigned long bufsize);
8 
9 void
10 jpeg_mem_dest (j_compress_ptr cinfo, unsigned char ** outbuffer,
11 	unsigned long * outsize);
12 
13 #endif
14