mirror of
https://github.com/mpv-player/mpv
synced 2024-12-13 02:15:59 +00:00
e503389acf
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19306 b3059339-0415-0410-9bf9-f77b7e298cf2
20 lines
233 B
C
20 lines
233 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
|