From 92dd21a14d78bd4726abea29feb238733f4b26b7 Mon Sep 17 00:00:00 2001 From: reimar Date: Tue, 29 Jan 2008 16:22:34 +0000 Subject: More places that should use SEEK_ABSOLUTE / SEEK_FACTOR git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25912 b3059339-0415-0410-9bf9-f77b7e298cf2 --- command.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'command.c') diff --git a/command.c b/command.c index a030c280d4..c8facfbf8e 100644 --- a/command.c +++ b/command.c @@ -344,7 +344,7 @@ static int mp_property_percent_pos(m_option_t * prop, int action, demuxer_get_percent_pos(mpctx->demuxer)); } - abs_seek_pos = 3; + abs_seek_pos = SEEK_ABSOLUTE | SEEK_FACTOR; rel_seek_secs = pos / 100.0; return M_PROPERTY_OK; } @@ -359,7 +359,7 @@ static int mp_property_time_pos(m_option_t * prop, int action, case M_PROPERTY_SET: if(!arg) return M_PROPERTY_ERROR; M_PROPERTY_CLAMP(prop, *(double*)arg); - abs_seek_pos = 1; + abs_seek_pos = SEEK_ABSOLUTE; rel_seek_secs = *(double*)arg; return M_PROPERTY_OK; case M_PROPERTY_STEP_UP: @@ -429,7 +429,7 @@ static int mp_property_chapter(m_option_t *prop, int action, void *arg, &next_pts, &chapter_num, &chapter_name); if (chapter >= 0) { if (next_pts > -1.0) { - abs_seek_pos = 1; + abs_seek_pos = SEEK_ABSOLUTE; rel_seek_secs = next_pts; } if (chapter_name) @@ -2310,13 +2310,13 @@ int run_command(MPContext * mpctx, mp_cmd_t * cmd) v = cmd->args[0].v.f; abs = (cmd->nargs > 1) ? cmd->args[1].v.i : 0; if (abs == 2) { /* Absolute seek to a specific timestamp in seconds */ - abs_seek_pos = 1; + abs_seek_pos = SEEK_ABSOLUTE; if (sh_video) mpctx->osd_function = (v > sh_video->pts) ? OSD_FFW : OSD_REW; rel_seek_secs = v; } else if (abs) { /* Absolute seek by percentage */ - abs_seek_pos = 3; + abs_seek_pos = SEEK_ABSOLUTE | SEEK_FACTOR; if (sh_video) mpctx->osd_function = OSD_FFW; // Direction isn't set correctly rel_seek_secs = v / 100.0; -- cgit v1.2.3