[Ffmpeg-devel] ALT_BITSTREAM_WRITER

Marc Hoffman mmh
Thu Apr 26 19:02:44 CEST 2007


Does anyone have any ideas as to why this comment FIXME is here?

/**
 *
 * PutBitContext must be flushed & aligned to a byte boundary before calling this.
 */
static inline void skip_put_bytes(PutBitContext *s, int n){
        assert((put_bits_count(s)&7)==0);
#ifdef ALT_BITSTREAM_WRITER
	FIXME may need some cleaning of the buffer
        s->index += n<<3;
#else
        assert(s->bit_left==32);
        s->buf_ptr += n;
#endif
}




More information about the ffmpeg-devel mailing list