comparison bitstream.h @ 9390:79651ce180f2 libavcodec

Doxygenate put_bits_count() documentation.
author stefano
date Fri, 10 Apr 2009 22:14:45 +0000
parents 0d7c2dee6b4d
children e9c4b9d95da2
comparison
equal deleted inserted replaced
9389:0d7c2dee6b4d 9390:79651ce180f2
114 s->bit_left=32; 114 s->bit_left=32;
115 s->bit_buf=0; 115 s->bit_buf=0;
116 #endif 116 #endif
117 } 117 }
118 118
119 /* return the number of bits output */ 119 /**
120 * Returns the number of bits output.
121 */
120 static inline int put_bits_count(PutBitContext *s) 122 static inline int put_bits_count(PutBitContext *s)
121 { 123 {
122 #ifdef ALT_BITSTREAM_WRITER 124 #ifdef ALT_BITSTREAM_WRITER
123 return s->index; 125 return s->index;
124 #else 126 #else