diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-04-10 22:29:56 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-04-10 22:29:56 +0000 |
commit | facf521daac38b434adb7a1115cf654b0ae7e7e3 (patch) | |
tree | fff9b32d9d0ceca7f98c8045a8bdf624615b5a52 | |
parent | fc660a01435314536101ade688ef21eb346d1a32 (diff) | |
download | ffmpeg-facf521daac38b434adb7a1115cf654b0ae7e7e3.tar.gz |
Document align_put_bits().
Originally committed as revision 18427 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/bitstream.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/bitstream.h b/libavcodec/bitstream.h index 1a422d2b0b..f3d78fdfff 100644 --- a/libavcodec/bitstream.h +++ b/libavcodec/bitstream.h @@ -155,6 +155,9 @@ static inline void flush_put_bits(PutBitContext *s) #endif } +/** + * Pads the bitstream with zeros up to the next byte boundary. + */ void align_put_bits(PutBitContext *s); void ff_put_string(PutBitContext * pbc, const char *s, int put_zero); void ff_copy_bits(PutBitContext *pb, const uint8_t *src, int length); |