summaryrefslogtreecommitdiffstats
path: root/cfg-common.h
diff options
context:
space:
mode:
authoratmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-03-26 05:25:15 +0000
committeratmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-03-26 05:25:15 +0000
commit14639c9f421ca49aa7a383d88e5d04d4e3b6ffa1 (patch)
tree60ffa9ce9e302d30400458da227636ea776ed627 /cfg-common.h
parent3f5ad4c82b639b3524df447c08be7685d2ca290a (diff)
downloadmpv-14639c9f421ca49aa7a383d88e5d04d4e3b6ffa1.tar.bz2
mpv-14639c9f421ca49aa7a383d88e5d04d4e3b6ffa1.tar.xz
Fileslist support for mf demuxer, delemited by ',' and change mf fps to float.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5353 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'cfg-common.h')
-rw-r--r--cfg-common.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cfg-common.h b/cfg-common.h
index 0043940725..7174a457b4 100644
--- a/cfg-common.h
+++ b/cfg-common.h
@@ -159,14 +159,14 @@ struct config vivoopts_conf[]={
extern int mf_support;
extern int mf_w;
extern int mf_h;
-extern int mf_fps;
+extern float mf_fps;
extern char * mf_type;
struct config mfopts_conf[]={
{"on", &mf_support, CONF_TYPE_FLAG, 0, 0, 1, NULL},
{"w", &mf_w, CONF_TYPE_INT, 0, 0, 0, NULL},
{"h", &mf_h, CONF_TYPE_INT, 0, 0, 0, NULL},
- {"fps", &mf_fps, CONF_TYPE_INT, 0, 0, 0, NULL},
+ {"fps", &mf_fps, CONF_TYPE_FLOAT, 0, 0, 0, NULL},
{"type", &mf_type, CONF_TYPE_STRING, 0, 0, 0, NULL},
{NULL, NULL, 0, 0, 0, 0, NULL}
};