aboutsummaryrefslogtreecommitdiffstats
path: root/src/jpeg.h
blob: 44c83d76842b250bde6ffd5686f3a55878f33efc (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef __JPEG_H
#define __JPEG_H

struct jpeg_decdata;
struct jpeg_decdata *jpeg_alloc(void);
int jpeg_decode(unsigned char *, unsigned char *, int, int, int,
                struct jpeg_decdata *);
int jpeg_check_size(struct jpeg_decdata *, unsigned char *, int, int);

#endif