This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 968511ad035192ee36164d8b179ca5a0695eadd7 Author: Andreas Rheinhardt <[email protected]> AuthorDate: Sat Feb 21 14:55:06 2026 +0100 Commit: Andreas Rheinhardt <[email protected]> CommitDate: Tue Mar 10 13:52:18 2026 +0100 avformat/dhav: Fix shadowing Signed-off-by: Andreas Rheinhardt <[email protected]> --- libavformat/dhav.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libavformat/dhav.c b/libavformat/dhav.c index 84a203ef6f..449e5bfb0a 100644 --- a/libavformat/dhav.c +++ b/libavformat/dhav.c @@ -484,8 +484,7 @@ static int dhav_read_seek(AVFormatContext *s, int stream_index, return -1; for (int n = 0; n < s->nb_streams; n++) { - AVStream *st = s->streams[n]; - DHAVStream *dst = st->priv_data; + DHAVStream *const dst = s->streams[n]->priv_data; dst->pts = pts; dst->last_time = AV_NOPTS_VALUE; _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
