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

Git pushed a commit to branch master
in repository ffmpeg.

commit be207a0d66c3fdd4e294aa6dc6db13e8cf699a26
Author:     Kacper Michajłow <[email protected]>
AuthorDate: Sat May 2 02:04:20 2026 +0200
Commit:     Kacper Michajłow <[email protected]>
CommitDate: Sun May 3 07:30:46 2026 +0000

    avformat/concat: change concat_data::total_size to int64_t
    
    It's both initialized as int64_t in concat_open() and returned as
    int64_t in concat_seek().
---
 libavformat/concat.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/concat.c b/libavformat/concat.c
index d8162b8778..92efc61185 100644
--- a/libavformat/concat.c
+++ b/libavformat/concat.c
@@ -45,7 +45,7 @@ struct concat_data {
     struct concat_nodes *nodes;    ///< list of nodes to concat
     size_t               length;   ///< number of cat'ed nodes
     size_t               current;  ///< index of currently read node
-    uint64_t total_size;
+    int64_t total_size;
 };
 
 static av_cold int concat_close(URLContext *h)

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

Reply via email to