(m)jpeg pad/flush with 1 instead of 0, fix by Rik Snel <rsnel@cube.dyndns.org>

Originally committed as revision 280 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Arpi 2002-01-26 00:22:25 +00:00
parent 2ddeed44a5
commit 580b82fa24
1 changed files with 1 additions and 0 deletions

View File

@ -157,6 +157,7 @@ void jput_bits(PutBitContext *s, int n, unsigned int value)
void jflush_put_bits(PutBitContext *s)
{
unsigned int b;
s->bit_buf |= ~1U >> s->bit_cnt; /* set all the unused bits to one */
while (s->bit_cnt > 0) {
b = s->bit_buf >> 24;