mirror of https://github.com/mpv-player/mpv
17 lines
212 B
C
17 lines
212 B
C
|
|
||
|
#ifndef _MF_H
|
||
|
#define _MF_H
|
||
|
|
||
|
extern int mf_support;
|
||
|
extern int mf_w;
|
||
|
extern int mf_h;
|
||
|
extern int mf_fps;
|
||
|
extern char * mf_type;
|
||
|
|
||
|
typedef struct
|
||
|
{
|
||
|
int nr_of_files;
|
||
|
char ** names;
|
||
|
} mf_t;
|
||
|
|
||
|
#endif
|