Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


imported SEABIOS source tree
[palacios.git] / bios / seabios / 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