Commit 9f629db3 authored by michael's avatar michael

3rd try :)


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@6095 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 6ea2fd58
......@@ -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