1 #ifndef _SIMAGE_QUICKTIME_H_
2 #define _SIMAGE_QUICKTIME_H_
3 
4 #ifdef HAVE_CONFIG_H
5 #include <config.h>
6 #endif /* HAVE_CONFIG_H */
7 
8   int simage_quicktime_error(char * textbuffer, int buffersize);
9 
10   int simage_quicktime_identify(const char * filename,
11                                 const unsigned char * header,
12                                 int headerlen);
13 
14   unsigned char * simage_quicktime_load(const char *filename,
15                                         int *width,
16                                         int *height,
17                                         int *numcomponents);
18 
19   char * simage_quicktime_get_savers(void);
20 
21   int simage_quicktime_save(const char *filename,
22                             const unsigned char * bytes,
23                             int width,
24                             int height,
25                             int numcomponents,
26                             const char * ext);
27 
28 
29 #endif /* _SIMAGE_QUICKTIME_H_ */
30 
31