diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-11-28 10:17:43 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-11-28 10:17:43 +0000 |
commit | e74223610b66cd83814810207d91026829ade5ae (patch) | |
tree | 299035d623481cd960a8b7b8dba9b0b36100961f | |
parent | 106c72faad9cb9880d8013ee1da502e34e5ab8ba (diff) | |
download | ffmpeg-e74223610b66cd83814810207d91026829ade5ae.tar.gz |
Fix typo, "Write" -> "Writes".
Originally committed as revision 20637 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/put_bits.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/put_bits.h b/libavcodec/put_bits.h index b081c26842..7efdef4ddd 100644 --- a/libavcodec/put_bits.h +++ b/libavcodec/put_bits.h @@ -137,7 +137,7 @@ void ff_put_string(PutBitContext * pbc, const char *s, int terminate_string); void ff_copy_bits(PutBitContext *pb, const uint8_t *src, int length); /** - * Write up to 31 bits into a bitstream. + * Writes up to 31 bits into a bitstream. * Use put_bits32 to write 32 bits. */ static inline void put_bits(PutBitContext *s, int n, unsigned int value) |