mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
libav: avviddec: log the old resolution when updating the pool
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7913>
This commit is contained in:
parent
7d49740269
commit
ac04d9b7b1
1 changed files with 3 additions and 2 deletions
|
@ -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 */
|
||||
|
|
Loading…
Reference in a new issue