From 356e427d5cf4079fb9208ab205a9b9d3f89abf2a Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Mon, 11 May 2026 16:54:27 +0200 Subject: [PATCH] avformat/id3v2: Use proper logcontext Otherwise one could not associate log messages with inputs. Reviewed-by: Romain Beauxis Signed-off-by: Andreas Rheinhardt --- libavformat/id3v2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/id3v2.c b/libavformat/id3v2.c index 66036fbdfc..590eca11bf 100644 --- a/libavformat/id3v2.c +++ b/libavformat/id3v2.c @@ -1067,7 +1067,7 @@ static void id3v2_parse(AVIOContext *pb, AVDictionary **metadata, buf[i] = '.'; buf[n + 1] = '|'; buf[n + 2] = '\0'; - av_log(NULL, AV_LOG_INFO, "ID3v2 frame %.4s (%d bytes):%s\n", + av_log(s, AV_LOG_INFO, "ID3v2 frame %.4s (%d bytes):%s\n", tag, tlen, buf); } av_free(buf);