mirror of
https://github.com/mpv-player/mpv
synced 2024-10-30 04:46:41 +01:00
3e9e4acd8d
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23709 b3059339-0415-0410-9bf9-f77b7e298cf2
20 lines
231 B
C
20 lines
231 B
C
|
|
#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
|