diff options
author | James Almer <jamrial@gmail.com> | 2017-04-13 19:49:20 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-04-13 19:49:20 -0300 |
commit | 34d7f337c1608c72be8c36355018dc894f0560ce (patch) | |
tree | d9546d39b216ab49903f3208d316837451411a9c /libavformat/avio.h | |
parent | c5fd47fa8a300fc51489a47da94041609545803c (diff) | |
parent | 3f75e5116b900f1428aa13041fc7d6301bf1988a (diff) | |
download | ffmpeg-34d7f337c1608c72be8c36355018dc894f0560ce.tar.gz |
Merge commit '3f75e5116b900f1428aa13041fc7d6301bf1988a'
* commit '3f75e5116b900f1428aa13041fc7d6301bf1988a':
avio: Keep track of the amount of data written
Merged-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavformat/avio.h')
-rw-r--r-- | libavformat/avio.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/avio.h b/libavformat/avio.h index 6f4ed8440d..525eb7129e 100644 --- a/libavformat/avio.h +++ b/libavformat/avio.h @@ -327,6 +327,8 @@ typedef struct AVIOContext { * This is current internal only, do not use from outside. */ int (*short_seek_get)(void *opaque); + + int64_t written; } AVIOContext; /** |