Commit 63580f48 authored by stefano's avatar stefano

Fix skip_put_bits() buf_ptr increment.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18499 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent c132c382
...@@ -297,7 +297,7 @@ static inline void skip_put_bits(PutBitContext *s, int n){ ...@@ -297,7 +297,7 @@ static inline void skip_put_bits(PutBitContext *s, int n){
s->index += n; s->index += n;
#else #else
s->bit_left -= n; s->bit_left -= n;
s->buf_ptr-= s->bit_left>>5; s->buf_ptr-= 4*(s->bit_left>>5);
s->bit_left &= 31; s->bit_left &= 31;
#endif #endif
} }
......
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