summaryrefslogtreecommitdiffstats
path: root/libmpdemux
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-01-28 22:04:07 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-01-28 22:04:07 +0000
commit83d0427925b3763ebedbf22178db3c0b4b9ee349 (patch)
tree97228d38ff03f4e1eb501fb8feb3c42bf3470573 /libmpdemux
parent3277c61b77ac26e9110e34bb5404a7a39c77fe16 (diff)
downloadmpv-83d0427925b3763ebedbf22178db3c0b4b9ee349.tar.bz2
mpv-83d0427925b3763ebedbf22178db3c0b4b9ee349.tar.xz
removed nonsense (and confusing) defaults
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9150 b3059339-0415-0410-9bf9-f77b7e298cf2
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;