mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2026-06-07 07:50:30 +00:00
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:
parent
4a2b643646
commit
be207a0d66
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue