This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 356e427d5cf4079fb9208ab205a9b9d3f89abf2a Author: Andreas Rheinhardt <[email protected]> AuthorDate: Mon May 11 16:54:27 2026 +0200 Commit: Andreas Rheinhardt <[email protected]> CommitDate: Tue May 12 16:12:51 2026 +0200 avformat/id3v2: Use proper logcontext Otherwise one could not associate log messages with inputs. Reviewed-by: Romain Beauxis <[email protected]> Signed-off-by: Andreas Rheinhardt <[email protected]> --- 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); _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
