1 #ifndef SIMAGE_AVI_H
2 #define SIMAGE_AVI_H
3 
4 #include <config.h>
5 
6 #ifndef SIMAGE_AVIENC_SUPPORT
7 #error "This file should not be used under the current configuration!"
8 #endif /* !SIMAGE_AVIENC_SUPPORT */
9 
10 #include <simage.h>
11 
12 int avienc_movie_create(const char * filename, s_movie * movie, s_params * params);
13 int avienc_movie_put(s_movie * movie, s_image * image, s_params * params);
14 void avienc_movie_close(s_movie * movie);
15 
16 #endif /* SIMAGE_AVI_H */
17 
18