From ad40b1539438a779282a61767766eb658386e072 Mon Sep 17 00:00:00 2001 From: Benjamin Larsson Date: Fri, 15 Feb 2008 13:44:08 +0000 Subject: silence wmaenc.c:181: warning:suggestparentheses around assignment used as truth value Originally committed as revision 11940 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/wmaenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/wmaenc.c') diff --git a/libavcodec/wmaenc.c b/libavcodec/wmaenc.c index b26abf348c..f2feee2f63 100644 --- a/libavcodec/wmaenc.c +++ b/libavcodec/wmaenc.c @@ -178,7 +178,7 @@ static int encode_block(WMACodecContext *s, float (*src_coefs)[BLOCK_MAX_SIZE], } for(ch = 0; ch < s->nb_channels; ch++) { - if (s->channel_coded[ch]= 1) { //FIXME only set channel_coded when needed, instead of always + if ((s->channel_coded[ch]= 1)) { //FIXME only set channel_coded when needed, instead of always init_exp(s, ch, fixed_exp); } } -- cgit v1.2.3