---
 libavcodec/bytestream.h |   14 +++++++++-----
 1 files changed, 9 insertions(+), 5 deletions(-)

diff --git a/libavcodec/bytestream.h b/libavcodec/bytestream.h
index 07a5428..5719c99 100644
--- a/libavcodec/bytestream.h
+++ b/libavcodec/bytestream.h
@@ -41,7 +41,7 @@ static av_always_inline type bytestream_get_ ## name(const 
uint8_t **b){\
     (*b) += bytes;\
     return read(*b - bytes);\
 }\
-static av_always_inline void bytestream_put_ ##name(uint8_t **b, const type 
value){\
+static av_always_inline void bytestream_put_ ## name(uint8_t **b, const type 
value){\
     write(*b, value);\
     (*b) += bytes;\
 }\
@@ -127,9 +127,9 @@ DEF  (byte, 1, AV_RB8 , AV_WB8 )
 static av_always_inline void bytestream2_init(GetByteContext *g,
                                               const uint8_t *buf, int buf_size)
 {
-    g->buffer =  buf;
+    g->buffer       =  buf;
     g->buffer_start = buf;
-    g->buffer_end = buf + buf_size;
+    g->buffer_end   = buf + buf_size;
 }
 
 static av_always_inline void bytestream2_init_writer(PutByteContext *p,
@@ -276,14 +276,18 @@ static av_always_inline unsigned int 
bytestream2_get_eof(PutByteContext *p)
     return p->eof;
 }
 
-static av_always_inline unsigned int bytestream_get_buffer(const uint8_t **b, 
uint8_t *dst, unsigned int size)
+static av_always_inline unsigned int bytestream_get_buffer(const uint8_t **b,
+                                                           uint8_t *dst,
+                                                           unsigned int size)
 {
     memcpy(dst, *b, size);
     (*b) += size;
     return size;
 }
 
-static av_always_inline void bytestream_put_buffer(uint8_t **b, const uint8_t 
*src, unsigned int size)
+static av_always_inline void bytestream_put_buffer(uint8_t **b,
+                                                   const uint8_t *src,
+                                                   unsigned int size)
 {
     memcpy(*b, src, size);
     (*b) += size;
-- 
1.7.1

_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to