(08:09:34 PM) ckoch: CarlFK, quick fix that seems to work here it worked. Thanks.
Index: avilib/avilib.h =================================================================== RCS file: /cvstc/transcode/avilib/avilib.h,v retrieving revision 1.31 diff -u -r1.31 avilib.h --- avilib/avilib.h 8 Nov 2008 13:30:30 -0000 1.31 +++ avilib/avilib.h 11 Nov 2008 02:07:43 -0000 @@ -293,6 +293,8 @@ getIndex==0, but an operation has been performed that needs an index */ +#define AVI_ERR_NO_BUFSIZE 14 + /* Possible Audio formats */ #ifndef WAVE_FORMAT_PCM @@ -332,8 +334,8 @@ const char *indexfile); avi_t *AVI_open_fd(int fd, int getIndex); avi_t *AVI_open_indexfd(int fd, int getIndex, const char *indexfile); -int avi_parse_input_file(avi_t *AVI, int getIndex); -int avi_parse_index_from_file(avi_t *AVI, const char *filename); +//int avi_parse_input_file(avi_t *AVI, int getIndex); +//int avi_parse_index_from_file(avi_t *AVI, const char *filename); long AVI_audio_mp3rate(avi_t *AVI); long AVI_audio_padrate(avi_t *AVI); long AVI_video_frames(avi_t *AVI); @@ -378,7 +380,7 @@ long *len); void AVI_print_error(const char *str); -char *AVI_strerror(void); +const char *AVI_strerror(void); char *AVI_syserror(void); int AVI_scan(const char *name); @@ -387,7 +389,7 @@ int AVI_file_check(const char *import_file); uint64_t AVI_max_size(void); -int avi_update_header(avi_t *AVI); +//int avi_update_header(avi_t *AVI); int AVI_set_audio_track(avi_t *AVI, int track); int AVI_get_audio_track(avi_t *AVI); Carl K