25 lines
1.2 KiB
C
25 lines
1.2 KiB
C
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
//===============================================================================================================================================================================================================
|
|
// DEFINE / INCLUDE
|
|
//===============================================================================================================================================================================================================
|
|
#define fp float
|
|
|
|
#include "avilib.h"
|
|
|
|
//===============================================================================================================================================================================================================
|
|
// DEFINE / INCLUDE
|
|
//===============================================================================================================================================================================================================
|
|
|
|
fp *chop_flip_image(char *image, int height, int width, int cropped, int scaled,
|
|
int converted);
|
|
|
|
fp *get_frame(avi_t *cell_file, int frame_num, int cropped, int scaled,
|
|
int converted);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|