summaryrefslogtreecommitdiffstats
path: root/player/command.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-12-20 17:31:58 +0100
committerAlessandro Ghedini <alessandro@ghedini.me>2015-01-14 16:18:17 +0100
commit3a6572d206f211f4cbd6651f72fdf0ac7919ad13 (patch)
tree4be2313e219a075ba4954bfef373c353f47d0ec7 /player/command.c
parent8ab8fa8960a2ea8642c006cfd10057b93835600b (diff)
downloadmpv-3a6572d206f211f4cbd6651f72fdf0ac7919ad13.tar.bz2
mpv-3a6572d206f211f4cbd6651f72fdf0ac7919ad13.tar.xz
player: don't show "0%" percentage in infinite streams
Diffstat (limited to 'player/command.c')
-rw-r--r--player/command.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/player/command.c b/player/command.c
index cec28491d4..63d524ada6 100644
--- a/player/command.c
+++ b/player/command.c
@@ -568,10 +568,14 @@ static int mp_property_percent_pos(void *ctx, struct m_property *prop,
.max = 100,
};
return M_PROPERTY_OK;
- case M_PROPERTY_PRINT:
- *(char **)arg = talloc_asprintf(NULL, "%d", get_percent_pos(mpctx));
+ case M_PROPERTY_PRINT: {
+ int pos = get_percent_pos(mpctx);
+ if (pos < 0)
+ return M_PROPERTY_UNAVAILABLE;
+ *(char **)arg = talloc_asprintf(NULL, "%d", pos);
return M_PROPERTY_OK;
}
+ }
return M_PROPERTY_NOT_IMPLEMENTED;
}