Index: webrtc/modules/audio_coding/codecs/isac/fix/source/isacfix.c |
diff --git a/webrtc/modules/audio_coding/codecs/isac/fix/source/isacfix.c b/webrtc/modules/audio_coding/codecs/isac/fix/source/isacfix.c |
index 4a663d12cf63481d8db6e45fe7be814094f59510..21911dd058faba78962414702e6e62a09f96ae50 100644 |
--- a/webrtc/modules/audio_coding/codecs/isac/fix/source/isacfix.c |
+++ b/webrtc/modules/audio_coding/codecs/isac/fix/source/isacfix.c |
@@ -568,13 +568,9 @@ int16_t WebRtcIsacfix_GetNewBitStream(ISACFIX_MainStruct *ISAC_main_inst, |
* |
* Input: |
* - ISAC_main_inst : ISAC instance. |
- * |
- * Return value |
- * : 0 - Ok |
- * -1 - Error |
*/ |
-int16_t WebRtcIsacfix_DecoderInit(ISACFIX_MainStruct *ISAC_main_inst) |
+void WebRtcIsacfix_DecoderInit(ISACFIX_MainStruct *ISAC_main_inst) |
{ |
ISACFIX_SubStruct *ISAC_inst; |
@@ -597,8 +593,6 @@ int16_t WebRtcIsacfix_DecoderInit(ISACFIX_MainStruct *ISAC_main_inst) |
#ifdef WEBRTC_ISAC_FIX_NB_CALLS_ENABLED |
WebRtcIsacfix_InitPreFilterbank(&ISAC_inst->ISACdec_obj.decimatorstr_obj); |
#endif |
- |
- return 0; |
} |