[FFmpeg-cvslog] ffmpeg: don't truncate getmaxrss value
Gyan Doshi
git at videolan.org
Mon Jul 15 12:46:52 EEST 2024
ffmpeg | branch: master | Gyan Doshi <ffmpeg at gyani.pro> | Thu Jul 11 15:02:16 2024 +0530| [350146a1ea9d2d0220cc8d024125b77240e3e98d] | committer: Gyan Doshi
ffmpeg: don't truncate getmaxrss value
Can lead to printing of nonsensical negative memory usage
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=350146a1ea9d2d0220cc8d024125b77240e3e98d
---
fftools/ffmpeg.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/fftools/ffmpeg.c b/fftools/ffmpeg.c
index 00ab1cce51..3aa2e12780 100644
--- a/fftools/ffmpeg.c
+++ b/fftools/ffmpeg.c
@@ -309,8 +309,8 @@ const AVIOInterruptCB int_cb = { decode_interrupt_cb, NULL };
static void ffmpeg_cleanup(int ret)
{
if (do_benchmark) {
- int maxrss = getmaxrss() / 1024;
- av_log(NULL, AV_LOG_INFO, "bench: maxrss=%iKiB\n", maxrss);
+ int64_t maxrss = getmaxrss() / 1024;
+ av_log(NULL, AV_LOG_INFO, "bench: maxrss=%"PRId64"KiB\n", maxrss);
}
for (int i = 0; i < nb_filtergraphs; i++)
More information about the ffmpeg-cvslog
mailing list