Commit 21ac1d47 authored by Michael Niedermayer's avatar Michael Niedermayer

10l use of uninitalized var

Originally committed as revision 7863 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent d474299a
......@@ -179,7 +179,7 @@ static int encode_block(WMADecodeContext *s, float (*src_coefs)[BLOCK_MAX_SIZE],
}
for(ch = 0; ch < s->nb_channels; ch++) {
if (s->channel_coded[ch]) {
if (s->channel_coded[ch]= 1) { //FIXME
init_exp(s, ch, fixed_exp);
}
}
......@@ -213,7 +213,7 @@ static int encode_block(WMADecodeContext *s, float (*src_coefs)[BLOCK_MAX_SIZE],
v = 0;
for(ch = 0; ch < s->nb_channels; ch++) {
int a = s->channel_coded[ch]=1; //FIXME
int a = s->channel_coded[ch];
put_bits(&s->pb, 1, a);
v |= 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