# HG changeset patch # User stefano # Date 1239461255 0 # Node ID 12fe11381b21de96d96210cc8831404492a9156a # Parent 9a1c34f662e41a35a27c2026b8936bcff9e00d36 Doxygenate ff_copy_bits(). diff -r 9a1c34f662e4 -r 12fe11381b21 bitstream.h --- a/bitstream.h Sat Apr 11 14:19:09 2009 +0000 +++ b/bitstream.h Sat Apr 11 14:47:35 2009 +0000 @@ -160,6 +160,12 @@ */ void align_put_bits(PutBitContext *s); void ff_put_string(PutBitContext * pbc, const char *s, int put_zero); + +/** + * Copies the content of \p src to the bitstream. + * + * @param length the number of bits of \p src to copy + */ void ff_copy_bits(PutBitContext *pb, const uint8_t *src, int length); /* bit input */