This is an automated email from the git hooks/post-receive script.

Git pushed a commit to branch master
in repository ffmpeg.

commit 422ad600cdea04a7b539ea8dc5b37cb1b82029b5
Author:     Andreas Rheinhardt <[email protected]>
AuthorDate: Sat Feb 21 15:59:13 2026 +0100
Commit:     Andreas Rheinhardt <[email protected]>
CommitDate: Tue Mar 10 13:52:18 2026 +0100

    avformat/oggparseopus: Fix shadowing
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>
---
 libavformat/oggparseopus.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/oggparseopus.c b/libavformat/oggparseopus.c
index ae4ff22c53..43840c003e 100644
--- a/libavformat/oggparseopus.c
+++ b/libavformat/oggparseopus.c
@@ -181,7 +181,7 @@ static int opus_packet(AVFormatContext *avf, int idx)
         for (; seg < os->nsegs; seg++) {
             next_pkt += os->segments[seg];
             if (os->segments[seg] < 255 && next_pkt != last_pkt) {
-                int d = opus_duration(last_pkt, next_pkt - last_pkt);
+                d = opus_duration(last_pkt, next_pkt - last_pkt);
                 if (d > 0)
                     duration += d;
                 last_pkt = next_pkt;

_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to