Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-09-12 18:58:04 +0300
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-09-14 22:49:00 +0300
commit859b31de5064535128f2ecd510c8e2d8b3be0214 (patch)
tree5e29a01bd34de68853ee4e1fb08b57a78eea3ce3 /libavfilter
parente10774a8cc539e166d4e5849fef4d9f86efbfa8d (diff)
avfilter/video: Fix newline in trace output
Forgotten in 7e350379f87e7f74420b4813170fe808e2313911. Reviewed-by: Nicolas George <george@nsup.org> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/video.c2
1 files changed, 1 insertions, 1 deletions
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);