mirror of
https://github.com/mpv-player/mpv
synced 2024-11-07 01:47:00 +01:00
4ccfe264a3
STREAMTYPE_MF removed, using STREAMTYPE_DUMMY instead mf.c/demux_mf updated to do the opening in demux_open instead of stream_open git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7408 b3059339-0415-0410-9bf9-f77b7e298cf2
21 lines
259 B
C
21 lines
259 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 curr_frame;
|
|
int nr_of_files;
|
|
char ** names;
|
|
} mf_t;
|
|
|
|
mf_t* open_mf(char * filename);
|
|
|
|
#endif
|