From af25e0aba8afa8e176b355a5795e11b13f0b9349 Mon Sep 17 00:00:00 2001 From: Marcoen Hirschberg Date: Mon, 2 Jun 2014 14:19:56 +0200 Subject: command: format_bitrate: fix conversion to kbits and mbits Bitrates are now expressed in bits/second. This commit fixes conversions which assumed it was still in bytes/second. Signed-off-by: wm4 --- player/command.c | 4 ++-- 1 file 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) -- cgit v1.2.3