diff options
author | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2005-02-17 15:56:25 +0000 |
---|---|---|
committer | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2005-02-17 15:56:25 +0000 |
commit | f47114f9324212ea0c04c55b3d7b9fa6852fdd50 (patch) | |
tree | b8e9978b8772f832fbf47bc5a4bef9945f012352 /input | |
parent | 80ddeccff93c730dd314cd724cfb508eecce4024 (diff) | |
download | mpv-f47114f9324212ea0c04c55b3d7b9fa6852fdd50.tar.bz2 mpv-f47114f9324212ea0c04c55b3d7b9fa6852fdd50.tar.xz |
Make seek command parameter float.
Patch by Oded Shimon [ods15 at ods15 dot dyndns dot org].
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14719 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'input')
-rw-r--r-- | input/input.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/input/input.c b/input/input.c index 0731e679c1..97e6583b9b 100644 --- a/input/input.c +++ b/input/input.c @@ -46,7 +46,7 @@ /// is the default value wich is used for optional arguments static mp_cmd_t mp_cmds[] = { - { MP_CMD_SEEK, "seek", 1, { {MP_CMD_ARG_INT,{0}}, {MP_CMD_ARG_INT,{0}}, {-1,{0}} } }, + { MP_CMD_SEEK, "seek", 1, { {MP_CMD_ARG_FLOAT,{0}}, {MP_CMD_ARG_INT,{0}}, {-1,{0}} } }, #ifdef USE_EDL { MP_CMD_EDL_MARK, "edl_mark", 0, { {-1,{0}} } }, #endif |