avfilter/video: Fix newline in trace output

Forgotten in 7e350379f8.

Reviewed-by: Nicolas George <george@nsup.org>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt 2022-09-12 17:58:04 +02:00
parent e10774a8cc
commit 859b31de50

View File

@ -102,7 +102,7 @@ AVFrame *ff_get_video_buffer(AVFilterLink *link, int w, int h)
{
AVFrame *ret = NULL;
FF_TPRINTF_START(NULL, get_video_buffer); ff_tlog_link(NULL, link, 0);
FF_TPRINTF_START(NULL, get_video_buffer); ff_tlog_link(NULL, link, 1);
if (link->dstpad->get_buffer.video)
ret = link->dstpad->get_buffer.video(link, w, h);