Commit 3dddf21f authored by Michael Niedermayer's avatar Michael Niedermayer

3rd try :)

Originally committed as revision 6095 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 1491e21c
......@@ -580,7 +580,7 @@ static inline int get_bits_count(GetBitContext *s){
static inline void skip_bits_long(GetBitContext *s, int n){
OPEN_READER(re, s)
re_bit_count += n;
re_buffer_ptr += s->bit_count>>5;
re_buffer_ptr += re_bit_count>>5;
re_bit_count &= 31;
re_cache0 = be2me_32( re_buffer_ptr[-1] ) << re_bit_count;
re_cache1 = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment