The branch, master has been updated
       via  93ccca22bb8b22b0eadc7346a61e395b21dd42b8 (commit)
      from  618fc15e65f57c9ce25d4562f4b516129815608c (commit)


- Log -----------------------------------------------------------------
commit 93ccca22bb8b22b0eadc7346a61e395b21dd42b8
Author:     Anthony Bajoua <[email protected]>
AuthorDate: Mon Nov 17 22:45:53 2025 -0800
Commit:     James Almer <[email protected]>
CommitDate: Thu Nov 27 14:05:33 2025 +0000

    libavformat/mov: Fixes individual track duration on fragmented files

diff --git a/libavformat/mov.c b/libavformat/mov.c
index db8f8208a6..009ddfec80 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -6228,7 +6228,8 @@ static int mov_read_sidx(MOVContext *c, AVIOContext *pb, 
MOVAtom atom)
             }
         }
 
-        c->frag_index.complete = 1;
+        if (offadd == 0)
+            c->frag_index.complete = 1;
     }
 
     return 0;

-----------------------------------------------------------------------

Summary of changes:
 libavformat/mov.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)


hooks/post-receive
-- 

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

Reply via email to