You can subscribe to this list here.
2003 |
Jan
|
Feb
(3) |
Mar
(16) |
Apr
(11) |
May
(3) |
Jun
(109) |
Jul
(70) |
Aug
(22) |
Sep
(19) |
Oct
(4) |
Nov
(25) |
Dec
(46) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(68) |
Feb
(52) |
Mar
(54) |
Apr
(57) |
May
(13) |
Jun
(15) |
Jul
(16) |
Aug
(3) |
Sep
(43) |
Oct
(95) |
Nov
(106) |
Dec
(142) |
2005 |
Jan
(62) |
Feb
(190) |
Mar
(75) |
Apr
(117) |
May
(123) |
Jun
(64) |
Jul
(122) |
Aug
(95) |
Sep
(63) |
Oct
(102) |
Nov
(99) |
Dec
(85) |
2006 |
Jan
(59) |
Feb
(64) |
Mar
(138) |
Apr
(82) |
May
(62) |
Jun
(62) |
Jul
(72) |
Aug
(50) |
Sep
(21) |
Oct
(95) |
Nov
(95) |
Dec
(29) |
2007 |
Jan
(26) |
Feb
(36) |
Mar
(45) |
Apr
(12) |
May
(53) |
Jun
(38) |
Jul
(19) |
Aug
(87) |
Sep
(63) |
Oct
(272) |
Nov
(102) |
Dec
(63) |
2008 |
Jan
(54) |
Feb
(19) |
Mar
(84) |
Apr
(111) |
May
(17) |
Jun
(26) |
Jul
(18) |
Aug
(10) |
Sep
(14) |
Oct
(9) |
Nov
(4) |
Dec
(12) |
2009 |
Jan
(5) |
Feb
(7) |
Mar
(4) |
Apr
(8) |
May
(4) |
Jun
(7) |
Jul
|
Aug
(1) |
Sep
(2) |
Oct
|
Nov
|
Dec
|
2010 |
Jan
|
Feb
(6) |
Mar
(6) |
Apr
(1) |
May
(1) |
Jun
(2) |
Jul
(3) |
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
(1) |
Dec
|
2012 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(3) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2018 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
From: Steve K. <st...@st...> - 2003-11-03 22:54:04
|
First, two things I forgot in my previous update message: 1) I've changed the default build, at least for those using Makefiles, to use IAX2 instead of IAX1. 2) I added some support for handling IAX "text" frames. They will get passed along to the client as: ev.type=IAXC_EVENT_TEXT; ev.ev.text.type=IAXC_TEXT_TYPE_IAX; ev.ev.text.callNo = callNo; Second, two new things: 1) Fixed a bug in digium's libiax2 which caused authentication-requiring calls with IAX2 to fail. (Michael found the bug, and tested my fix, which worked for him). 2) Implemented a simple activity/connectivity timeout mechanism for calls. If we don't hear from the other end of an active call in 10 seconds, we will send it a PING. If we don't hear from them in 30 seconds, we dump the call and tell the client it timed out. (the PONG, of course, counts as "hearing from", and caused the call not to get dumped). Normally, when there are voice frames being sent to the client, it won't ever send PINGs. I'm no longer developing and/or testing with IAX1, so some of these things may break the IAX1 build. It should be easy enough to fix if someone out there is relying on IAX1 working. -SteveK |
From: Steve K. <st...@st...> - 2003-10-31 21:02:38
|
Hey listers. You all probably thought I was dead, eh? Well, I figure Halloween was a good day to come back from the dead. Besides, this is the "eeeks"-client project, and today should have lots of "eeeks", right? I've been doing some iaxclient work lately, and figured I'd share what I've done with everyone, and also see if anyone is interested in helping with a couple of things. First, what I've already done: 1) Worked on another library-using client, which I'm not releasing yet, and probably won't be too interesting to anyone :) 2) Added sound-playing support to the library. The API is in iaxclient.h: struct iaxc_sound { short *data; /* sound data */ long len; /* length of sample */ int malloced; /* should the library free() the data after it is played? */ int repeat; /* number of times to repeat (-1 = infinite) */ long pos; /* internal use: current play position */ int id; /* internal use: sound ID */ struct iaxc_sound *next; /* internal use: next in list */ }; /* play a sound. sound = an iaxc_sound structure, ring: 0: play through output device; 1: play through "ring" device */ int iaxc_play_sound(struct iaxc_sound *sound, int ring); int iaxc_stop_sound(int id); The basic idea is that a library-user can do iax_play_sound, and pass a sound structure in, and the library will play that sound. It can cancel the playback of that particular sound by calling iaxc_stop_sound, with the id that was returned by play_sound. Currently, this is only implemented in the portaudio driver backend, and currently the "ring" parameter is ignored; it always plays back through the standard output device. You can convert a sox-compatible sound file into a C array at compile time with a program like sound2c.pl, also in the library sources. Or, you can make a ringback sound with some code like this: ringback.len = 6*8000; ringback.data = (short *)calloc(ringback.len , sizeof(short)); for( int i=0;i < 2*8000; i++ ) { ringback.data[i] = (short) (0x7fff * 0.3 * sin( (double) i * 440 * M_PI / 8000)); ringback.data[i] += (short) (0x7fff * 0.3 * sin( (double) i * 480 * M_PI / 8000 )); } ringback.repeat = 1; You can play multiple sounds together, and together with the output audio for a call. These are all mixed in the library before being sent to the sound drivers. 3) Added input/output volume level adjustments. Currently there are a bunch of caveats: Linux: Always adjusts /dev/mixer, which may or may not be the same as /dev/dsp, and may not be what you've chosen to use. Adjusts PCM output level, and capture level. MacOSX: Only works when sound is active (i.e. playing sound or in a call). Only some input devices have an adjustment available. Win32: Only works when sound is active. Only output level adjustment is currently implemented. The API for doing this is also in iaxclient.h 4) Added a hacky "file" audio driver, primarily for testing. the "testcall" client supports using this. ===================== Where people can help: 1) They can certainly feel free to implement these features in their own clients (iaxcomm, etc). Volume control is definately something that people might want there, and the code do use it is pretty simple. 2) The sound mechanism can be extended to: a) support the "ring" parameter, to play back through a possibly different ring device. 3) The library can be extended to use the sound mechanism to support: a) ringing on incoming calls. b) ringback on outgoing calls. c) dial/error or other tones people might want to hear? 4) If one of the windows-dudes can see how to implement input level control, that would be much appreciated. It seems to be about 10x harder to do than output-level control, which is just waveOutGetVolume/ waveOutSetVolume. Look in lib/portaudio/pa_win_wmme/pa_win_wmme.c for where the code would go. [Also, I think that this is somewhat implemented in portaudio v19, so we may be able to leverage that]. 5) Another feature I need to add to the library [and this might actually end up needing to go into libiax2, instead of libiaxclient] is to have the client send PING frames to the far end of calls, and then expect PONG frames back. If a PONG doesn't come back after repeated PING retransmissions, the client should get some kind of notification. Currently, if the other end of a call disappears, iaxclient never knows about this. -SteveK |
From: Kent T. <th...@in...> - 2003-10-15 03:17:38
|
Do u have any idea how the phone can detect such as state of on = connecting,line busy,phone connected and so on. Ur answer are very appreciated. Thankq |
From: Masakazu N. <n-...@md...> - 2003-10-04 11:16:45
|
plese check results... starting iaxcomm and double click task icon. maybe iaxcomm will be exit that process. any ideas? mack_jpn |
From: Masakazu N. <n-...@md...> - 2003-10-04 10:24:44
|
Could you please tell me how can I use with 'callto' tag with iaxcomm? any ideas? mack_jpn |
From: Babar S. <bab...@ya...> - 2003-09-27 07:22:57
|
Hi, ".xrc" files are needed in "rc" folder before running Iaxcomm --- iax...@li... wrote: > Send Iaxclient-devel mailing list submissions to > iax...@li... > > To subscribe or unsubscribe via the World Wide Web, visit > https://lists.sourceforge.net/lists/listinfo/iaxclient-devel > or, via email, send a message with subject or body 'help' to > iax...@li... > > You can reach the person managing the list at > iax...@li... > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Iaxclient-devel digest..." > > > Today's Topics: > > 1. Iaxcomm (Kent Tham) > 2. Re: Iaxcomm (Steve Kann) > > --__--__-- > > Message: 1 > From: "Kent Tham" <th...@in...> > To: <iax...@li...> > Date: Fri, 26 Sep 2003 17:33:46 +0800 > Subject: [Iaxclient-devel] Iaxcomm > > This is a multi-part message in MIME format. > > ------=_NextPart_000_0005_01C38454.56C02C60 > Content-Type: text/plain; > charset="iso-8859-1" > Content-Transfer-Encoding: quoted-printable > > I successfully compile the program but when i try to run it pop up a = > error message box saying that > > "The instruction at 0x77f8f1d1 referenced memory at 0x1020d880.The = > memory could not be written" > > > Please help me put to solve this problem > > ------=_NextPart_000_0005_01C38454.56C02C60 > Content-Type: text/html; > charset="iso-8859-1" > Content-Transfer-Encoding: quoted-printable > > <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> > <HTML><HEAD> > <META content=3D"text/html; charset=3Diso-8859-1" = > http-equiv=3DContent-Type> > <META content=3D"MSHTML 5.00.3806.1700" name=3DGENERATOR> > <STYLE></STYLE> > </HEAD> > <BODY bgColor=3D#ffffff> > <DIV><FONT face=3DArial size=3D2>I successfully compile the program but = > when i try=20 > to run it pop up a error message box saying that</FONT></DIV> > <DIV><FONT face=3DArial size=3D2></FONT> </DIV> > <DIV><FONT face=3DArial size=3D2> "The instruction at 0x77f8f1d1 = > referenced=20 > memory at 0x1020d880.The memory could not be written"</FONT></DIV> > <DIV> </DIV> > <DIV> </DIV> > <DIV><FONT face=3DArial size=3D2>Please help me put to solve this=20 > problem</FONT></DIV></BODY></HTML> > > ------=_NextPart_000_0005_01C38454.56C02C60-- > > > > --__--__-- > > Message: 2 > Date: Fri, 26 Sep 2003 09:29:33 -0400 > From: Steve Kann <st...@st...> > To: Kent Tham <th...@in...> > CC: iax...@li... > Subject: Re: [Iaxclient-devel] Iaxcomm > > This is a multi-part message in MIME format. > --------------080609060409030601040507 > Content-Type: text/plain; charset=us-ascii; format=flowed > Content-Transfer-Encoding: 7bit > > > Anyone else see this problem? > > > > Kent Tham wrote: > > > I successfully compile the program but when i try to run it pop up a > > error message box saying that > > > > "The instruction at 0x77f8f1d1 referenced memory at 0x1020d880.The > > memory could not be written" > > > > > > Please help me put to solve this problem > > > --------------080609060409030601040507 > Content-Type: text/html; charset=us-ascii > Content-Transfer-Encoding: 7bit > > <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> > <html> > <head> > <meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1"> > <title></title> > </head> > <body> > <br> > Anyone else see this problem?<br> > <br> > <br> > <br> > Kent Tham wrote:<br> > <blockquote type="cite" cite="mid000801c38411$49737640$6a00a8c0@inovas"><DEFANGED_META > http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> > <DEFANGED_META name="GENERATOR" content="MSHTML 5.00.3806.1700"><!-- <DEFANGED_STYLE> --> > </DEFANGED_META></DEFANGED_META> > <div><font size="2" face="Arial">I successfully compile the program > but when i try to run it pop up a error message box saying that</font></div> > <div> </div> > <div><font size="2" face="Arial"> "The instruction at 0x77f8f1d1 > referenced memory at 0x1020d880.The memory could not be written"</font></div> > <div> </div> > <div> </div> > <div><font size="2" face="Arial">Please help me put to solve this > problem</font></div> > </blockquote> > </body> > </html> > > --------------080609060409030601040507-- > > > > > --__--__-- > > _______________________________________________ > Iaxclient-devel mailing list > Iax...@li... > https://lists.sourceforge.net/lists/listinfo/iaxclient-devel > > > End of Iaxclient-devel Digest ===== God is a great Programmer __________________________________ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com |
From: Steve K. <st...@st...> - 2003-09-26 19:22:35
|
Anyone else see this problem? Kent Tham wrote: > I successfully compile the program but when i try to run it pop up a > error message box saying that > > "The instruction at 0x77f8f1d1 referenced memory at 0x1020d880.The > memory could not be written" > > > Please help me put to solve this problem |
From: Kent T. <th...@in...> - 2003-09-26 09:23:36
|
I successfully compile the program but when i try to run it pop up a = error message box saying that "The instruction at 0x77f8f1d1 referenced memory at 0x1020d880.The = memory could not be written" Please help me put to solve this problem |
From: Steve K. <st...@st...> - 2003-09-22 17:40:45
|
You're correct. Ringing is not yet implemented. -SteveK Biagio Passaro wrote: > --> > > I'am just installed the very nice iaxcomm client, but I'am not able > set the ring options, it does not ring ! > > It seams not implemented. is anyone can help me on this? > > > > Many thanks > > > > Biagio > > > |
From: Biagio P. <bpa...@es...> - 2003-09-22 10:56:06
|
I'am just installed the very nice iaxcomm client, but I'am not able set the ring options, it does not ring ! It seams not implemented. is anyone can help me on this? Many thanks Biagio |
From: Steve K. <st...@st...> - 2003-09-16 14:17:27
|
Michael Van Donselaar wrote: >The iaxPhone application in the current CVS has speed dials saved via wxWindows' >config class: Win32 stores in the registry, linux saves in a text file (rc >exttension?) > >Since I discovered that there is already another project named iaxphone, I have >changed the name of my iaxPhone to iaxComm. I've submitted it to Steve, but it >prolly won't hit the CVS right away as there appear to be some problems under >linux. > > The sources have been committed to CVS, and should already be in the repository and snapshot tarballs. Also, I've posted the binaries for Win32 that Michael sent me last night to the iaxclient.sf.net website. -SteveK |
From: Michael V. D. <mv...@va...> - 2003-09-16 01:34:31
|
On Mon, 15 Sep 2003 14:42:23 -0700, TC <tc...@e-...> wrote: >So >I see the latest wx client has a hard coded server / ext list... >Is there any general agreement on what the mechanism to persist >the contact list will be.... >1) go the win.ini/asterisk section / detail format >2) go the xml route ... >were there any thoughts or src's on this b4 I implement something to >persist the settings & the phone book ?? The iaxPhone application in the current CVS has speed dials saved via = wxWindows' config class: Win32 stores in the registry, linux saves in a text file = (rc exttension?) Since I discovered that there is already another project named iaxphone, = I have changed the name of my iaxPhone to iaxComm. I've submitted it to Steve, = but it prolly won't hit the CVS right away as there appear to be some problems = under linux. |
From: Steve K. <st...@st...> - 2003-09-15 22:11:03
|
Michael has a wx-derived client, iaxcomm, which implements a phone book. I haven't been able to build it yet, but I'll commit it as-is, so people can try it under windows (my Win32 build environment is broken at the moment). There are instructions in the README about build requirements. Maybe Michael can send me or the list a Win32 binary, and I'll put that on the website. -SteveK TC wrote: >So > >I see the latest wx client has a hard coded server / ext list... > >Is there any general agreement on what the mechanism to persist >the contact list will be.... >1) go the win.ini/asterisk section / detail format >2) go the xml route ... > >were there any thoughts or src's on this b4 I implement something to >persist the settings & the phone book ?? > > > > > > > >------------------------------------------------------- >This sf.net email is sponsored by:ThinkGeek >Welcome to geek heaven. >http://thinkgeek.com/sf >_______________________________________________ >Iaxclient-devel mailing list >Iax...@li... >https://lists.sourceforge.net/lists/listinfo/iaxclient-devel > > > |
From: TC <tc...@e-...> - 2003-09-15 21:40:07
|
So I see the latest wx client has a hard coded server / ext list... Is there any general agreement on what the mechanism to persist the contact list will be.... 1) go the win.ini/asterisk section / detail format 2) go the xml route ... were there any thoughts or src's on this b4 I implement something to persist the settings & the phone book ?? |
From: Babar S. <bab...@ya...> - 2003-09-10 06:33:39
|
Hi TC, First of all you have wx.cc file with the distribution of code, you need to rename it to wx.cpp (I think u did that) and also it seems you mixed up debug and release version of libaray and wx here. just make sure both must of same build i.e Release or Debug. wxmswd.lib(imaglist.obj) : error LNK2001: unresolved external symbol :: means you are doing debug version so make sure you did the debug version of library too. also those libs must be in linking path for the final executable. for Debug version in Code Generation you have to use > Debug Multithreaded DLL (for both lib and wx) and in Release version you will use > Multithreaded DLL (for both lib and wx) Here is step by step procedure how to build wx on MSVC 6. First we make libraries and DLLs for wxWindows 1) Download wxWindows from http://wxwindows.org for VC we will have latest release: http://prdownloads.sourceforge.net/wxwindows/wxMSW-2.4.1-setup.zip (approx 12MB) 2) After running the setup it will install and create a directory for us such as wxWindows-2.4.1 if we install on D: Drive to we will have D:\wxWindows-2.4.1\ 3) Now we have to compile wxWindows for VC we have wxWindows.dsw in d:\wxWindows-2.4.1\src directory. 4) Setup include directories from VC->Tools->Options->Include directories (This is Global settings for all wxWindows projects) add D:\wxWindows-2.4.1\CONTRIB\INCLUDE and D:\wxWindows-2.4.1\INCLUDE Setup Lib directories from VC->Tools->Options->Lib directories add D:\wxWindows-2.4.1\CONTRIB\LIB and D:\wxWindows-2.4.1\LIB 5) Now from Build->Batch Build use Build to build all libraries and DLLs for us.(on my P3 667 MHz 256 MB Ram it tooks more then an hour :) ). 6) After the build process we will have all the libraires and DLLs in the lib folder it mean we are done. http://www.geocities.com/babarnazmi/wxVC.zip ( unzip project files in wx folder) or for wx we need to set up a new project 1) Create a new empty project Win32 Application. 2) I just renamed the wx.cc file from the iaxclient distribution to wx.cpp and then added iaxclient.h in this new project. 3) For Win32 Release. update Project->Settings->C/C++->General(Category) update the Preprocessor Defination to NDEBUG,WIN32,_WINDOWS,WINVER=0x400,_MT,wxUSE_GUI=1 select Category Code Generation to "Multithreaded DLL" For Win32 Debug update Project->Settings->C/C++->General(Category) update the Preprocessor Defination to _DEBUG,WIN32,_WINDOWS,WINVER=0x400,_MT,wxUSE_GUI=1,__WXDEBUG__,WXDEBUG=1 select Category Code Generation to "Debug Multithreaded DLL" 4) Now in Link Tab for Win32 Release add zlib.lib regex.lib png.lib jpeg.lib tiff.lib wxmsw.lib (for wxWidnows support) winmm.lib ws2_32.lib (for iaxcleint support) libiaxclient.lib (Win32 iaxlib must be Release version) (other then default libs) for Win32 Debug add zlibd.lib regexd.lib pngd.lib jpegd.lib tiffd.lib wxmswd.lib ( fow wxWindows support) winmm.lib ws2_32.lib (for iaxcleint support) libiaxclient.lib (Win32 iaxlib must be Debug version) (other then default libs) update the #include "iaxclient.h" to #include "..\..\..\lib\iaxclient.h" (or copy iaxclient.h to the souce directory) Build the new project and we are done. --- iax...@li... wrote: > Send Iaxclient-devel mailing list submissions to > iax...@li... > > To subscribe or unsubscribe via the World Wide Web, visit > https://lists.sourceforge.net/lists/listinfo/iaxclient-devel > or, via email, send a message with subject or body 'help' to > iax...@li... > > You can reach the person managing the list at > iax...@li... > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Iaxclient-devel digest..." > > > Today's Topics: > > 1. MS VC6, compile missing (TC) > 2. wx IAXCLient build with ms vc6 on NT4.0 (TC) > 3. Re: wx IAXCLient build with ms vc6 on NT4.0 (TC) > > Date: Mon, 08 Sep 2003 23:04:35 -0700 > From: TC <tr...@sh...> > To: iax...@li... > Reply-to: TC <tr...@sh...> > Subject: [Iaxclient-devel] wx IAXCLient build with ms vc6 on NT4.0 > > Hi ALL > Trying to compile from current iaxclient cvs wx using ms vc6, on NT4.0. > Followed the readme got the wx libs built using the supplied vc6 dsp file. > Then knocked the supplied wxVC.dsw/dsp around a bit to get lib paths & links > set up > > Any pointers to what i missed here ?? > > Building a release target I get > I:\projects\asterisk\iaxclient\simpleclient\wx\wx.cpp(285) : error C2220: > warning treated as error - no object file generated > > > Building a debug target I get > LINK : warning LNK4098: defaultlib "LIBCMTD" conflicts with use of other > libs; use /NODEFAULTLIB:library > anyone get this ?? > > Also seem to have some wx debug lib nonsense any one been there done that > or recognize these missing refs ?? > > wxmswd.lib(app.obj) : error LNK2001: unresolved external symbol > __imp__InitCommonControls@0 > wxmswd.lib(statbr95.obj) : error LNK2001: unresolved external symbol > __imp__CreateStatusWindowA@16 > wxmswd.lib(spinbutt.obj) : error LNK2001: unresolved external symbol > __imp__CreateUpDownControl@48 > wxmswd.lib(imaglist.obj) : error LNK2001: unresolved external symbol > __imp__ImageList_Create@20 > wxmswd.lib(imaglist.obj) : error LNK2001: unresolved external symbol > __imp__ImageList_Destroy@4 > wxmswd.lib(imaglist.obj) : error LNK2001: unresolved external symbol > __imp__ImageList_GetImageCount@4 > wxmswd.lib(imaglist.obj) : error LNK2001: unresolved external symbol > __imp__ImageList_GetIconSize@12 > wxmswd.lib(imaglist.obj) : error LNK2001: unresolved external symbol > __imp__ImageList_Add@12 > wxmswd.lib(imaglist.obj) : error LNK2001: unresolved external symbol > __imp__ImageList_AddMasked@12 > wxmswd.lib(imaglist.obj) : error LNK2001: unresolved external symbol > __imp__ImageList_ReplaceIcon@12 > wxmswd.lib(imaglist.obj) : error LNK2001: unresolved external symbol > __imp__ImageList_Replace@16 > wxmswd.lib(imaglist.obj) : error LNK2001: unresolved external symbol > __imp__ImageList_Remove@8 > wxmswd.lib(imaglist.obj) : error LNK2001: unresolved external symbol > __imp__ImageList_Draw@24 > wxmswd.lib(imaglist.obj) : error LNK2001: unresolved external symbol > __imp__ImageList_SetBkColor@8 > wxmswd.lib(uuid.obj) : error LNK2001: unresolved external symbol > __imp__UuidToStringA@8 > wxmswd.lib(uuid.obj) : error LNK2001: unresolved external symbol > __imp__RpcStringFreeA@4 > wxmswd.lib(uuid.obj) : error LNK2001: unresolved external symbol > __imp__UuidCreate@4 > wxmswd.lib(uuid.obj) : error LNK2001: unresolved external symbol > __imp__UuidFromStringA@8 > Debug/wxVC.exe : fatal error LNK1120: 18 unresolved externals > > --__--__-- > > _______________________________________________ > Iaxclient-devel mailing list > Iax...@li... > https://lists.sourceforge.net/lists/listinfo/iaxclient-devel > > > End of Iaxclient-devel Digest ===== God is a great Programmer __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com |
From: TC <tr...@sh...> - 2003-09-09 07:44:44
|
>Hi ALL >Trying to compile from current iaxclient cvs wx using ms vc6, on NT4.0. >Followed the readme got the wx libs built using the supplied vc6 dsp file. >Then knocked the supplied wxVC.dsw/dsp around a bit to get lib paths & links >set up > >Any pointers to what i missed here ?? > >Building a release target I get >I:\projects\asterisk\iaxclient\simpleclient\wx\wx.cpp(285) : error C2220: >warning treated as error - no object file generated OK I got this up with MS VC6 now, the problem is return type of some functions are not compatible with the declared type of some var, so I just coerace em .. Is this a known issue or just some msvc6 thing ?? I:\projects\asterisk\iaxclient\simpleclient\wx\wx.cpp(285) : warning C4800: 'long' : forcing value to bool 'true' or 'false' (performance warning) I:\projects\asterisk\iaxclient\simpleclient\wx\wx.cpp(286) : warning C4800: 'long' : forcing value to bool 'true' or 'false' (performance warning) I:\projects\asterisk\iaxclient\simpleclient\wx\wx.cpp(287) : warning C4800: 'long' : forcing value to bool 'true' or 'false' (performance warning) I:\projects\asterisk\iaxclient\simpleclient\wx\wx.cpp(498) : warning C4800: 'int' : forcing value to bool 'true' or 'false' (performance warning) |
From: TC <tr...@sh...> - 2003-09-09 06:02:11
|
Hi ALL Trying to compile from current iaxclient cvs wx using ms vc6, on NT4.0. Followed the readme got the wx libs built using the supplied vc6 dsp file. Then knocked the supplied wxVC.dsw/dsp around a bit to get lib paths & links set up Any pointers to what i missed here ?? Building a release target I get I:\projects\asterisk\iaxclient\simpleclient\wx\wx.cpp(285) : error C2220: warning treated as error - no object file generated Building a debug target I get LINK : warning LNK4098: defaultlib "LIBCMTD" conflicts with use of other libs; use /NODEFAULTLIB:library anyone get this ?? Also seem to have some wx debug lib nonsense any one been there done that or recognize these missing refs ?? wxmswd.lib(app.obj) : error LNK2001: unresolved external symbol __imp__InitCommonControls@0 wxmswd.lib(statbr95.obj) : error LNK2001: unresolved external symbol __imp__CreateStatusWindowA@16 wxmswd.lib(spinbutt.obj) : error LNK2001: unresolved external symbol __imp__CreateUpDownControl@48 wxmswd.lib(imaglist.obj) : error LNK2001: unresolved external symbol __imp__ImageList_Create@20 wxmswd.lib(imaglist.obj) : error LNK2001: unresolved external symbol __imp__ImageList_Destroy@4 wxmswd.lib(imaglist.obj) : error LNK2001: unresolved external symbol __imp__ImageList_GetImageCount@4 wxmswd.lib(imaglist.obj) : error LNK2001: unresolved external symbol __imp__ImageList_GetIconSize@12 wxmswd.lib(imaglist.obj) : error LNK2001: unresolved external symbol __imp__ImageList_Add@12 wxmswd.lib(imaglist.obj) : error LNK2001: unresolved external symbol __imp__ImageList_AddMasked@12 wxmswd.lib(imaglist.obj) : error LNK2001: unresolved external symbol __imp__ImageList_ReplaceIcon@12 wxmswd.lib(imaglist.obj) : error LNK2001: unresolved external symbol __imp__ImageList_Replace@16 wxmswd.lib(imaglist.obj) : error LNK2001: unresolved external symbol __imp__ImageList_Remove@8 wxmswd.lib(imaglist.obj) : error LNK2001: unresolved external symbol __imp__ImageList_Draw@24 wxmswd.lib(imaglist.obj) : error LNK2001: unresolved external symbol __imp__ImageList_SetBkColor@8 wxmswd.lib(uuid.obj) : error LNK2001: unresolved external symbol __imp__UuidToStringA@8 wxmswd.lib(uuid.obj) : error LNK2001: unresolved external symbol __imp__RpcStringFreeA@4 wxmswd.lib(uuid.obj) : error LNK2001: unresolved external symbol __imp__UuidCreate@4 wxmswd.lib(uuid.obj) : error LNK2001: unresolved external symbol __imp__UuidFromStringA@8 Debug/wxVC.exe : fatal error LNK1120: 18 unresolved externals |
From: TC <tr...@sh...> - 2003-09-09 05:52:46
|
From: John T. <jt...@lo...> - 2003-09-05 03:53:23
|
Repeated calling to this number: guest@63.171.251.199/900 led to crashes after anywhere between 15-120 seconds of audio. The calls were testing out some call queue stuff for someone, and it was playing music on hold in a one-way audio stream. iaxclient on MacOSX. This test stream is not run by me, so I don't know if it's going to stay where it is. I suppose one could experiment with overdriven MOH via GSM. JT |
From: Peter G. <pg...@fi...> - 2003-09-03 13:07:00
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Babar, I took your proof of concept HTML page with the ActiveX control and added a few more things (like line control and a dtmf pad) however the DTMF tones do not work -- Are you still working on this or am I invoking the function incorrectly? <snip> function DTMF8_onclick() { DIaxClientOcx1.SendDTMF("8") } function DTMF9_onclick() { DIaxClientOcx1.SendDTMF("9") } </snip> Let me know, I'd really like to demo this to a few people... Pete - -----Original Message----- From: iax...@li... [mailto:iax...@li...] On Behalf Of Babar Shafiq Sent: Wednesday, September 03, 2003 4:24 AM To: iax...@li... Subject: [Iaxclient-devel] Re: Iaxclient-devel digest, Vol 1 #84 - 1 msg Hi, echo problem is solved cause i didn't use call struct correclty. now fixed. I am updating ActiveX control so before init we need to give:- codec="GSM" or codec="iLBC" and then use init, so it will use given codec in the call. Regards, Babar Shafiq. - --- iax...@li... wrote: > Send Iaxclient-devel mailing list submissions to > iax...@li... > > To subscribe or unsubscribe via the World Wide Web, visit > > https://lists.sourceforge.net/lists/listinfo/iaxclient-dev > el or, via email, send a message with subject or body > 'help' to iax...@li... > > You can reach the person managing the list at > iax...@li... > > When replying, please edit your Subject line so it is > more specific than "Re: Contents of Iaxclient-devel > digest..." > > > Today's Topics: > > 1. Re: Re: Iaxclient-devel digest, Vol 1 #81 - 2 msgs > (Babar Shafiq) > > --__--__-- > > Message: 1 > Date: Tue, 2 Sep 2003 08:32:24 -0700 (PDT) > From: Babar Shafiq <bab...@ya...> > Subject: Re: [Iaxclient-devel] Re: Iaxclient-devel > digest, Vol 1 #81 - 2 msgs > To: Steve Kann <st...@st...> > Cc: iaxclient devel > <iax...@li...> > > Hi, > > Sorry for the late reply i was buzy with some office > work. Yes i think some thing is missing :) you better > know what to add, subtract :) !!! iLBC don't have its > own echo cancellation or some thing like that ?? any > ways i will fix it as soon i got a chance. > > > > --- Steve Kann <st...@st...> wrote: > > > > Well, when I looked at the * code, it looked like it > > wanted 30ms frames > > for iLBC. At least, it looks like it will be sending > > 30ms frames, although it will probably accept 20ms > > frames. > > > > As far as the echo, that's interesting. Are you also > > trying to use the > > echo cancellation code that I had added (you'd need to > > define some things, and also add the proper code for > > it to work, so it's unlikely you did this > > accidentally. Currently, the echo cancellation code is > > not working, and will add echo instead of cancelling > > it. > > > > > > > > > > On Sep 1, 2003, at 9:53 AM, Babar Shafiq wrote: > > > > > Hi Steve, > > > > > > Yes it looks easy to add just the iLBC codec, I added > > > iLBC codec in > > > iaxclient library, I just hard > > > coded the things to use iLBC or GSM when init,without > > > any structure of codecs selection and > > > sending codecs to other end when starting new session > > > but the sound quality is not good as well as > > > having some echo problems too. Right now I use 20ms > > > rate. What do you think what should be the > > > problem ? 20ms is supported on * ? > > > > > > > > > Regards, > > > Babar Shafiq Nazmi. > > > > > > > > > --- iax...@li... > > > wrote: > > >> Send Iaxclient-devel mailing list submissions to > > >> iax...@li... > > >> > > >> To subscribe or unsubscribe via the World Wide Web, > > >> visit > > >> https://lists.sourceforge.net/lists/listinfo/iaxclien > > >> t-devel or, via email, send a message with subject > > >> or body 'help' to > > >> iax...@li... > > >> > > >> You can reach the person managing the list at > > >> iax...@li... > > >> > > >> When replying, please edit your Subject line so it > > >> is more specific than "Re: Contents of > > >> Iaxclient-devel digest..." > > >> > > >> > > >> Today's Topics: > > >> > > >> 1. support of iLBC (Dan Fernandez) > > >> 2. Re: support of iLBC (Steve Kann) > > >> > > >> -- __--__-- > > >> > > >> Message: 1 > > >> From: "Dan Fernandez" <dan...@ho...> > > >> To: "iaxclient devel" > > >> <iax...@li...> Date: Wed, > > >> 27 Aug 2003 19:07:44 -0300 > > >> Subject: [Iaxclient-devel] support of iLBC > > >> > > >> This is a multi-part message in MIME format. > > >> > > >> ------=_NextPart_000_08CC_01C36CCE.7EEDC3C0 > > >> Content-Type: text/plain; > > >> charset="iso-8859-1" > > >> Content-Transfer-Encoding: quoted-printable > > >> > > >> Folks, > > >> > > >> =CDt=B4s been my experience that the quality of IAX > > >> calls is a lot = better with iLBC than GSM. > > >> What=B4s need to be done for the softphone to = > > >> be able to use iLBC? Is this on anyones priority > > >> list? > > >> > > >> Rgds > > >> Dan > > >> > > >> ------=_NextPart_000_08CC_01C36CCE.7EEDC3C0 > > >> Content-Type: text/html; > > >> charset="iso-8859-1" > > >> Content-Transfer-Encoding: quoted-printable > > >> > > >> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 > > >> Transitional//EN"> <HTML><HEAD> <DEFANGED_META > > >> http-equiv=3DContent-Type content=3D"text/html; = > > >> charset=3Diso-8859-1"> <DEFANGED_META > > >> content=3D"MSHTML 6.00.2713.1100" name=3DGENERATOR> > > >> <!-- <DEFANGED_STYLE> --> </DEFANGED_STYLE> > > >> </HEAD> > > >> <BODY bgColor=3D#ffffff> > > >> <DIV><FONT face=3DArial size=3D2>Folks,</FONT></DIV> > > >> <DIV><FONT face=3DArial size=3D2></FONT> </DIV> > > >> <DIV><FONT face=3DArial size=3D2>=CDt=B4s been my > > >> experience that the = > > >> quality of IAX=20 > > >> calls is a lot better with iLBC than GSM. What=B4s > > >> need to be done for = > > >> the=20 > > >> softphone to be able to use iLBC? Is this on > > >> anyones priority=20 list?</FONT></DIV> > > >> <DIV><FONT face=3DArial size=3D2></FONT> </DIV> > > >> <DIV><FONT face=3DArial size=3D2>Rgds</FONT></DIV> > > >> <DIV><FONT face=3DArial > > >> size=3D2>Dan</FONT></DIV></BODY></HTML> > > >> > > >> ------=_NextPart_000_08CC_01C36CCE.7EEDC3C0-- > > >> > > >> > > >> -- __--__-- > > >> > > >> Message: 2 > > >> Cc: "iaxclient devel" > > >> <iax...@li...> From: Steve > > >> Kann <st...@st...> > > >> Subject: Re: [Iaxclient-devel] support of iLBC > > >> Date: Wed, 27 Aug 2003 22:14:21 -0400 > > >> To: "Dan Fernandez" <dan...@ho...> > > >> > > >> > > >> --Apple-Mail-1--22200657 > > >> Content-Transfer-Encoding: quoted-printable > > >> Content-Type: text/plain; > > >> charset=ISO-8859-1; > > >> format=flowed > > >> > > >> > > >> I think cypromis' folks might work on this at some > > >> point. It's not=20 > > >> the highest thing on my list, but it probably comes > > >> after IAX2=20 reliability, better silence > > >> suppression, and possibly echo cancellation=20= > > >> > > >> or at least echo suppression. > > >> > > >> As to what needs to be done: > > >> > > >> 1) develop a modular interface for codecs, similar > > >> to (a) the interface=20= > > >> > > >> I added recently for audio drivers and/or (b) the > > >> modular interface=20 that phonecore uses for > > >> codecs. > > >> > > >> 2) develop some additional support for variable > > >> frame sizes (I think=20 > > >> that * uses 30ms frames for iLBC, as opposed to 20ms > > >> for GSM),=20 negotiating codecs etc (everything is > > >> currently hardcoded for GSM). > > >> > > >> 3) As a test of (1), (2), it might be nice to make a > > >> uLaw/aLaw "codec"=20= > > >> > > >> for testing, and because Darren will probably come > > >> to your house and=20 > > >> "moo" for you, if you like that kind of thing. > > >> > > >> 4) Then, add a subdir for the iLBC library (the same > > >> stuff included > > >> in=20= > > >> > > >> *), add the proper Makefile-foo to compile it to > > >> lib/Makefile, etc. > > >> > > >> 5) write the actual codec_ilbc.c file which uses the > > >> interface in (1),=20= > > >> > > >> and the iLBC library API, and glues them together. > > >> > > >> It doesn't seem really difficult to do. > > >> > > >> List: Yeah, I've kinda disappeared for a while; > > >> There's been a lot > > >> of=20= > > >> > > >> things going on for me personally, and work has been > > >> kinda busy too. > > >> =20 > > >> But, more work on iaxclient should be happening > > >> within the next few=20 months. > > >> > > >> -SteveK > > >> > > >> > > >> On Aug 27, 2003, at 6:07 PM, Dan Fernandez wrote: > > >> > > >>> Folks, > > >>> =A0 > > >>> =D5t=A5s been my experience that the quality of IAX > > >>> calls is a lot = > > >> better=20 > > >>> with iLBC than GSM. What=A5s need to be done for > > >>> the softphone to > > >>> be=20= > > >> > > >>> able to use iLBC?=A0 Is this on anyones priority > > >>> list? =A0 Rgds > > >>> Dan > > >> > > >> --Apple-Mail-1--22200657 > > >> Content-Transfer-Encoding: quoted-printable > > >> Content-Type: text/enriched; > > >> charset=ISO-8859-1 > > >> > > >> > > >> > > >> I think cypromis' folks might work on this at some > > >> point. It's not the highest thing on my list, but > > >> it probably comes after IAX2 reliability, better > > >> silence suppression, and possibly echo cancellation > > >> or at least echo suppression. > > >> > > >> > > >> As to what needs to be done: > > >> > > >> > > >> 1) develop a modular interface for codecs, similar > > >> to (a) the interface I added recently for audio > > >> drivers and/or (b) the modular interface that > > >> phonecore uses for codecs. > > >> > > >> > > >> 2) develop some additional support for variable > > >> frame sizes (I think that * uses 30ms frames for > > >> iLBC, as opposed to 20ms for GSM), negotiating > > >> codecs etc (everything is currently hardcoded for > > >> GSM). > > >> > > >> > > >> 3) As a test of (1), (2), it might be nice to make a > > >> uLaw/aLaw "codec" for testing, and because Darren > > >> will probably come to your house and "moo" for you, > > >> if you like that kind of thing. > > >> > > >> > > >> 4) Then, add a subdir for the iLBC library (the same > > >> stuff included in *), add the proper Makefile-foo > > >> to compile it to lib/Makefile, etc. > > >> > > >> > > >> 5) write the actual codec_ilbc.c file which uses the > > >> interface in (1), and the iLBC library API, and > > >> glues them together. > > >> > > >> > > >> It doesn't seem really difficult to do. > > >> > > >> > > >> List: Yeah, I've kinda disappeared for a while; > > >> There's been a lot of things going on for me > > >> personally, and work has been kinda busy too.=20 > > >> But, more work on iaxclient should be happening > > >> within the next few months. > > >> > > >> > > >> -SteveK > > >> > > >> > > >> > > >> On Aug 27, 2003, at 6:07 PM, Dan Fernandez wrote: > > >> > > >> > > >> = > > >> <excerpt><fontfamily><param>Arial</param><smaller>Fol > > >> ks,</smaller > > >> ></ > > >> fontfa= > > >> mily> > > >> > > >> =A0 > > >> > > >> <fontfamily><param>Arial</param><smaller>=D5t=A5s > > >> been my experience = that the quality of IAX calls > > >> is a lot better with iLBC than GSM. What=A5s need > > >> to be done for the softphone to be able to use > > >> iLBC?=A0 Is this > > >> on > > >> anyones priority list?</smaller></fontfamily> > > >> > > >> =A0 > > >> > > >> <fontfamily><param>Arial</param><smaller>Rgds</smalle > > >> r></fontfami ly> > > >> > > >> <fontfamily><param>Arial</param><smaller>Dan</smaller > > >> ></fontfamil y> > > >> > > >> </excerpt>= > > >> > > >> --Apple-Mail-1--22200657-- > > >> > > >> > > >> > > >> > > >> -- __--__-- > > >> > > >> _______________________________________________ > > >> Iaxclient-devel mailing list > > >> Iax...@li... > > >> https://lists.sourceforge.net/lists/listinfo/iaxclien > > >> t-devel > > >> > > >> > > >> End of Iaxclient-devel Digest > > > > > > > > > ===== > > > God is a great Programmer > > > > > > __________________________________ > > > Do you Yahoo!? > > > Yahoo! SiteBuilder - Free, easy-to-use web site > > > design software http://sitebuilder.yahoo.com > > > > > > > > > ------------------------------------------------------ > > > - This sf.net email is sponsored by:ThinkGeek > > > Welcome to geek heaven. > > > http://thinkgeek.com/sf > > > _______________________________________________ > > > Iaxclient-devel mailing list > > > Iax...@li... > > > https://lists.sourceforge.net/lists/listinfo/iaxclient > > > -devel > > > > > > > > ===== > God is a great Programmer > > __________________________________ > Do you Yahoo!? > Yahoo! SiteBuilder - Free, easy-to-use web site design > software http://sitebuilder.yahoo.com > > > > --__--__-- > > _______________________________________________ > Iaxclient-devel mailing list > Iax...@li... > https://lists.sourceforge.net/lists/listinfo/iaxclient-dev > el > > > End of Iaxclient-devel Digest ===== God is a great Programmer __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com - ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Iaxclient-devel mailing list Iax...@li... https://lists.sourceforge.net/lists/listinfo/iaxclient-devel - --- Incoming mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.510 / Virus Database: 307 - Release Date: 8/14/2003 -----BEGIN PGP SIGNATURE----- Version: PGPfreeware 7.0.3 for non-commercial use <http://www.pgp.com> iQA/AwUBP1XnRdW8rcEEsO4aEQIRLACgms3BFrIyTs9qz7W7ixTjsTZVSKYAoPBc V8pnxVD8qxeX9vfSTm4H9ROW =UZ2+ -----END PGP SIGNATURE----- |
From: Babar S. <bab...@ya...> - 2003-09-03 08:24:00
|
Hi, echo problem is solved cause i didn't use call struct correclty. now fixed. I am updating ActiveX control so before init we need to give:- codec="GSM" or codec="iLBC" and then use init, so it will use given codec in the call. Regards, Babar Shafiq. --- iax...@li... wrote: > Send Iaxclient-devel mailing list submissions to > iax...@li... > > To subscribe or unsubscribe via the World Wide Web, visit > https://lists.sourceforge.net/lists/listinfo/iaxclient-devel > or, via email, send a message with subject or body 'help' to > iax...@li... > > You can reach the person managing the list at > iax...@li... > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Iaxclient-devel digest..." > > > Today's Topics: > > 1. Re: Re: Iaxclient-devel digest, Vol 1 #81 - 2 msgs (Babar Shafiq) > > --__--__-- > > Message: 1 > Date: Tue, 2 Sep 2003 08:32:24 -0700 (PDT) > From: Babar Shafiq <bab...@ya...> > Subject: Re: [Iaxclient-devel] Re: Iaxclient-devel digest, Vol 1 #81 - 2 msgs > To: Steve Kann <st...@st...> > Cc: iaxclient devel <iax...@li...> > > Hi, > > Sorry for the late reply i was buzy with some office work. Yes i think some thing is missing :) > you better know what to add, subtract :) !!! > iLBC don't have its own echo cancellation or some thing like that ?? any ways i will fix it as > soon i got a chance. > > > > --- Steve Kann <st...@st...> wrote: > > > > Well, when I looked at the * code, it looked like it wanted 30ms frames > > for iLBC. At least, it looks like it will be sending 30ms frames, > > although it will probably accept 20ms frames. > > > > As far as the echo, that's interesting. Are you also trying to use the > > echo cancellation code that I had added (you'd need to define some > > things, and also add the proper code for it to work, so it's unlikely > > you did this accidentally. Currently, the echo cancellation code is > > not working, and will add echo instead of cancelling it. > > > > > > > > > > On Sep 1, 2003, at 9:53 AM, Babar Shafiq wrote: > > > > > Hi Steve, > > > > > > Yes it looks easy to add just the iLBC codec, I added iLBC codec in > > > iaxclient library, I just hard > > > coded the things to use iLBC or GSM when init,without any structure of > > > codecs selection and > > > sending codecs to other end when starting new session but the sound > > > quality is not good as well as > > > having some echo problems too. Right now I use 20ms rate. What do you > > > think what should be the > > > problem ? 20ms is supported on * ? > > > > > > > > > Regards, > > > Babar Shafiq Nazmi. > > > > > > > > > --- iax...@li... wrote: > > >> Send Iaxclient-devel mailing list submissions to > > >> iax...@li... > > >> > > >> To subscribe or unsubscribe via the World Wide Web, visit > > >> https://lists.sourceforge.net/lists/listinfo/iaxclient-devel > > >> or, via email, send a message with subject or body 'help' to > > >> iax...@li... > > >> > > >> You can reach the person managing the list at > > >> iax...@li... > > >> > > >> When replying, please edit your Subject line so it is more specific > > >> than "Re: Contents of Iaxclient-devel digest..." > > >> > > >> > > >> Today's Topics: > > >> > > >> 1. support of iLBC (Dan Fernandez) > > >> 2. Re: support of iLBC (Steve Kann) > > >> > > >> -- __--__-- > > >> > > >> Message: 1 > > >> From: "Dan Fernandez" <dan...@ho...> > > >> To: "iaxclient devel" <iax...@li...> > > >> Date: Wed, 27 Aug 2003 19:07:44 -0300 > > >> Subject: [Iaxclient-devel] support of iLBC > > >> > > >> This is a multi-part message in MIME format. > > >> > > >> ------=_NextPart_000_08CC_01C36CCE.7EEDC3C0 > > >> Content-Type: text/plain; > > >> charset="iso-8859-1" > > >> Content-Transfer-Encoding: quoted-printable > > >> > > >> Folks, > > >> > > >> =CDt=B4s been my experience that the quality of IAX calls is a lot = > > >> better with iLBC than GSM. What=B4s need to be done for the softphone > > >> to = > > >> be able to use iLBC? Is this on anyones priority list? > > >> > > >> Rgds > > >> Dan > > >> > > >> ------=_NextPart_000_08CC_01C36CCE.7EEDC3C0 > > >> Content-Type: text/html; > > >> charset="iso-8859-1" > > >> Content-Transfer-Encoding: quoted-printable > > >> > > >> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> > > >> <HTML><HEAD> > > >> <DEFANGED_META http-equiv=3DContent-Type content=3D"text/html; = > > >> charset=3Diso-8859-1"> > > >> <DEFANGED_META content=3D"MSHTML 6.00.2713.1100" name=3DGENERATOR> > > >> <!-- <DEFANGED_STYLE> --> </DEFANGED_STYLE> > > >> </HEAD> > > >> <BODY bgColor=3D#ffffff> > > >> <DIV><FONT face=3DArial size=3D2>Folks,</FONT></DIV> > > >> <DIV><FONT face=3DArial size=3D2></FONT> </DIV> > > >> <DIV><FONT face=3DArial size=3D2>=CDt=B4s been my experience that the > > >> = > > >> quality of IAX=20 > > >> calls is a lot better with iLBC than GSM. What=B4s need to be done > > >> for = > > >> the=20 > > >> softphone to be able to use iLBC? Is this on anyones priority=20 > > >> list?</FONT></DIV> > > >> <DIV><FONT face=3DArial size=3D2></FONT> </DIV> > > >> <DIV><FONT face=3DArial size=3D2>Rgds</FONT></DIV> > > >> <DIV><FONT face=3DArial size=3D2>Dan</FONT></DIV></BODY></HTML> > > >> > > >> ------=_NextPart_000_08CC_01C36CCE.7EEDC3C0-- > > >> > > >> > > >> -- __--__-- > > >> > > >> Message: 2 > > >> Cc: "iaxclient devel" <iax...@li...> > > >> From: Steve Kann <st...@st...> > > >> Subject: Re: [Iaxclient-devel] support of iLBC > > >> Date: Wed, 27 Aug 2003 22:14:21 -0400 > > >> To: "Dan Fernandez" <dan...@ho...> > > >> > > >> > > >> --Apple-Mail-1--22200657 > > >> Content-Transfer-Encoding: quoted-printable > > >> Content-Type: text/plain; > > >> charset=ISO-8859-1; > > >> format=flowed > > >> > > >> > > >> I think cypromis' folks might work on this at some point. It's > > >> not=20 > > >> the highest thing on my list, but it probably comes after IAX2=20 > > >> reliability, better silence suppression, and possibly echo > > >> cancellation=20= > > >> > > >> or at least echo suppression. > > >> > > >> As to what needs to be done: > > >> > > >> 1) develop a modular interface for codecs, similar to (a) the > > >> interface=20= > > >> > > >> I added recently for audio drivers and/or (b) the modular interface=20 > > >> that phonecore uses for codecs. > > >> > > >> 2) develop some additional support for variable frame sizes (I > > >> think=20 > > >> that * uses 30ms frames for iLBC, as opposed to 20ms for GSM),=20 > > >> negotiating codecs etc (everything is currently hardcoded for GSM). > > >> > > >> 3) As a test of (1), (2), it might be nice to make a uLaw/aLaw > > >> "codec"=20= > > >> > > >> for testing, and because Darren will probably come to your house > > >> and=20 > > >> "moo" for you, if you like that kind of thing. > > >> > > >> 4) Then, add a subdir for the iLBC library (the same stuff included > > >> in=20= > > >> > > >> *), add the proper Makefile-foo to compile it to lib/Makefile, etc. > > >> > > >> 5) write the actual codec_ilbc.c file which uses the interface in > > >> (1),=20= > > >> > > >> and the iLBC library API, and glues them together. > > >> > > >> It doesn't seem really difficult to do. > > >> > > >> List: Yeah, I've kinda disappeared for a while; There's been a lot > > >> of=20= > > >> > > >> things going on for me personally, and work has been kinda busy too. > > >> =20 > > >> But, more work on iaxclient should be happening within the next few=20 > > >> months. > > >> > > >> -SteveK > > >> > > >> > > >> On Aug 27, 2003, at 6:07 PM, Dan Fernandez wrote: > > >> > > >>> Folks, > > >>> =A0 > > >>> =D5t=A5s been my experience that the quality of IAX calls is a lot = > > >> better=20 > > >>> with iLBC than GSM. What=A5s need to be done for the softphone to > > >>> be=20= > > >> > > >>> able to use iLBC?=A0 Is this on anyones priority list? > > >>> =A0 > > >>> Rgds > > >>> Dan > > >> > > >> --Apple-Mail-1--22200657 > > >> Content-Transfer-Encoding: quoted-printable > > >> Content-Type: text/enriched; > > >> charset=ISO-8859-1 > > >> > > >> > > >> > > >> I think cypromis' folks might work on this at some point. It's not > > >> the highest thing on my list, but it probably comes after IAX2 > > >> reliability, better silence suppression, and possibly echo > > >> cancellation or at least echo suppression. > > >> > > >> > > >> As to what needs to be done: > > >> > > >> > > >> 1) develop a modular interface for codecs, similar to (a) the > > >> interface I added recently for audio drivers and/or (b) the modular > > >> interface that phonecore uses for codecs. > > >> > > >> > > >> 2) develop some additional support for variable frame sizes (I think > > >> that * uses 30ms frames for iLBC, as opposed to 20ms for GSM), > > >> negotiating codecs etc (everything is currently hardcoded for GSM). > > >> > > >> > > >> 3) As a test of (1), (2), it might be nice to make a uLaw/aLaw "codec" > > >> for testing, and because Darren will probably come to your house and > > >> "moo" for you, if you like that kind of thing. > > >> > > >> > > >> 4) Then, add a subdir for the iLBC library (the same stuff included in > > >> *), add the proper Makefile-foo to compile it to lib/Makefile, etc. > > >> > > >> > > >> 5) write the actual codec_ilbc.c file which uses the interface in (1), > > >> and the iLBC library API, and glues them together. > > >> > > >> > > >> It doesn't seem really difficult to do. > > >> > > >> > > >> List: Yeah, I've kinda disappeared for a while; There's been a lot of > > >> things going on for me personally, and work has been kinda busy > > >> too.=20 > > >> But, more work on iaxclient should be happening within the next few > > >> months. > > >> > > >> > > >> -SteveK > > >> > > >> > > >> > > >> On Aug 27, 2003, at 6:07 PM, Dan Fernandez wrote: > > >> > > >> > > >> = > > >> <excerpt><fontfamily><param>Arial</param><smaller>Folks,</smaller></ > > >> fontfa= > > >> mily> > > >> > > >> =A0 > > >> > > >> <fontfamily><param>Arial</param><smaller>=D5t=A5s been my experience = > > >> that > > >> the quality of IAX calls is a lot better with iLBC than GSM. What=A5s > > >> need to be done for the softphone to be able to use iLBC?=A0 Is this > > >> on > > >> anyones priority list?</smaller></fontfamily> > > >> > > >> =A0 > > >> > > >> <fontfamily><param>Arial</param><smaller>Rgds</smaller></fontfamily> > > >> > > >> <fontfamily><param>Arial</param><smaller>Dan</smaller></fontfamily> > > >> > > >> </excerpt>= > > >> > > >> --Apple-Mail-1--22200657-- > > >> > > >> > > >> > > >> > > >> -- __--__-- > > >> > > >> _______________________________________________ > > >> Iaxclient-devel mailing list > > >> Iax...@li... > > >> https://lists.sourceforge.net/lists/listinfo/iaxclient-devel > > >> > > >> > > >> End of Iaxclient-devel Digest > > > > > > > > > ===== > > > God is a great Programmer > > > > > > __________________________________ > > > Do you Yahoo!? > > > Yahoo! SiteBuilder - Free, easy-to-use web site design software > > > http://sitebuilder.yahoo.com > > > > > > > > > ------------------------------------------------------- > > > This sf.net email is sponsored by:ThinkGeek > > > Welcome to geek heaven. > > > http://thinkgeek.com/sf > > > _______________________________________________ > > > Iaxclient-devel mailing list > > > Iax...@li... > > > https://lists.sourceforge.net/lists/listinfo/iaxclient-devel > > > > > > > > ===== > God is a great Programmer > > __________________________________ > Do you Yahoo!? > Yahoo! SiteBuilder - Free, easy-to-use web site design software > http://sitebuilder.yahoo.com > > > > --__--__-- > > _______________________________________________ > Iaxclient-devel mailing list > Iax...@li... > https://lists.sourceforge.net/lists/listinfo/iaxclient-devel > > > End of Iaxclient-devel Digest ===== God is a great Programmer __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com |
From: Babar S. <bab...@ya...> - 2003-09-02 15:34:27
|
Hi, Sorry for the late reply i was buzy with some office work. Yes i think some thing is missing :) you better know what to add, subtract :) !!! iLBC don't have its own echo cancellation or some thing like that ?? any ways i will fix it as soon i got a chance. --- Steve Kann <st...@st...> wrote: > > Well, when I looked at the * code, it looked like it wanted 30ms frames > for iLBC. At least, it looks like it will be sending 30ms frames, > although it will probably accept 20ms frames. > > As far as the echo, that's interesting. Are you also trying to use the > echo cancellation code that I had added (you'd need to define some > things, and also add the proper code for it to work, so it's unlikely > you did this accidentally. Currently, the echo cancellation code is > not working, and will add echo instead of cancelling it. > > > > > On Sep 1, 2003, at 9:53 AM, Babar Shafiq wrote: > > > Hi Steve, > > > > Yes it looks easy to add just the iLBC codec, I added iLBC codec in > > iaxclient library, I just hard > > coded the things to use iLBC or GSM when init,without any structure of > > codecs selection and > > sending codecs to other end when starting new session but the sound > > quality is not good as well as > > having some echo problems too. Right now I use 20ms rate. What do you > > think what should be the > > problem ? 20ms is supported on * ? > > > > > > Regards, > > Babar Shafiq Nazmi. > > > > > > --- iax...@li... wrote: > >> Send Iaxclient-devel mailing list submissions to > >> iax...@li... > >> > >> To subscribe or unsubscribe via the World Wide Web, visit > >> https://lists.sourceforge.net/lists/listinfo/iaxclient-devel > >> or, via email, send a message with subject or body 'help' to > >> iax...@li... > >> > >> You can reach the person managing the list at > >> iax...@li... > >> > >> When replying, please edit your Subject line so it is more specific > >> than "Re: Contents of Iaxclient-devel digest..." > >> > >> > >> Today's Topics: > >> > >> 1. support of iLBC (Dan Fernandez) > >> 2. Re: support of iLBC (Steve Kann) > >> > >> --__--__-- > >> > >> Message: 1 > >> From: "Dan Fernandez" <dan...@ho...> > >> To: "iaxclient devel" <iax...@li...> > >> Date: Wed, 27 Aug 2003 19:07:44 -0300 > >> Subject: [Iaxclient-devel] support of iLBC > >> > >> This is a multi-part message in MIME format. > >> > >> ------=_NextPart_000_08CC_01C36CCE.7EEDC3C0 > >> Content-Type: text/plain; > >> charset="iso-8859-1" > >> Content-Transfer-Encoding: quoted-printable > >> > >> Folks, > >> > >> =CDt=B4s been my experience that the quality of IAX calls is a lot = > >> better with iLBC than GSM. What=B4s need to be done for the softphone > >> to = > >> be able to use iLBC? Is this on anyones priority list? > >> > >> Rgds > >> Dan > >> > >> ------=_NextPart_000_08CC_01C36CCE.7EEDC3C0 > >> Content-Type: text/html; > >> charset="iso-8859-1" > >> Content-Transfer-Encoding: quoted-printable > >> > >> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> > >> <HTML><HEAD> > >> <DEFANGED_META http-equiv=3DContent-Type content=3D"text/html; = > >> charset=3Diso-8859-1"> > >> <DEFANGED_META content=3D"MSHTML 6.00.2713.1100" name=3DGENERATOR> > >> <!-- <DEFANGED_STYLE> --> </DEFANGED_STYLE> > >> </HEAD> > >> <BODY bgColor=3D#ffffff> > >> <DIV><FONT face=3DArial size=3D2>Folks,</FONT></DIV> > >> <DIV><FONT face=3DArial size=3D2></FONT> </DIV> > >> <DIV><FONT face=3DArial size=3D2>=CDt=B4s been my experience that the > >> = > >> quality of IAX=20 > >> calls is a lot better with iLBC than GSM. What=B4s need to be done > >> for = > >> the=20 > >> softphone to be able to use iLBC? Is this on anyones priority=20 > >> list?</FONT></DIV> > >> <DIV><FONT face=3DArial size=3D2></FONT> </DIV> > >> <DIV><FONT face=3DArial size=3D2>Rgds</FONT></DIV> > >> <DIV><FONT face=3DArial size=3D2>Dan</FONT></DIV></BODY></HTML> > >> > >> ------=_NextPart_000_08CC_01C36CCE.7EEDC3C0-- > >> > >> > >> --__--__-- > >> > >> Message: 2 > >> Cc: "iaxclient devel" <iax...@li...> > >> From: Steve Kann <st...@st...> > >> Subject: Re: [Iaxclient-devel] support of iLBC > >> Date: Wed, 27 Aug 2003 22:14:21 -0400 > >> To: "Dan Fernandez" <dan...@ho...> > >> > >> > >> --Apple-Mail-1--22200657 > >> Content-Transfer-Encoding: quoted-printable > >> Content-Type: text/plain; > >> charset=ISO-8859-1; > >> format=flowed > >> > >> > >> I think cypromis' folks might work on this at some point. It's > >> not=20 > >> the highest thing on my list, but it probably comes after IAX2=20 > >> reliability, better silence suppression, and possibly echo > >> cancellation=20= > >> > >> or at least echo suppression. > >> > >> As to what needs to be done: > >> > >> 1) develop a modular interface for codecs, similar to (a) the > >> interface=20= > >> > >> I added recently for audio drivers and/or (b) the modular interface=20 > >> that phonecore uses for codecs. > >> > >> 2) develop some additional support for variable frame sizes (I > >> think=20 > >> that * uses 30ms frames for iLBC, as opposed to 20ms for GSM),=20 > >> negotiating codecs etc (everything is currently hardcoded for GSM). > >> > >> 3) As a test of (1), (2), it might be nice to make a uLaw/aLaw > >> "codec"=20= > >> > >> for testing, and because Darren will probably come to your house > >> and=20 > >> "moo" for you, if you like that kind of thing. > >> > >> 4) Then, add a subdir for the iLBC library (the same stuff included > >> in=20= > >> > >> *), add the proper Makefile-foo to compile it to lib/Makefile, etc. > >> > >> 5) write the actual codec_ilbc.c file which uses the interface in > >> (1),=20= > >> > >> and the iLBC library API, and glues them together. > >> > >> It doesn't seem really difficult to do. > >> > >> List: Yeah, I've kinda disappeared for a while; There's been a lot > >> of=20= > >> > >> things going on for me personally, and work has been kinda busy too. > >> =20 > >> But, more work on iaxclient should be happening within the next few=20 > >> months. > >> > >> -SteveK > >> > >> > >> On Aug 27, 2003, at 6:07 PM, Dan Fernandez wrote: > >> > >>> Folks, > >>> =A0 > >>> =D5t=A5s been my experience that the quality of IAX calls is a lot = > >> better=20 > >>> with iLBC than GSM. What=A5s need to be done for the softphone to > >>> be=20= > >> > >>> able to use iLBC?=A0 Is this on anyones priority list? > >>> =A0 > >>> Rgds > >>> Dan > >> > >> --Apple-Mail-1--22200657 > >> Content-Transfer-Encoding: quoted-printable > >> Content-Type: text/enriched; > >> charset=ISO-8859-1 > >> > >> > >> > >> I think cypromis' folks might work on this at some point. It's not > >> the highest thing on my list, but it probably comes after IAX2 > >> reliability, better silence suppression, and possibly echo > >> cancellation or at least echo suppression. > >> > >> > >> As to what needs to be done: > >> > >> > >> 1) develop a modular interface for codecs, similar to (a) the > >> interface I added recently for audio drivers and/or (b) the modular > >> interface that phonecore uses for codecs. > >> > >> > >> 2) develop some additional support for variable frame sizes (I think > >> that * uses 30ms frames for iLBC, as opposed to 20ms for GSM), > >> negotiating codecs etc (everything is currently hardcoded for GSM). > >> > >> > >> 3) As a test of (1), (2), it might be nice to make a uLaw/aLaw "codec" > >> for testing, and because Darren will probably come to your house and > >> "moo" for you, if you like that kind of thing. > >> > >> > >> 4) Then, add a subdir for the iLBC library (the same stuff included in > >> *), add the proper Makefile-foo to compile it to lib/Makefile, etc. > >> > >> > >> 5) write the actual codec_ilbc.c file which uses the interface in (1), > >> and the iLBC library API, and glues them together. > >> > >> > >> It doesn't seem really difficult to do. > >> > >> > >> List: Yeah, I've kinda disappeared for a while; There's been a lot of > >> things going on for me personally, and work has been kinda busy > >> too.=20 > >> But, more work on iaxclient should be happening within the next few > >> months. > >> > >> > >> -SteveK > >> > >> > >> > >> On Aug 27, 2003, at 6:07 PM, Dan Fernandez wrote: > >> > >> > >> = > >> <excerpt><fontfamily><param>Arial</param><smaller>Folks,</smaller></ > >> fontfa= > >> mily> > >> > >> =A0 > >> > >> <fontfamily><param>Arial</param><smaller>=D5t=A5s been my experience = > >> that > >> the quality of IAX calls is a lot better with iLBC than GSM. What=A5s > >> need to be done for the softphone to be able to use iLBC?=A0 Is this > >> on > >> anyones priority list?</smaller></fontfamily> > >> > >> =A0 > >> > >> <fontfamily><param>Arial</param><smaller>Rgds</smaller></fontfamily> > >> > >> <fontfamily><param>Arial</param><smaller>Dan</smaller></fontfamily> > >> > >> </excerpt>= > >> > >> --Apple-Mail-1--22200657-- > >> > >> > >> > >> > >> --__--__-- > >> > >> _______________________________________________ > >> Iaxclient-devel mailing list > >> Iax...@li... > >> https://lists.sourceforge.net/lists/listinfo/iaxclient-devel > >> > >> > >> End of Iaxclient-devel Digest > > > > > > ===== > > God is a great Programmer > > > > __________________________________ > > Do you Yahoo!? > > Yahoo! SiteBuilder - Free, easy-to-use web site design software > > http://sitebuilder.yahoo.com > > > > > > ------------------------------------------------------- > > This sf.net email is sponsored by:ThinkGeek > > Welcome to geek heaven. > > http://thinkgeek.com/sf > > _______________________________________________ > > Iaxclient-devel mailing list > > Iax...@li... > > https://lists.sourceforge.net/lists/listinfo/iaxclient-devel > > > ===== God is a great Programmer __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com |
From: Steve K. <st...@st...> - 2003-09-01 14:35:38
|
Well, when I looked at the * code, it looked like it wanted 30ms frames for iLBC. At least, it looks like it will be sending 30ms frames, although it will probably accept 20ms frames. As far as the echo, that's interesting. Are you also trying to use the echo cancellation code that I had added (you'd need to define some things, and also add the proper code for it to work, so it's unlikely you did this accidentally. Currently, the echo cancellation code is not working, and will add echo instead of cancelling it. On Sep 1, 2003, at 9:53 AM, Babar Shafiq wrote: > Hi Steve, > > Yes it looks easy to add just the iLBC codec, I added iLBC codec in > iaxclient library, I just hard > coded the things to use iLBC or GSM when init,without any structure of > codecs selection and > sending codecs to other end when starting new session but the sound > quality is not good as well as > having some echo problems too. Right now I use 20ms rate. What do you > think what should be the > problem ? 20ms is supported on * ? > > > Regards, > Babar Shafiq Nazmi. > > > --- iax...@li... wrote: >> Send Iaxclient-devel mailing list submissions to >> iax...@li... >> >> To subscribe or unsubscribe via the World Wide Web, visit >> https://lists.sourceforge.net/lists/listinfo/iaxclient-devel >> or, via email, send a message with subject or body 'help' to >> iax...@li... >> >> You can reach the person managing the list at >> iax...@li... >> >> When replying, please edit your Subject line so it is more specific >> than "Re: Contents of Iaxclient-devel digest..." >> >> >> Today's Topics: >> >> 1. support of iLBC (Dan Fernandez) >> 2. Re: support of iLBC (Steve Kann) >> >> --__--__-- >> >> Message: 1 >> From: "Dan Fernandez" <dan...@ho...> >> To: "iaxclient devel" <iax...@li...> >> Date: Wed, 27 Aug 2003 19:07:44 -0300 >> Subject: [Iaxclient-devel] support of iLBC >> >> This is a multi-part message in MIME format. >> >> ------=_NextPart_000_08CC_01C36CCE.7EEDC3C0 >> Content-Type: text/plain; >> charset="iso-8859-1" >> Content-Transfer-Encoding: quoted-printable >> >> Folks, >> >> =CDt=B4s been my experience that the quality of IAX calls is a lot = >> better with iLBC than GSM. What=B4s need to be done for the softphone >> to = >> be able to use iLBC? Is this on anyones priority list? >> >> Rgds >> Dan >> >> ------=_NextPart_000_08CC_01C36CCE.7EEDC3C0 >> Content-Type: text/html; >> charset="iso-8859-1" >> Content-Transfer-Encoding: quoted-printable >> >> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> >> <HTML><HEAD> >> <DEFANGED_META http-equiv=3DContent-Type content=3D"text/html; = >> charset=3Diso-8859-1"> >> <DEFANGED_META content=3D"MSHTML 6.00.2713.1100" name=3DGENERATOR> >> <!-- <DEFANGED_STYLE> --> </DEFANGED_STYLE> >> </HEAD> >> <BODY bgColor=3D#ffffff> >> <DIV><FONT face=3DArial size=3D2>Folks,</FONT></DIV> >> <DIV><FONT face=3DArial size=3D2></FONT> </DIV> >> <DIV><FONT face=3DArial size=3D2>=CDt=B4s been my experience that the >> = >> quality of IAX=20 >> calls is a lot better with iLBC than GSM. What=B4s need to be done >> for = >> the=20 >> softphone to be able to use iLBC? Is this on anyones priority=20 >> list?</FONT></DIV> >> <DIV><FONT face=3DArial size=3D2></FONT> </DIV> >> <DIV><FONT face=3DArial size=3D2>Rgds</FONT></DIV> >> <DIV><FONT face=3DArial size=3D2>Dan</FONT></DIV></BODY></HTML> >> >> ------=_NextPart_000_08CC_01C36CCE.7EEDC3C0-- >> >> >> --__--__-- >> >> Message: 2 >> Cc: "iaxclient devel" <iax...@li...> >> From: Steve Kann <st...@st...> >> Subject: Re: [Iaxclient-devel] support of iLBC >> Date: Wed, 27 Aug 2003 22:14:21 -0400 >> To: "Dan Fernandez" <dan...@ho...> >> >> >> --Apple-Mail-1--22200657 >> Content-Transfer-Encoding: quoted-printable >> Content-Type: text/plain; >> charset=ISO-8859-1; >> format=flowed >> >> >> I think cypromis' folks might work on this at some point. It's >> not=20 >> the highest thing on my list, but it probably comes after IAX2=20 >> reliability, better silence suppression, and possibly echo >> cancellation=20= >> >> or at least echo suppression. >> >> As to what needs to be done: >> >> 1) develop a modular interface for codecs, similar to (a) the >> interface=20= >> >> I added recently for audio drivers and/or (b) the modular interface=20 >> that phonecore uses for codecs. >> >> 2) develop some additional support for variable frame sizes (I >> think=20 >> that * uses 30ms frames for iLBC, as opposed to 20ms for GSM),=20 >> negotiating codecs etc (everything is currently hardcoded for GSM). >> >> 3) As a test of (1), (2), it might be nice to make a uLaw/aLaw >> "codec"=20= >> >> for testing, and because Darren will probably come to your house >> and=20 >> "moo" for you, if you like that kind of thing. >> >> 4) Then, add a subdir for the iLBC library (the same stuff included >> in=20= >> >> *), add the proper Makefile-foo to compile it to lib/Makefile, etc. >> >> 5) write the actual codec_ilbc.c file which uses the interface in >> (1),=20= >> >> and the iLBC library API, and glues them together. >> >> It doesn't seem really difficult to do. >> >> List: Yeah, I've kinda disappeared for a while; There's been a lot >> of=20= >> >> things going on for me personally, and work has been kinda busy too. >> =20 >> But, more work on iaxclient should be happening within the next few=20 >> months. >> >> -SteveK >> >> >> On Aug 27, 2003, at 6:07 PM, Dan Fernandez wrote: >> >>> Folks, >>> =A0 >>> =D5t=A5s been my experience that the quality of IAX calls is a lot = >> better=20 >>> with iLBC than GSM. What=A5s need to be done for the softphone to >>> be=20= >> >>> able to use iLBC?=A0 Is this on anyones priority list? >>> =A0 >>> Rgds >>> Dan >> >> --Apple-Mail-1--22200657 >> Content-Transfer-Encoding: quoted-printable >> Content-Type: text/enriched; >> charset=ISO-8859-1 >> >> >> >> I think cypromis' folks might work on this at some point. It's not >> the highest thing on my list, but it probably comes after IAX2 >> reliability, better silence suppression, and possibly echo >> cancellation or at least echo suppression. >> >> >> As to what needs to be done: >> >> >> 1) develop a modular interface for codecs, similar to (a) the >> interface I added recently for audio drivers and/or (b) the modular >> interface that phonecore uses for codecs. >> >> >> 2) develop some additional support for variable frame sizes (I think >> that * uses 30ms frames for iLBC, as opposed to 20ms for GSM), >> negotiating codecs etc (everything is currently hardcoded for GSM). >> >> >> 3) As a test of (1), (2), it might be nice to make a uLaw/aLaw "codec" >> for testing, and because Darren will probably come to your house and >> "moo" for you, if you like that kind of thing. >> >> >> 4) Then, add a subdir for the iLBC library (the same stuff included in >> *), add the proper Makefile-foo to compile it to lib/Makefile, etc. >> >> >> 5) write the actual codec_ilbc.c file which uses the interface in (1), >> and the iLBC library API, and glues them together. >> >> >> It doesn't seem really difficult to do. >> >> >> List: Yeah, I've kinda disappeared for a while; There's been a lot of >> things going on for me personally, and work has been kinda busy >> too.=20 >> But, more work on iaxclient should be happening within the next few >> months. >> >> >> -SteveK >> >> >> >> On Aug 27, 2003, at 6:07 PM, Dan Fernandez wrote: >> >> >> = >> <excerpt><fontfamily><param>Arial</param><smaller>Folks,</smaller></ >> fontfa= >> mily> >> >> =A0 >> >> <fontfamily><param>Arial</param><smaller>=D5t=A5s been my experience = >> that >> the quality of IAX calls is a lot better with iLBC than GSM. What=A5s >> need to be done for the softphone to be able to use iLBC?=A0 Is this >> on >> anyones priority list?</smaller></fontfamily> >> >> =A0 >> >> <fontfamily><param>Arial</param><smaller>Rgds</smaller></fontfamily> >> >> <fontfamily><param>Arial</param><smaller>Dan</smaller></fontfamily> >> >> </excerpt>= >> >> --Apple-Mail-1--22200657-- >> >> >> >> >> --__--__-- >> >> _______________________________________________ >> Iaxclient-devel mailing list >> Iax...@li... >> https://lists.sourceforge.net/lists/listinfo/iaxclient-devel >> >> >> End of Iaxclient-devel Digest > > > ===== > God is a great Programmer > > __________________________________ > Do you Yahoo!? > Yahoo! SiteBuilder - Free, easy-to-use web site design software > http://sitebuilder.yahoo.com > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Iaxclient-devel mailing list > Iax...@li... > https://lists.sourceforge.net/lists/listinfo/iaxclient-devel > |
From: Babar S. <bab...@ya...> - 2003-09-01 13:53:35
|
Hi Steve, Yes it looks easy to add just the iLBC codec, I added iLBC codec in iaxclient library, I just hard coded the things to use iLBC or GSM when init,without any structure of codecs selection and sending codecs to other end when starting new session but the sound quality is not good as well as having some echo problems too. Right now I use 20ms rate. What do you think what should be the problem ? 20ms is supported on * ? Regards, Babar Shafiq Nazmi. --- iax...@li... wrote: > Send Iaxclient-devel mailing list submissions to > iax...@li... > > To subscribe or unsubscribe via the World Wide Web, visit > https://lists.sourceforge.net/lists/listinfo/iaxclient-devel > or, via email, send a message with subject or body 'help' to > iax...@li... > > You can reach the person managing the list at > iax...@li... > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Iaxclient-devel digest..." > > > Today's Topics: > > 1. support of iLBC (Dan Fernandez) > 2. Re: support of iLBC (Steve Kann) > > --__--__-- > > Message: 1 > From: "Dan Fernandez" <dan...@ho...> > To: "iaxclient devel" <iax...@li...> > Date: Wed, 27 Aug 2003 19:07:44 -0300 > Subject: [Iaxclient-devel] support of iLBC > > This is a multi-part message in MIME format. > > ------=_NextPart_000_08CC_01C36CCE.7EEDC3C0 > Content-Type: text/plain; > charset="iso-8859-1" > Content-Transfer-Encoding: quoted-printable > > Folks, > > =CDt=B4s been my experience that the quality of IAX calls is a lot = > better with iLBC than GSM. What=B4s need to be done for the softphone to = > be able to use iLBC? Is this on anyones priority list? > > Rgds > Dan > > ------=_NextPart_000_08CC_01C36CCE.7EEDC3C0 > Content-Type: text/html; > charset="iso-8859-1" > Content-Transfer-Encoding: quoted-printable > > <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> > <HTML><HEAD> > <META http-equiv=3DContent-Type content=3D"text/html; = > charset=3Diso-8859-1"> > <META content=3D"MSHTML 6.00.2713.1100" name=3DGENERATOR> > <STYLE></STYLE> > </HEAD> > <BODY bgColor=3D#ffffff> > <DIV><FONT face=3DArial size=3D2>Folks,</FONT></DIV> > <DIV><FONT face=3DArial size=3D2></FONT> </DIV> > <DIV><FONT face=3DArial size=3D2>=CDt=B4s been my experience that the = > quality of IAX=20 > calls is a lot better with iLBC than GSM. What=B4s need to be done for = > the=20 > softphone to be able to use iLBC? Is this on anyones priority=20 > list?</FONT></DIV> > <DIV><FONT face=3DArial size=3D2></FONT> </DIV> > <DIV><FONT face=3DArial size=3D2>Rgds</FONT></DIV> > <DIV><FONT face=3DArial size=3D2>Dan</FONT></DIV></BODY></HTML> > > ------=_NextPart_000_08CC_01C36CCE.7EEDC3C0-- > > > --__--__-- > > Message: 2 > Cc: "iaxclient devel" <iax...@li...> > From: Steve Kann <st...@st...> > Subject: Re: [Iaxclient-devel] support of iLBC > Date: Wed, 27 Aug 2003 22:14:21 -0400 > To: "Dan Fernandez" <dan...@ho...> > > > --Apple-Mail-1--22200657 > Content-Transfer-Encoding: quoted-printable > Content-Type: text/plain; > charset=ISO-8859-1; > format=flowed > > > I think cypromis' folks might work on this at some point. It's not=20 > the highest thing on my list, but it probably comes after IAX2=20 > reliability, better silence suppression, and possibly echo cancellation=20= > > or at least echo suppression. > > As to what needs to be done: > > 1) develop a modular interface for codecs, similar to (a) the interface=20= > > I added recently for audio drivers and/or (b) the modular interface=20 > that phonecore uses for codecs. > > 2) develop some additional support for variable frame sizes (I think=20 > that * uses 30ms frames for iLBC, as opposed to 20ms for GSM),=20 > negotiating codecs etc (everything is currently hardcoded for GSM). > > 3) As a test of (1), (2), it might be nice to make a uLaw/aLaw "codec"=20= > > for testing, and because Darren will probably come to your house and=20 > "moo" for you, if you like that kind of thing. > > 4) Then, add a subdir for the iLBC library (the same stuff included in=20= > > *), add the proper Makefile-foo to compile it to lib/Makefile, etc. > > 5) write the actual codec_ilbc.c file which uses the interface in (1),=20= > > and the iLBC library API, and glues them together. > > It doesn't seem really difficult to do. > > List: Yeah, I've kinda disappeared for a while; There's been a lot of=20= > > things going on for me personally, and work has been kinda busy too. =20 > But, more work on iaxclient should be happening within the next few=20 > months. > > -SteveK > > > On Aug 27, 2003, at 6:07 PM, Dan Fernandez wrote: > > > Folks, > > =A0 > > =D5t=A5s been my experience that the quality of IAX calls is a lot = > better=20 > > with iLBC than GSM. What=A5s need to be done for the softphone to be=20= > > > able to use iLBC?=A0 Is this on anyones priority list? > > =A0 > > Rgds > > Dan > > --Apple-Mail-1--22200657 > Content-Transfer-Encoding: quoted-printable > Content-Type: text/enriched; > charset=ISO-8859-1 > > > > I think cypromis' folks might work on this at some point. It's not > the highest thing on my list, but it probably comes after IAX2 > reliability, better silence suppression, and possibly echo > cancellation or at least echo suppression. > > > As to what needs to be done: > > > 1) develop a modular interface for codecs, similar to (a) the > interface I added recently for audio drivers and/or (b) the modular > interface that phonecore uses for codecs. > > > 2) develop some additional support for variable frame sizes (I think > that * uses 30ms frames for iLBC, as opposed to 20ms for GSM), > negotiating codecs etc (everything is currently hardcoded for GSM). > > > 3) As a test of (1), (2), it might be nice to make a uLaw/aLaw "codec" > for testing, and because Darren will probably come to your house and > "moo" for you, if you like that kind of thing. > > > 4) Then, add a subdir for the iLBC library (the same stuff included in > *), add the proper Makefile-foo to compile it to lib/Makefile, etc. > > > 5) write the actual codec_ilbc.c file which uses the interface in (1), > and the iLBC library API, and glues them together. > > > It doesn't seem really difficult to do. > > > List: Yeah, I've kinda disappeared for a while; There's been a lot of > things going on for me personally, and work has been kinda busy too.=20 > But, more work on iaxclient should be happening within the next few > months. > > > -SteveK > > > > On Aug 27, 2003, at 6:07 PM, Dan Fernandez wrote: > > > = > <excerpt><fontfamily><param>Arial</param><smaller>Folks,</smaller></fontfa= > mily> > > =A0 > > <fontfamily><param>Arial</param><smaller>=D5t=A5s been my experience = > that > the quality of IAX calls is a lot better with iLBC than GSM. What=A5s > need to be done for the softphone to be able to use iLBC?=A0 Is this on > anyones priority list?</smaller></fontfamily> > > =A0 > > <fontfamily><param>Arial</param><smaller>Rgds</smaller></fontfamily> > > <fontfamily><param>Arial</param><smaller>Dan</smaller></fontfamily> > > </excerpt>= > > --Apple-Mail-1--22200657-- > > > > > --__--__-- > > _______________________________________________ > Iaxclient-devel mailing list > Iax...@li... > https://lists.sourceforge.net/lists/listinfo/iaxclient-devel > > > End of Iaxclient-devel Digest ===== God is a great Programmer __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com |
From: Peer O. S. <po...@th...> - 2003-08-28 12:42:40
|
Babar Shafiq wrote: > Hi, > > Try this > > http://babarnazmi.150m.com/IaxClientOcx.zip > http://babarnazmi.150m.com/vbClient.zip > http://babarnazmi.150m.com/iaxclientHTMLdemo.zip > > If you are talking about using more then one call, it is already done by Steve Kann in the > iaxclient library you can use four(4) calls at a time. > iaxc_select_call(int callNo) > > I tried in IaxClientOcx, u can use it by > SelectLine (Line number to select) I want to achieve an intercom functionality. And I /think/ the easiest way would be to have one line be autoanswered and output to the rear speakers, where the primary line would be send to the front speakers. I am sorry, if I am talking b*s*, but I am very new to all of this. rgds pos |