comparison bitstream.h @ 9391:e9c4b9d95da2 libavcodec

Doxygenate flush_put_bits() documentation.
author stefano
date Fri, 10 Apr 2009 22:27:29 +0000
parents 79651ce180f2
children a5bc2084bd6a
comparison
equal deleted inserted replaced
9390:79651ce180f2 9391:e9c4b9d95da2
126 #else 126 #else
127 return (s->buf_ptr - s->buf) * 8 + 32 - s->bit_left; 127 return (s->buf_ptr - s->buf) * 8 + 32 - s->bit_left;
128 #endif 128 #endif
129 } 129 }
130 130
131 /* pad the end of the output stream with zeros */ 131 /**
132 * Pads the end of the output stream with zeros.
133 */
132 static inline void flush_put_bits(PutBitContext *s) 134 static inline void flush_put_bits(PutBitContext *s)
133 { 135 {
134 #ifdef ALT_BITSTREAM_WRITER 136 #ifdef ALT_BITSTREAM_WRITER
135 align_put_bits(s); 137 align_put_bits(s);
136 #else 138 #else