1
0
mirror of https://github.com/mpv-player/mpv synced 2025-03-01 03:40:43 +00:00

enable mf support on mingw32

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9985 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
faust3 2003-04-25 10:20:15 +00:00
parent 0015a97826
commit b80199e5dc

View File

@ -13,6 +13,8 @@
#ifdef HAVE_GLOB
#include <glob.h>
#else
#include "../osdep/glob.h"
#endif
#include "mp_msg.h"
@ -27,7 +29,7 @@ float mf_fps = 25.0;
char * mf_type = NULL; //"jpg";
mf_t* open_mf(char * filename){
#ifdef HAVE_GLOB
#if defined(HAVE_GLOB) || defined(__MINGW32__)
glob_t gg;
struct stat fs;
int i;