blob: b13bf3f4055ef070a3ee2bf443b36af450b162b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <jpeglib.h>
#if JPEG_LIB_VERSION < 80 && !defined(MEM_SRCDST_SUPPORTED)
void
jpeg_mem_src (j_decompress_ptr cinfo, unsigned char * buffer,
unsigned long bufsize);
void
jpeg_mem_dest (j_compress_ptr cinfo, unsigned char ** outbuffer,
unsigned long * outsize);
#endif
|