summaryrefslogtreecommitdiffstats
path: root/stream/mf.h
diff options
context:
space:
mode:
Diffstat (limited to 'stream/mf.h')
-rw-r--r--stream/mf.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/stream/mf.h b/stream/mf.h
new file mode 100644
index 0000000000..b288063a28
--- /dev/null
+++ b/stream/mf.h
@@ -0,0 +1,19 @@
+
+#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