summaryrefslogtreecommitdiffstats
path: root/player/playloop.c
diff options
context:
space:
mode:
Diffstat (limited to 'player/playloop.c')
-rw-r--r--player/playloop.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/player/playloop.c b/player/playloop.c
index 597d1094a2..25ab5ae0f9 100644
--- a/player/playloop.c
+++ b/player/playloop.c
@@ -422,10 +422,11 @@ double get_current_pos_ratio(struct MPContext *mpctx, bool use_range)
return ans;
}
+// 0-100, -1 if unknown
int get_percent_pos(struct MPContext *mpctx)
{
- int pos = get_current_pos_ratio(mpctx, false) * 100;
- return MPCLAMP(pos, 0, 100);
+ double pos = get_current_pos_ratio(mpctx, false);
+ return pos < 0 ? -1 : pos * 100;
}
// -2 is no chapters, -1 is before first chapter