diff options
-rw-r--r-- | player/command.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/player/command.c b/player/command.c index 6f1a769a20..e9f71ebf41 100644 --- a/player/command.c +++ b/player/command.c @@ -106,9 +106,9 @@ static void mark_seek(struct MPContext *mpctx) static char *format_bitrate(int rate) { if (rate < 1024 * 1024) - return talloc_asprintf(NULL, "%.3f kbps", rate * 8.0 / 1000.0); + return talloc_asprintf(NULL, "%.3f kbps", rate / 1000.0); - return talloc_asprintf(NULL, "%.3f mbps", rate * 8.0 / 1000000.0); + return talloc_asprintf(NULL, "%.3f mbps", rate / 1000000.0); } static char *format_file_size(int64_t size) |