diff --git a/src/modules/audio_coding/codecs/ilbc/decode.c b/src/modules/audio_coding/codecs/ilbc/decode.c index 827532c568..c1686913df 100644 --- a/src/modules/audio_coding/codecs/ilbc/decode.c +++ b/src/modules/audio_coding/codecs/ilbc/decode.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. + * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source @@ -59,7 +59,7 @@ void WebRtcIlbcfix_DecodeImpl( /* Reuse some buffers that are non overlapping in order to save stack memory */ data = &PLCresidual[LPC_FILTERORDER]; - if (mode>0) { /* the data are good */ + if (mode) { /* the data are good */ /* decode data */ @@ -86,7 +86,7 @@ void WebRtcIlbcfix_DecodeImpl( if (last_bit==1) mode = 0; - if (mode==1) { /* No bit errors was detected, continue decoding */ + if (mode) { /* No bit errors was detected, continue decoding */ /* Stack based */ WebRtc_Word16 lsfdeq[LPC_FILTERORDER*LPC_N_MAX]; WebRtc_Word16 weightdenum[(LPC_FILTERORDER + 1)*NSUB_MAX];