summaryrefslogtreecommitdiffstats
path: root/demux/mf.c
diff options
context:
space:
mode:
Diffstat (limited to 'demux/mf.c')
-rw-r--r--demux/mf.c14
1 files changed, 11 insertions, 3 deletions
diff --git a/demux/mf.c b/demux/mf.c
index 440156087e..6ab23b36e9 100644
--- a/demux/mf.c
+++ b/demux/mf.c
@@ -43,12 +43,11 @@
#include "mf.h"
-int mf_w = 0; //352; // let codecs to detect it
-int mf_h = 0; //288;
double mf_fps = 25.0;
char * mf_type = NULL; //"jpg";
-mf_t* open_mf(char * filename){
+mf_t* open_mf_pattern(char * filename)
+{
#if defined(HAVE_GLOB) || defined(__MINGW32__)
glob_t gg;
int i;
@@ -169,3 +168,12 @@ exit_mf:
return 0;
#endif
}
+
+mf_t* open_mf_single(char * filename)
+{
+ mf_t *mf = calloc(1, sizeof(mf_t));
+ mf->nr_of_files = 1;
+ mf->names = calloc(1, sizeof(char *));
+ mf->names[0] = strdup(filename);
+ return mf;
+}