summaryrefslogtreecommitdiff
path: root/libavcodec/bitstream.h
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2009-04-11 14:47:35 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2009-04-11 14:47:35 +0000
commit093364da3037cf1e3f43ea6f9383ae48cba85704 (patch)
tree8dd4ae8166cfebb1116e51be08f51b3e259b988b /libavcodec/bitstream.h
parent86755e82f7f0063f070ca67085cb76b78bc807fa (diff)
Doxygenate ff_copy_bits().
Originally committed as revision 18440 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/bitstream.h')
-rw-r--r--libavcodec/bitstream.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/libavcodec/bitstream.h b/libavcodec/bitstream.h
index 8b9a2b979e..27ababf621 100644
--- a/libavcodec/bitstream.h
+++ b/libavcodec/bitstream.h
@@ -160,6 +160,12 @@ static inline void flush_put_bits(PutBitContext *s)
*/
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 */