Browse Source

memset when category is >=7, part of cook multichannel

Originally committed as revision 17987 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Benjamin Larsson 17 years ago
parent
commit
7c119ced99
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/cook.c

+ 1
- 1
libavcodec/cook.c View File

@@ -617,7 +617,7 @@ static void decode_vectors(COOKContext* q, int* category,
for(j=0 ; j<q->total_subbands ; j++) category[band+j]=7;
}
}
if(index==7) {
if(index>=7) {
memset(subband_coef_index, 0, sizeof(subband_coef_index));
memset(subband_coef_sign, 0, sizeof(subband_coef_sign));
}


Loading…
Cancel
Save