00001 /* 00002 * iaxclient: a cross-platform IAX softphone library 00003 * 00004 * Copyrights: 00005 * Copyright (C) 2003-2006, Horizon Wimba, Inc. 00006 * Copyright (C) 2007, Wimba, Inc. 00007 * 00008 * Contributors: 00009 * Steve Kann <stevek@stevek.com> 00010 * 00011 * This program is free software, distributed under the terms of 00012 * the GNU Lesser (Library) General Public License. 00013 */ 00014 00015 #include "speex/speex.h" 00016 00017 struct iaxc_speex_settings { 00018 int decode_enhance; 00019 float quality; 00020 int bitrate; 00021 int vbr; 00022 int abr; /* abr bitrate */ 00023 int complexity; 00024 }; 00025 00026 struct iaxc_audio_codec *codec_audio_speex_new(struct iaxc_speex_settings *settings);