OSDN Git Service

add bitmap_id parameter into apply factor method.
[swfed/swfed.git] / src / swf_gif.h
1 /*
2   +----------------------------------------------------------------------+
3   | Author: yoya@awm.jp                                                  |
4   +----------------------------------------------------------------------+
5 */
6
7 #ifndef __SWF_GIF_H__
8 #define __SWF_GIF_H__
9
10 extern void *
11 gifconv_gif2lossless(unsigned char *gif_data, unsigned long gif_data_len,
12                      int *tag, int *format,
13                      unsigned short *width, unsigned short *height,
14                      void **colormap, int *colormap_count);
15
16 extern unsigned char *
17 gifconv_lossless2gif(void *image_data,
18                      unsigned short width, unsigned short height,
19                      void *index_data,
20                      unsigned short index_data_count,
21                      int tag, int format,
22                      unsigned long *length);
23
24 #endif /* __SWF_GIF_H__ */