comparison bitstream.h @ 5127:4dbe6578f811 libavcodec

misc spelling fixes
author diego
date Tue, 12 Jun 2007 09:29:25 +0000
parents 0d503c12092b
children 4394344397d8
comparison
equal deleted inserted replaced
5126:7982b376b58a 5127:4dbe6578f811
333 s->buf_ptr += n; 333 s->buf_ptr += n;
334 #endif 334 #endif
335 } 335 }
336 336
337 /** 337 /**
338 * skips the given number of bits. 338 * Skips the given number of bits.
339 * must only be used if the actual values in the bitstream dont matter 339 * Must only be used if the actual values in the bitstream do not matter.
340 */ 340 */
341 static inline void skip_put_bits(PutBitContext *s, int n){ 341 static inline void skip_put_bits(PutBitContext *s, int n){
342 #ifdef ALT_BITSTREAM_WRITER 342 #ifdef ALT_BITSTREAM_WRITER
343 s->index += n; 343 s->index += n;
344 #else 344 #else