From ac04d9b7b1d7e44c4f55f4db61fe70819b3a99ec Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Mon, 18 Nov 2024 15:09:43 +0100 Subject: [PATCH] libav: avviddec: log the old resolution when updating the pool Part-of: --- subprojects/gst-libav/ext/libav/gstavviddec.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/subprojects/gst-libav/ext/libav/gstavviddec.c b/subprojects/gst-libav/ext/libav/gstavviddec.c index aa008bc57b..8c2fa458f8 100644 --- a/subprojects/gst-libav/ext/libav/gstavviddec.c +++ b/subprojects/gst-libav/ext/libav/gstavviddec.c @@ -902,8 +902,9 @@ gst_ffmpegviddec_ensure_internal_pool (GstFFMpegVidDec * ffmpegdec, ffmpegdec->pool_format == picture->format) return; - GST_DEBUG_OBJECT (ffmpegdec, "Updating internal pool (%i, %i)", - picture->width, picture->height); + GST_DEBUG_OBJECT (ffmpegdec, "Updating internal pool (%i, %i) -> (%i, %i)", + ffmpegdec->pool_width, ffmpegdec->pool_height, picture->width, + picture->height); /* if we are negotiating from get_buffer, then renegotiate later in order * to potentially use a downstream pool */