From f7a2aab7d88315d000994c84a99d25ec1fe53095 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Fri, 10 Apr 2009 17:30:42 +0000 Subject: [PATCH] Doxygenate init_put_bits(). Originally committed as revision 18423 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/bitstream.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/libavcodec/bitstream.h b/libavcodec/bitstream.h index 263fe9aa5..e586637e9 100644 --- a/libavcodec/bitstream.h +++ b/libavcodec/bitstream.h @@ -89,6 +89,12 @@ typedef struct PutBitContext { int size_in_bits; } PutBitContext; +/** + * Initializes the PutBitContext \p s. + * + * @param buffer the buffer where to put bits + * @param buffer_size the size in bytes of \p buffer + */ static inline void init_put_bits(PutBitContext *s, uint8_t *buffer, int buffer_size) { if(buffer_size < 0) { -- 2.11.0