comparison put_bits.h @ 10584:784409693f16 libavcodec

Fix typo, "Write" -> "Writes".
author stefano
date Sat, 28 Nov 2009 10:17:43 +0000
parents 2b8a327189cd
children 7034c66f7e7d
comparison
equal deleted inserted replaced
10583:96d1d05cfd37 10584:784409693f16
135 * @param length the number of bits of src to copy 135 * @param length the number of bits of src to copy
136 */ 136 */
137 void ff_copy_bits(PutBitContext *pb, const uint8_t *src, int length); 137 void ff_copy_bits(PutBitContext *pb, const uint8_t *src, int length);
138 138
139 /** 139 /**
140 * Write up to 31 bits into a bitstream. 140 * Writes up to 31 bits into a bitstream.
141 * Use put_bits32 to write 32 bits. 141 * Use put_bits32 to write 32 bits.
142 */ 142 */
143 static inline void put_bits(PutBitContext *s, int n, unsigned int value) 143 static inline void put_bits(PutBitContext *s, int n, unsigned int value)
144 #ifndef ALT_BITSTREAM_WRITER 144 #ifndef ALT_BITSTREAM_WRITER
145 { 145 {