[SCM] libav/experimental: Original Commit: r34 | ods15 | 2006-09-22 18:46:57 +0300 (Fri, 22 Sep 2006) | 2 lines
siretart at users.alioth.debian.org
siretart at users.alioth.debian.org
Sun Jun 30 15:51:25 UTC 2013
The following commit has been merged in the experimental branch:
commit 9da6847deba41732b110241ceeb5fb8ee5c5284a
Author: Oded Shimon <ods15 at ods15.dyndns.org>
Date: Mon Oct 2 05:56:14 2006 +0000
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
diff --git a/libavcodec/vorbis_enc.c b/libavcodec/vorbis_enc.c
index f62ebe9..8f8f2b5 100644
--- a/libavcodec/vorbis_enc.c
+++ b/libavcodec/vorbis_enc.c
@@ -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);
}
}
--
Libav/FFmpeg packaging
More information about the pkg-multimedia-commits
mailing list