diff options
author | arpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2003-01-28 22:04:07 +0000 |
---|---|---|
committer | arpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2003-01-28 22:04:07 +0000 |
commit | 83d0427925b3763ebedbf22178db3c0b4b9ee349 (patch) | |
tree | 97228d38ff03f4e1eb501fb8feb3c42bf3470573 /libmpdemux/mf.c | |
parent | 3277c61b77ac26e9110e34bb5404a7a39c77fe16 (diff) | |
download | mpv-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/mf.c')
-rw-r--r-- | libmpdemux/mf.c | 6 |
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; |