mirror of
https://github.com/mpv-player/mpv
synced 2024-11-03 03:19:24 +01:00
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 <wm4@nowhere>
This commit is contained in:
parent
d838bd6420
commit
af25e0aba8
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user