* some additions and a removal in stubs.c (by elubie)

* mingw config update to link properly with ffmpeg
This commit is contained in:
Nathan Letwory 2007-12-29 20:47:39 +00:00
parent dc98efaaa0
commit 47f9c1fa5f
2 changed files with 8 additions and 3 deletions

@ -18,7 +18,7 @@ BF_OPENAL_LIB = 'openal_static'
BF_OPENAL_LIBPATH = '${BF_OPENAL}/lib'
WITH_BF_FFMPEG = 'false'
BF_FFMPEG_LIB = 'avformat avutil avcodec'
BF_FFMPEG_LIB = 'avformat swscale avcodec avutil xvidcore x264'
BF_FFMPEG_LIBPATH = LIBDIR + '/gcc/ffmpeg/lib'
BF_FFMPEG_INC = LIBDIR + '/gcc/ffmpeg/include'

@ -34,8 +34,10 @@ void error() {}
void set_timecursor() {}
void waitcursor() {}
void pupmenu() {}
void load_vfont() {}
void mainqenter() {}
void saveover() {}
char texstr[20][12];
/* global vars */
void *editNurb;
@ -90,4 +92,7 @@ void BIF_filelist_freelib() {}
void audiostream_play() {}
void audiostream_fill() {}
struct RenderData;
void start_avi_codec(struct RenderData *rd,int rectx, int recty ){}
void append_avi_codec(int frame,int *pixels,int rectx, int recty){};
void end_avi_codec(void){};