mirror of
https://github.com/mpv-player/mpv
synced 2024-12-12 18:06:18 +00:00
14639c9f42
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5353 b3059339-0415-0410-9bf9-f77b7e298cf2
18 lines
213 B
C
18 lines
213 B
C
|
|
#ifndef _MF_H
|
|
#define _MF_H
|
|
|
|
extern int mf_support;
|
|
extern int mf_w;
|
|
extern int mf_h;
|
|
extern float mf_fps;
|
|
extern char * mf_type;
|
|
|
|
typedef struct
|
|
{
|
|
int nr_of_files;
|
|
char ** names;
|
|
} mf_t;
|
|
|
|
#endif
|