mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
Original Commit: r34 | ods15 | 2006-09-22 18:46:57 +0300 (Fri, 22 Sep 2006) | 2 lines
off by one in codebook header Originally committed as revision 6442 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
be01eec6c7
commit
9da6847deb
@ -376,7 +376,7 @@ static void put_codebook_header(PutBitContext * pb, codebook_t * cb) {
|
||||
|
||||
for (i = 0; i < cb->nentries; i++) {
|
||||
if (sparse) put_bits(pb, 1, !!cb->entries[i].len);
|
||||
if (cb->entries[i].len) put_bits(pb, 5, cb->entries[i].len);
|
||||
if (cb->entries[i].len) put_bits(pb, 5, cb->entries[i].len - 1);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user