3rd try :)
Originally committed as revision 6095 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
1491e21cdb
commit
3dddf21fcc
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue