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().
This commit is contained in:
Kacper Michajłow 2026-05-02 02:04:20 +02:00
parent 4a2b643646
commit be207a0d66

View file

@ -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)