Commit c6ae7f64 authored by Michael Niedermayer's avatar Michael Niedermayer

avio.h: fix indention

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 9fce2b88
...@@ -120,32 +120,32 @@ typedef struct AVIOContext { ...@@ -120,32 +120,32 @@ typedef struct AVIOContext {
* max filesize, used to limit allocations * max filesize, used to limit allocations
* This field is internal to libavformat and access from outside is not allowed. * This field is internal to libavformat and access from outside is not allowed.
*/ */
int64_t maxsize; int64_t maxsize;
/** /**
* avio_read and avio_write should if possible be satisfied directly * avio_read and avio_write should if possible be satisfied directly
* instead of going through a buffer, and avio_seek will always * instead of going through a buffer, and avio_seek will always
* call the underlying seek function directly. * call the underlying seek function directly.
*/ */
int direct; int direct;
/** /**
* Bytes read statistic * Bytes read statistic
* This field is internal to libavformat and access from outside is not allowed. * This field is internal to libavformat and access from outside is not allowed.
*/ */
int64_t bytes_read; int64_t bytes_read;
/** /**
* seek statistic * seek statistic
* This field is internal to libavformat and access from outside is not allowed. * This field is internal to libavformat and access from outside is not allowed.
*/ */
int seek_count; int seek_count;
/** /**
* writeout statistic * writeout statistic
* This field is internal to libavformat and access from outside is not allowed. * This field is internal to libavformat and access from outside is not allowed.
*/ */
int writeout_count; int writeout_count;
} AVIOContext; } AVIOContext;
/* unbuffered I/O */ /* unbuffered I/O */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment