diff mbox series

[FFmpeg-devel,3/3] avfilter/video: Fix newline in trace output

Message ID AS8P250MB07446C20935C86A32A541A608F449@AS8P250MB0744.EURP250.PROD.OUTLOOK.COM
State Accepted
Commit 859b31de5064535128f2ecd510c8e2d8b3be0214
Headers show
Series [FFmpeg-devel,v2,1/3] avfilter/avfilter: Don't use AVFrame.channel_layout | expand

Checks

Context Check Description
andriy/make_x86 success Make finished
andriy/make_fate_x86 success Make fate finished

Commit Message

Andreas Rheinhardt Sept. 12, 2022, 4:07 p.m. UTC
Forgotten in 7e350379f87e7f74420b4813170fe808e2313911.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
---
Does anyone actually use this? The fact that this went unnoticed
for so long suggest "no".

 libavfilter/video.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/libavfilter/video.c b/libavfilter/video.c
index e9eb110ff4..7683ef6fd4 100644
--- a/libavfilter/video.c
+++ b/libavfilter/video.c
@@ -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);