Commit 5b7a2188 authored by stefano's avatar stefano

Doxygenate init_put_bits().


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18423 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 539a911d
...@@ -89,6 +89,12 @@ typedef struct PutBitContext { ...@@ -89,6 +89,12 @@ typedef struct PutBitContext {
int size_in_bits; int size_in_bits;
} PutBitContext; } 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) static inline void init_put_bits(PutBitContext *s, uint8_t *buffer, int buffer_size)
{ {
if(buffer_size < 0) { if(buffer_size < 0) {
......
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