[FFmpeg-devel] [PATCH] ffmpeg: don't truncate getmaxrss value

Gyan Doshi ffmpeg at gyani.pro
Sun Jul 14 11:44:51 EEST 2024



On 2024-07-11 02:52 pm, Gyan Doshi wrote:
> Can lead to printing of nonsensical negative memory usage

Plan to push in 24h.

Regards,
Gyan

> ---
>   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-devel mailing list