From 44ef6b6af259769d3949e3bedeeb0f623b64566a Mon Sep 17 00:00:00 2001 From: Guillaume Beraudo Date: Wed, 8 Dec 2010 13:26:44 +0100 Subject: [PATCH] Fix Speex wideband not disabled by preference. --- src/org/linphone/LinphoneService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/org/linphone/LinphoneService.java b/src/org/linphone/LinphoneService.java index 86c0096b6..5f8387fd0 100644 --- a/src/org/linphone/LinphoneService.java +++ b/src/org/linphone/LinphoneService.java @@ -300,7 +300,7 @@ public class LinphoneService extends Service implements LinphoneCoreListener { try { //codec config enableDisableAudioCodec("speex", 32000, R.string.pref_codec_speex32_key); - enableDisableAudioCodec("speex", 16000, R.string.pref_codec_speex8_key); + enableDisableAudioCodec("speex", 16000, R.string.pref_codec_speex16_key); enableDisableAudioCodec("speex", 8000, R.string.pref_codec_speex8_key); enableDisableAudioCodec("iLBC", 8000, R.string.pref_codec_ilbc_key); enableDisableAudioCodec("GSM", 8000, R.string.pref_codec_gsm_key);