Commit 8b33748c authored by Oded Shimon's avatar Oded Shimon

Original Commit: r86 | ods15 | 2006-09-29 21:08:42 +0300 (Fri, 29 Sep 2006) | 2 lines

make put_vector ignore unused codebook entries

Originally committed as revision 6491 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 5e93d002
...@@ -915,6 +915,7 @@ static float * put_vector(codebook_t * book, PutBitContext * pb, float * num) { ...@@ -915,6 +915,7 @@ static float * put_vector(codebook_t * book, PutBitContext * pb, float * num) {
for (i = 0; i < book->nentries; i++) { for (i = 0; i < book->nentries; i++) {
float d = 0.; float d = 0.;
int j; int j;
if (!book->entries[i].len) continue;
for (j = 0; j < book->ndimentions; j++) { for (j = 0; j < book->ndimentions; j++) {
float a = (book->dimentions[i * book->ndimentions + j] - num[j]); float a = (book->dimentions[i * book->ndimentions + j] - num[j]);
d += a*a; d += a*a;
......
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