aboutsummaryrefslogtreecommitdiffstats
path: root/fftools/ffmpeg_mux.c
diff options
context:
space:
mode:
author王昊然 <msl0000023508@gmail.com>2024-01-29 15:54:27 +0800
committerStefano Sabatini <stefasab@gmail.com>2024-02-03 12:50:42 +0100
commit344ec7a3f753de30c23149471e2c9eaf17f42187 (patch)
tree0a775b295fc30aa950cdcd9a408fd54206cc2425 /fftools/ffmpeg_mux.c
parent9d364fbdb05b9599b765db33cc8dc638e783d844 (diff)
downloadffmpeg-344ec7a3f753de30c23149471e2c9eaf17f42187.tar.gz
fftools/ffmpeg: use correct unit prefix symbol for binary scaled byte values
Fix bug #10501 Signed-off-by: WHR <msl0000023508@gmail.com>
Diffstat (limited to 'fftools/ffmpeg_mux.c')
-rw-r--r--fftools/ffmpeg_mux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fftools/ffmpeg_mux.c b/fftools/ffmpeg_mux.c
index ab86abee14..ee708267c1 100644
--- a/fftools/ffmpeg_mux.c
+++ b/fftools/ffmpeg_mux.c
@@ -725,8 +725,8 @@ static void mux_final_stats(Muxer *mux)
}
av_log(of, AV_LOG_INFO,
- "video:%1.0fkB audio:%1.0fkB subtitle:%1.0fkB other streams:%1.0fkB "
- "global headers:%1.0fkB muxing overhead: %s\n",
+ "video:%1.0fKiB audio:%1.0fKiB subtitle:%1.0fKiB other streams:%1.0fKiB "
+ "global headers:%1.0fKiB muxing overhead: %s\n",
video_size / 1024.0,
audio_size / 1024.0,
subtitle_size / 1024.0,