comparison bitstream.h @ 9408:e74131a0652d libavcodec

Document the 'size' parameter of set_put_bits_buffer_size().
author stefano
date Sat, 11 Apr 2009 21:04:26 +0000
parents 0129a71aae90
children 4cb7c65fc775
comparison
equal deleted inserted replaced
9407:0129a71aae90 9408:e74131a0652d
370 #endif 370 #endif
371 } 371 }
372 372
373 /** 373 /**
374 * Changes the end of the buffer. 374 * Changes the end of the buffer.
375 *
376 * @param size the new size in bytes of the buffer where to put bits
375 */ 377 */
376 static inline void set_put_bits_buffer_size(PutBitContext *s, int size){ 378 static inline void set_put_bits_buffer_size(PutBitContext *s, int size){
377 s->buf_end= s->buf + size; 379 s->buf_end= s->buf + size;
378 } 380 }
379 381