]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/commitdiff
Doxygenate init_put_bits().
authorstefano <stefano@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Fri, 10 Apr 2009 17:30:42 +0000 (17:30 +0000)
committerstefano <stefano@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Fri, 10 Apr 2009 17:30:42 +0000 (17:30 +0000)
git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18423 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b

libavcodec/bitstream.h

index 263fe9aa5a869db79decb916ed038cf5d9b0d835..e586637e9d265bd306281da976355598a90d3061 100644 (file)
@@ -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) {