diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-04-11 14:49:46 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-04-11 14:49:46 +0000 |
commit | 980f54513e7a3e783714d79aa0d84a659074df86 (patch) | |
tree | 0864ea6122103dc2bcf9b1539a756e2bcdb4eb92 | |
parent | 093364da3037cf1e3f43ea6f9383ae48cba85704 (diff) | |
download | ffmpeg-980f54513e7a3e783714d79aa0d84a659074df86.tar.gz |
Add documentation for skip_put_bytes().
Originally committed as revision 18441 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/bitstream.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/bitstream.h b/libavcodec/bitstream.h index 27ababf621..66a5498d77 100644 --- a/libavcodec/bitstream.h +++ b/libavcodec/bitstream.h @@ -335,7 +335,7 @@ static inline uint8_t* pbBufPtr(PutBitContext *s) } /** - * + * Skips the given number of bytes. * PutBitContext must be flushed & aligned to a byte boundary before calling this. */ static inline void skip_put_bytes(PutBitContext *s, int n){ |