grml...
[seabios.git] / src / jpeg.h
1 #ifndef __JPEG_H
2 #define __JPEG_H
3
4 struct jpeg_decdata;
5 struct jpeg_decdata *jpeg_alloc(void);
6 int jpeg_decode(struct jpeg_decdata *jpeg, unsigned char *buf);
7 void jpeg_get_size(struct jpeg_decdata *jpeg, int *width, int *height);
8 int jpeg_show(struct jpeg_decdata *jpeg, unsigned char *pic, int width
9               , int height, int depth, int bytes_per_line_dest);
10
11 #endif