From be207a0d66c3fdd4e294aa6dc6db13e8cf699a26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kacper=20Michaj=C5=82ow?= Date: Sat, 2 May 2026 02:04:20 +0200 Subject: [PATCH] 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)