comparison libmpdemux/mf.h @ 7407:8780415baa87

stream layer cleanup - part 1 STREAMTYPE_MF removed, using STREAMTYPE_DUMMY instead mf.c/demux_mf updated to do the opening in demux_open instead of stream_open
author arpi
date Sun, 15 Sep 2002 19:47:49 +0000
parents cf2882606e72
children 27fff718ede6
comparison
equal deleted inserted replaced
7406:1394aebaa838 7407:8780415baa87
8 extern float mf_fps; 8 extern float mf_fps;
9 extern char * mf_type; 9 extern char * mf_type;
10 10
11 typedef struct 11 typedef struct
12 { 12 {
13 int nr_of_files; 13 int curr_frame;
14 int nr_of_files;
14 char ** names; 15 char ** names;
15 } mf_t; 16 } mf_t;
16 17
18 mf_t* open_mf(char * filename);
19
17 #endif 20 #endif