mirror of
https://github.com/mpv-player/mpv
synced 2024-12-09 08:29:42 +00:00
5787833ca9
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9747 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
|