1
mirror of https://github.com/mpv-player/mpv synced 2024-10-22 08:51:57 +02:00
mpv/libmpdemux/mf.h
diego 3e9e4acd8d Do not use leading underscores in multiple inclusion guards, they are reserved.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23709 b3059339-0415-0410-9bf9-f77b7e298cf2
2007-07-02 22:34:45 +00:00

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