diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-04-10 17:30:42 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-04-10 17:30:42 +0000 |
commit | f7a2aab7d88315d000994c84a99d25ec1fe53095 (patch) | |
tree | 590582d26bf2aecfeb2f5dfea2bac9b887f67ca2 | |
parent | 64bde1974be4ab53f5ec468ef8f8c4cf18c27c52 (diff) | |
download | ffmpeg-f7a2aab7d88315d000994c84a99d25ec1fe53095.tar.gz |
Doxygenate init_put_bits().
Originally committed as revision 18423 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/bitstream.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavcodec/bitstream.h b/libavcodec/bitstream.h index 263fe9aa5a..e586637e9d 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) { |