summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-04-08 14:08:58 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-04-08 14:15:10 +0200
commitc6ae7f64a09e3bb7f73dbb8971c59fbd9f56fce3 (patch)
tree11fdf3a4e2a64b7ff8ce49f43617cbca4ed541b2
parent9fce2b8854c96eee131a0bf1a1b13b05146438a4 (diff)
avio.h: fix indention
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--libavformat/avio.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/libavformat/avio.h b/libavformat/avio.h
index 1d692a167b..5bdbc62836 100644
--- a/libavformat/avio.h
+++ b/libavformat/avio.h
@@ -120,32 +120,32 @@ typedef struct AVIOContext {
* max filesize, used to limit allocations
* 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
- * instead of going through a buffer, and avio_seek will always
- * call the underlying seek function directly.
- */
- int direct;
+ /**
+ * avio_read and avio_write should if possible be satisfied directly
+ * instead of going through a buffer, and avio_seek will always
+ * call the underlying seek function directly.
+ */
+ int direct;
/**
* Bytes read statistic
* This field is internal to libavformat and access from outside is not allowed.
*/
- int64_t bytes_read;
+ int64_t bytes_read;
/**
* seek statistic
* This field is internal to libavformat and access from outside is not allowed.
*/
- int seek_count;
+ int seek_count;
/**
* writeout statistic
* This field is internal to libavformat and access from outside is not allowed.
*/
- int writeout_count;
+ int writeout_count;
} AVIOContext;
/* unbuffered I/O */