diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-04-08 13:21:34 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-04-08 13:30:40 +0200 |
commit | ad6a50c0ed39d30f3acbe57c29df8119e1379a3c (patch) | |
tree | 11afd1b4f049bc1d14b28c2a3860d1dc42c21ce5 /libavformat/avio.h | |
parent | 0138fe56563bc7aa59fb69fe81bcf3f5718b17a5 (diff) | |
download | ffmpeg-ad6a50c0ed39d30f3acbe57c29df8119e1379a3c.tar.gz |
avformat: add writeout_count statistic
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/avio.h')
-rw-r--r-- | libavformat/avio.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavformat/avio.h b/libavformat/avio.h index 8de28bf1d1..1d692a167b 100644 --- a/libavformat/avio.h +++ b/libavformat/avio.h @@ -140,6 +140,12 @@ typedef struct AVIOContext { * This field is internal to libavformat and access from outside is not allowed. */ int seek_count; + + /** + * writeout statistic + * This field is internal to libavformat and access from outside is not allowed. + */ + int writeout_count; } AVIOContext; /* unbuffered I/O */ |