summaryrefslogtreecommitdiffstats
path: root/libmpdemux
diff options
context:
space:
mode:
Diffstat (limited to 'libmpdemux')
-rw-r--r--libmpdemux/mf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libmpdemux/mf.c b/libmpdemux/mf.c
index 434a426185..6d874eaf8b 100644
--- a/libmpdemux/mf.c
+++ b/libmpdemux/mf.c
@@ -19,10 +19,10 @@
#include "mf.h"
int mf_support = 0;
-int mf_w = 352;
-int mf_h = 288;
+int mf_w = 0; //352; // let codecs to detect it
+int mf_h = 0; //288;
float mf_fps = 25.0;
-char * mf_type = "jpg";
+char * mf_type = NULL; //"jpg";
mf_t* open_mf(char * filename){
glob_t gg;