This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
Fix skip_put_bits() buf_ptr increment.
Originally committed as revision 18499 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Stefano Sabatini
16 years ago
parent
0aed5e9fb8
commit
ad25b95470
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/put_bits.h
+ 1
- 1
libavcodec/put_bits.h
View File
@@ -297,7 +297,7 @@ static inline void skip_put_bits(PutBitContext *s, int n){
s->index += n;
#else
s->bit_left -= n;
s->buf_ptr-= s->bit_left>>5;
s->buf_ptr-=
4*(
s->bit_left>>5
)
;
s->bit_left &= 31;
#endif
}
Write
Preview
Loading…
Cancel
Save