view libmpdemux/mf.h @ 24862:94ec445120da

Disable clear_screen function, the call to the function is commented out due to buggyness. Fixes the warning: vo_tdfx_vid.c:78: warning: 'clear_screen' defined but not used
author diego
date Tue, 30 Oct 2007 08:55:29 +0000
parents 3f0d00abc073
children 3baf6a2283da
line wrap: on
line source


#ifndef MF_H
#define MF_H

extern int    mf_w;
extern int    mf_h;
extern float  mf_fps;
extern char * mf_type;

typedef struct
{
 int curr_frame;
 int nr_of_files;
 char ** names;
} mf_t;

mf_t* open_mf(char * filename);

#endif