Commit 6ea2fd58 authored by michael's avatar michael

2nd try for a skip_bits_long() for the A32 reader


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@6094 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 5de2cbc8
......@@ -582,14 +582,9 @@ static inline void skip_bits_long(GetBitContext *s, int n){
re_bit_count += n;
re_buffer_ptr += s->bit_count>>5;
re_bit_count &= 31;
if(re_bit_count<=0){
re_bit_count += 32;
re_buffer_ptr--;
}
re_cache0=
re_cache1= 0;
re_cache0 = be2me_32( re_buffer_ptr[-1] ) << re_bit_count;
re_cache1 = 0;
UPDATE_CACHE(re, s)
re_cache1= 0;
CLOSE_READER(re, s)
}
......
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