mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-28 20:53:54 +02:00
ffmpeg: don't truncate getmaxrss value
Can lead to printing of nonsensical negative memory usage
This commit is contained in:
parent
246600974f
commit
350146a1ea
@ -309,8 +309,8 @@ const AVIOInterruptCB int_cb = { decode_interrupt_cb, NULL };
|
|||||||
static void ffmpeg_cleanup(int ret)
|
static void ffmpeg_cleanup(int ret)
|
||||||
{
|
{
|
||||||
if (do_benchmark) {
|
if (do_benchmark) {
|
||||||
int maxrss = getmaxrss() / 1024;
|
int64_t maxrss = getmaxrss() / 1024;
|
||||||
av_log(NULL, AV_LOG_INFO, "bench: maxrss=%iKiB\n", maxrss);
|
av_log(NULL, AV_LOG_INFO, "bench: maxrss=%"PRId64"KiB\n", maxrss);
|
||||||
}
|
}
|
||||||
|
|
||||||
for (int i = 0; i < nb_filtergraphs; i++)
|
for (int i = 0; i < nb_filtergraphs; i++)
|
||||||
|
Loading…
Reference in New Issue
Block a user