This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 8f9239a86938677d09ae5cbb9883d981675c0ddb Author: Andreas Rheinhardt <[email protected]> AuthorDate: Sat Feb 21 15:24:48 2026 +0100 Commit: Andreas Rheinhardt <[email protected]> CommitDate: Tue Mar 10 13:52:18 2026 +0100 avformat/mpc8: Fix shadowing Signed-off-by: Andreas Rheinhardt <[email protected]> --- libavformat/mpc8.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/mpc8.c b/libavformat/mpc8.c index 6b6db1b283..1540524c1f 100644 --- a/libavformat/mpc8.c +++ b/libavformat/mpc8.c @@ -297,7 +297,7 @@ static int mpc8_read_header(AVFormatContext *s) avio_skip(pb, size); if (pb->seekable & AVIO_SEEKABLE_NORMAL) { - int64_t pos = avio_tell(s->pb); + pos = avio_tell(s->pb); c->apetag_start = ff_ape_parse_tag(s); avio_seek(s->pb, pos, SEEK_SET); } _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
