changeset 9149:ca6dc931f6ea

removed nonsense (and confusing) defaults
author arpi
date Tue, 28 Jan 2003 22:04:07 +0000
parents 946b14a9e743
children f3f50ef630ac
files libmpdemux/mf.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/libmpdemux/mf.c	Tue Jan 28 22:00:57 2003 +0000
+++ b/libmpdemux/mf.c	Tue Jan 28 22:04:07 2003 +0000
@@ -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;