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: daniel h. <de...@to...> - 2004-10-19 15:41:38
|
Hi list, I have an asterisk box running and use iaxComm on my laptop. I have two accounts: iaxtel.com and my own on my asterisk. When I launch iaxComm,iaxtel account is the first account. If I change it to my own one, I'm not able to call an extensions on my *. Nothing happend. Now, I call my * box (registred in iaxtel with another number) with my iaxtel account: no problem. I catch called party, I only do not have ring tone on my side. Now I hangup and call directly my asterisk through my account there, I have ring tone and call pass through! Did someone else face this problem? My iaxComm is the pre28CVS Feb 2004. -- Daniel |
From: SeV on N. <se...@ne...> - 2004-10-19 08:08:00
|
Hello I use Asterisk CVS-v1-0-10/18/04-20:12:05 with OH323 0.6.3b channel. I use X-lite as SIP SoftPhone. So I place calls as show below: X-like --SIP--> * --H323--> Cisco 5350 --ISDN--> PSTN Can I use app_conference for make conference beetween "line1" and "line2" and me(X-lite): X-like (line1) --SIP--> * --H323--> Cisco 5350 --ISDN--> PSTN (phone1) X-like (line2) --SIP--> * --H323--> Cisco 5350 --ISDN--> PSTN (phone2) If answer is yes, please give me detail instruction - what I must dial on X-lite SoftPhone to do conference. Thank you. -- Best regards, SeV mailto:se...@ne... |
From: Steve K. <st...@st...> - 2004-10-18 23:16:24
|
So, this appears to be the way negotiation works: 1) The caller sends both format and capabilities when it makes a new call. 2) The remote side chooses a format, based on it's own capabilities, preferences, and the caller's capabilities and preferences. 3) The remote side ACCEPTs the call, and sends back the format to use. So, this is what I implemented in iaxclient and libiax2. In step2, asterisk seems to do this: 1) Use the caller's preferred format, if it supports it, 2) Choose amongst all capabilities, using a hard-coded order of preference. In step2, in iaxclient, I implemented it as: 1) Use the caller's preferred format, if we support it, 2) Use _our_ preferred format, if they support it, 3) finally, look at the union of capabilities, and (the same) hard-coded order. Attached is a patch which implements this. There's a few changes: iaxclient API: Rename codec selection API, and add "preffered" vs allowed selection. In using this, preferred should be _one_ codec, allowed should be as many as you want. NOTE: you can set allowed to whatever you want, but things won't work so well if you allow something that iaxclient doesn't support internally -- but it doesn't check what you pass it. -void iaxc_set_encode_format(int fmt); +void iaxc_set_formats(int preferred, int allowed); libiax2 API: Add params to iax_call to set format and capability. Add param to iax_accept to tell it what format we want. -extern int iax_call(struct iax_session *session, char *cidnum, char *cidname, char *ich, char *lang, int wait); -extern int iax_accept(struct iax_session *session); +extern int iax_call(struct iax_session *session, char *cidnum, char *cidname, char *ich, char *lang, int wait, int format, int capability); +extern int iax_accept(struct iax_session *session, int format); Let me know what you think.. I've only tested this on one outgoing calls, so a review and testing is in order.. A known issue is that I think we try to send audio right after we send NEW, even before the other side ACCEPTs. at this point, our call format is set to zero, and we get some errors printed about not being able to use format 0, etc.. -SteveK |
From: Steve K. <st...@st...> - 2004-10-18 18:09:42
|
Dan wrote: > Hi Steve, > >> ----- Original Message ----- From: Steve Kann >> Michael Van Donselaar wrote: >> On Mon, 18 Oct 2004 12:10:50 -0400, Steve Kann <st...@st...> >> wrote: > > >> Dan: Try using something other than app_echo: perhaps app_echo is >> sending frames to you in the wrong format or something? Do you get that >> message repeatedly, or not? > > > Tryied with echo, voice prompts, ATA186 (SIP), Cisco 7960 (SIP), all > with the same > result on ulaw. > >> Also, just to make it easy, I'd copy the ilbc directory from asterisk >> CVS HEAD, instead of decoding it yourself, just to make sure that you're >> extracting it properly. > > > iLBC works for me now very well. > > > Anything else to try with ulaw? Use ethereal to see what the timestamps and frame counts look like for uLaw, I guess. I'd like to know why it works for me, but not for you, and to see if it works for others. asterisk uLaw should give you 50 20ms frames per second.. You could also add a debug statement to decode_audio in audio_encode.c, printing a message each time you get a frame to decode, something like: fprintf(stderr, "Decoding frame, len=%d, samples=%d, format=%d\n", insize, outsize, format); It should print 50 of these per second, with len=160, samples=160, format=(whatever uLaw is). -SteveK |
From: Dan <dt...@fx...> - 2004-10-18 17:49:15
|
Hi Steve, >----- Original Message ----- >From: Steve Kann > Michael Van Donselaar wrote: >On Mon, 18 Oct 2004 12:10:50 -0400, Steve Kann <st...@st...> wrote: >Dan: Try using something other than app_echo: perhaps app_echo is >sending frames to you in the wrong format or something? Do you get that >message repeatedly, or not? Tryied with echo, voice prompts, ATA186 (SIP), Cisco 7960 (SIP), all with the same result on ulaw. >Also, just to make it easy, I'd copy the ilbc directory from asterisk >CVS HEAD, instead of decoding it yourself, just to make sure that you're >extracting it properly. iLBC works for me now very well. Anything else to try with ulaw? Thanks a lot, Dan |
From: Steve K. <st...@st...> - 2004-10-18 16:29:52
|
Added CC: to list; others may be interested in this. Michael Van Donselaar wrote: >On Mon, 18 Oct 2004 12:10:50 -0400, Steve Kann <st...@st...> wrote: > ><lots of snippage> > > > >>So, to summarize: >> >>1) Dan couldn't make iLBC work at all (but only tried app_echo), but >>Michael seemed to use it OK. >> >> > >I have recent reports from some users on dialup that the quality improvement is >"great!" > > > >>Dan: Try using something other than app_echo: perhaps app_echo is >>sending frames to you in the wrong format or something? Do you get that >>message repeatedly, or not? >> >>Also, just to make it easy, I'd copy the ilbc directory from asterisk >>CVS HEAD, instead of decoding it yourself, just to make sure that you're >>extracting it properly. >> >> > >I copied the ilbc directory from the build I used on my asterisk server, >CVS-12/22/03-22:47:35 > >That code is pretty stable in the asterisk tree isn't it? > No, it changed a couple of days ago, actually. (a slightly different API to iLBC; added new parameters). I guess the total actual bandwidth for iLBC is slightly less than for GSM, but only because it uses 30ms frames, and not 20ms frames. In the current code, you can probably improve things for modem users by changing this: /* find mimumum frame size */ toRead = 160; /* default */ To something like this: /* find mimumum frame size */ toRead = 320; /* default */ And then you'd get 40ms minimum frame sizes on outgoing (iLBC would then use 60ms, speex/gsm/ulaw would use 40ms). You could use 480, and get them all to use 60ms. Basically, the overhead of IP+UDP+IAX2 at 20ms is like 12kbps; if you use 40ms frames, it drops to 6kbps, etc.. (and it's all really the IP+UDP headers, the IAX2 headers are tiny). As you can see, this makes more difference than the codecs do. -SteveK |
From: Steve K. <st...@st...> - 2004-10-18 16:10:57
|
Dan wrote: > Hi Steve, > >> ----- Original Message ----- From: "Steve Kann" <st...@st...> >> I figured I'd hear something about people trying this out already.. >> >> Working for you? not working? >> > > - Speex - works fine (trying just with ECHO) > - uLaw - trying some voice prompts, ECHO and a call to a Cisco ATA186 > (on the LAN). In all those situations, a lot of drop-outs in the > sound, but in one direction only (from the Asterisk to the soft > pone(DIAX). The sound from the soft phone (DIAX) to ATA is perfect. > - iLBC - does nothing. When I call ECHO, I get "Bad or incomplete > voice packet. Unable to decode. Dropping". > I have downloaded the iLBC codec source files(extracted from > draft-ietf-avt-ilbc-codec-05.txt) at http://www.ilbcfreeware.org/. > It compiles without errors (CODEC_ILBC=1 in Makefile). > > Someone else with more luck on iLBC and uLaw? Interesting. So, to summarize: 1) Dan couldn't make iLBC work at all (but only tried app_echo), but Michael seemed to use it OK. Dan: Try using something other than app_echo: perhaps app_echo is sending frames to you in the wrong format or something? Do you get that message repeatedly, or not? Also, just to make it easy, I'd copy the ilbc directory from asterisk CVS HEAD, instead of decoding it yourself, just to make sure that you're extracting it properly. [Again, I remind you, that iLBC licensing issues are yours to figure out] 2) Dan had dropouts with uLaw, echo and to a Cisco (SIP?). Ilguiz also had uLaw problems. I just tried uLaw again, and it still seems to work for me; I'm not sure why it would have any more dropouts than other codecs.. Since it's incoming audio that's having these problems, it can't be a problem with remote jitterbuffers or anything.. In all these cases, I'd suggest using ethereal and seeing what's going on. -SteveK |
From: Michael V. D. <mi...@va...> - 2004-10-17 17:52:03
|
On Sun, 17 Oct 2004 00:06:10 -0400, Steve Kann <st...@st...> wrote: > > >I figured I'd hear something about people trying this out already.. > >Working for you? not working? > >-SteveK I accidentally replied to Steve rather than the list before. I recompiled iaxComm with iLBC, and it seemed to work great. I only had = a 5 min conversation with my daughter, but I'll bang on it some more to make = sure. |
From: Dan <dt...@fx...> - 2004-10-17 17:23:11
|
Hi Steve, >----- Original Message ----- >From: "Steve Kann" <st...@st...> > I figured I'd hear something about people trying this out already.. > > Working for you? not working? > - Speex - works fine (trying just with ECHO) - uLaw - trying some voice prompts, ECHO and a call to a Cisco ATA186 (on the LAN). In all those situations, a lot of drop-outs in the sound, but in one direction only (from the Asterisk to the soft pone(DIAX). The sound from the soft phone (DIAX) to ATA is perfect. - iLBC - does nothing. When I call ECHO, I get "Bad or incomplete voice packet. Unable to decode. Dropping". I have downloaded the iLBC codec source files(extracted from draft-ietf-avt-ilbc-codec-05.txt) at http://www.ilbcfreeware.org/. It compiles without errors (CODEC_ILBC=1 in Makefile). Someone else with more luck on iLBC and uLaw? Best regards, Dan. |
From: Dan <dt...@fx...> - 2004-10-17 16:57:56
|
Hi, >----- Original Message ----- >From: "Ilguiz Latypov" <ila...@in...> > > I tried the u-law codec with the IAX2 provider > http://connect.voicepulse.com. The quality of ringing tones was > excellent, but the recipient's voice was interrupted by silent clicks > few times per second. On reverting to GSM for the next call, the clicks > disappeared. Same for me here, DIAX (with the latest iaxclient update) and Asterisk, on the local network (100Mbps). Dan |
From: Ilguiz L. <ila...@in...> - 2004-10-17 04:43:59
|
On Sun, Oct 17, 2004 at 12:06:10AM -0400, Steve Kann wrote: > Working for you? not working? I tried the u-law codec with the IAX2 provider http://connect.voicepulse.com. The quality of ringing tones was excellent, but the recipient's voice was interrupted by silent clicks few times per second. On reverting to GSM for the next call, the clicks disappeared. -- Ilguiz |
From: Steve K. <st...@st...> - 2004-10-17 04:06:17
|
I figured I'd hear something about people trying this out already.. Working for you? not working? -SteveK |
From: Steve K. <st...@st...> - 2004-10-15 20:35:00
|
If someone is interested in writing codec_alaw.c, There's a free alaw implementation here: http://openbsd.mirrors.pair.com/src/regress/sys/dev/audio/law.c (it seems this is what zaptel and asterisk code was based on). -SteveK |
From: Steve K. <st...@st...> - 2004-10-14 19:28:36
|
Now supported: - uLaw - speex - gsm - iLBC for iLBC, I have _not_ included the iLBC sources in the repository, and it's not included by default, but basically, all you need to do to build is copy the iLBC sources into a directory called lib/iLBC, and then turn it on in the Makefile. I've written the codec "driver", the support for different frame sizes (iLBC uses 30ms), and even the Makefile code for compilation. I even tested it a bit. easiest testing: just change iaxc_set_encode_format(IAXC_FORMAT_GSM) in testcall.c to whichever you like.. There's still some stuff to do for codec negotiation, per-call codec choices and so forth -- maybe people using this want to contribute that? [I never actually use more than one call in my application, and don't really need negotiation of any kind]. -SteveK |
From: marin b. <mar...@ya...> - 2004-10-13 20:26:39
|
Hi, Im currently working on an iaxclient over browser and I was wondering if there is a state event for fax tone - like busy,ringing,answer etc. Also, is there a way to find out from iaxclient the channel that the client originate at * when we have PRI with 24/30 channels ? Thank you, Marin __________________________________ Do you Yahoo!? Yahoo! Mail Address AutoComplete - You start. We finish. http://promotions.yahoo.com/new_mail |
From: Richard P. <ric...@co...> - 2004-10-13 16:18:41
|
It would seem that the problem I'm having at the moment is with our asterisk box. I apologize for the false alarm =) Thanks for your help! Cheers Richard -----Original Message----- From: iax...@li... [mailto:iax...@li...]On Behalf Of Richard Pettitt Sent: 13 October 2004 17:00 To: Steve Kann; IMB Recipient 1 Cc: iaxclient-list Subject: RE: [Iaxclient-devel] codecs. I wasn't sure about what the sample variable does. I found that I got more distortion when I played around with it so I figured that it could also reduce the distortion if it was set up differently. I was probably way off base with that... I get the distortion on both gsm and ulaw if I set them in IAX using iaxc_set_encode_format Cheers Richard -----Original Message----- From: iax...@li... [mailto:iax...@li...]On Behalf Of Steve Kann Sent: 13 October 2004 16:01 To: ric...@co...; IMB Recipient 1 Cc: iaxclient-list Subject: Re: [Iaxclient-devel] codecs. Richard Pettitt wrote: >Hi Steve > >I used the latest library from the cvs to create a ulaw version of iaxcomm. > >The audio sent from iaxcomm came out all distorted on the other side. Does >this have something to do with the sample variable of the packet not being >set correctly? > >I don't really know much about codecs and would appreciate any help you >could give. > > So, I've done just a very limited amount of testing so far with this new code: 1) Did a test from my mac to PSTN via nufone and uLaw: worked fine. 2) Did a test from my linux PC to PSTN via local asterisk and GSM: worked fine. So, there certainly might be issues that I'm not seeing here. "sample variable of the packet not being set correctly?" Do you mean the samples item in IAX2? I didn't know it was set wrong? Did you see this in ethereal? -SteveK >Thanks, > Richard > >-----Original Message----- >From: iax...@li... >[mailto:iax...@li...]On Behalf Of Steve Kann >Sent: 13 October 2004 04:39 >To: Iaxclientlist >Subject: [Iaxclient-devel] codecs. > > >I've finally done the codec thing. > >Adding other 20ms codecs should now be pretty trivial (actually, the >whole thing was pretty easy). > >ulaw has been added, and gsm still works. > >speex will probably come later this week. > >I need to add some flexibility in setting allowed and preferred codecs. > Right now, your application must choose just one. > > > >-SteveK > > > >------------------------------------------------------- >This SF.net email is sponsored by: IT Product Guide on ITManagersJournal >Use IT products in your business? Tell us what you think of them. Give us >Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more >http://productguide.itmanagersjournal.com/guidepromo.tmpl >_______________________________________________ >Iaxclient-devel mailing list >Iax...@li... >https://lists.sourceforge.net/lists/listinfo/iaxclient-devel > > > >------------------------------------------------------- >This SF.net email is sponsored by: IT Product Guide on ITManagersJournal >Use IT products in your business? Tell us what you think of them. Give us >Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more >http://productguide.itmanagersjournal.com/guidepromo.tmpl >_______________________________________________ >Iaxclient-devel mailing list >Iax...@li... >https://lists.sourceforge.net/lists/listinfo/iaxclient-devel > > > ------------------------------------------------------- This SF.net email is sponsored by: IT Product Guide on ITManagersJournal Use IT products in your business? Tell us what you think of them. Give us Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more http://productguide.itmanagersjournal.com/guidepromo.tmpl _______________________________________________ Iaxclient-devel mailing list Iax...@li... https://lists.sourceforge.net/lists/listinfo/iaxclient-devel ------------------------------------------------------- This SF.net email is sponsored by: IT Product Guide on ITManagersJournal Use IT products in your business? Tell us what you think of them. Give us Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more http://productguide.itmanagersjournal.com/guidepromo.tmpl _______________________________________________ Iaxclient-devel mailing list Iax...@li... https://lists.sourceforge.net/lists/listinfo/iaxclient-devel |
From: Richard P. <ric...@co...> - 2004-10-13 16:04:21
|
I wasn't sure about what the sample variable does. I found that I got more distortion when I played around with it so I figured that it could also reduce the distortion if it was set up differently. I was probably way off base with that... I get the distortion on both gsm and ulaw if I set them in IAX using iaxc_set_encode_format Cheers Richard -----Original Message----- From: iax...@li... [mailto:iax...@li...]On Behalf Of Steve Kann Sent: 13 October 2004 16:01 To: ric...@co...; IMB Recipient 1 Cc: iaxclient-list Subject: Re: [Iaxclient-devel] codecs. Richard Pettitt wrote: >Hi Steve > >I used the latest library from the cvs to create a ulaw version of iaxcomm. > >The audio sent from iaxcomm came out all distorted on the other side. Does >this have something to do with the sample variable of the packet not being >set correctly? > >I don't really know much about codecs and would appreciate any help you >could give. > > So, I've done just a very limited amount of testing so far with this new code: 1) Did a test from my mac to PSTN via nufone and uLaw: worked fine. 2) Did a test from my linux PC to PSTN via local asterisk and GSM: worked fine. So, there certainly might be issues that I'm not seeing here. "sample variable of the packet not being set correctly?" Do you mean the samples item in IAX2? I didn't know it was set wrong? Did you see this in ethereal? -SteveK >Thanks, > Richard > >-----Original Message----- >From: iax...@li... >[mailto:iax...@li...]On Behalf Of Steve Kann >Sent: 13 October 2004 04:39 >To: Iaxclientlist >Subject: [Iaxclient-devel] codecs. > > >I've finally done the codec thing. > >Adding other 20ms codecs should now be pretty trivial (actually, the >whole thing was pretty easy). > >ulaw has been added, and gsm still works. > >speex will probably come later this week. > >I need to add some flexibility in setting allowed and preferred codecs. > Right now, your application must choose just one. > > > >-SteveK > > > >------------------------------------------------------- >This SF.net email is sponsored by: IT Product Guide on ITManagersJournal >Use IT products in your business? Tell us what you think of them. Give us >Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more >http://productguide.itmanagersjournal.com/guidepromo.tmpl >_______________________________________________ >Iaxclient-devel mailing list >Iax...@li... >https://lists.sourceforge.net/lists/listinfo/iaxclient-devel > > > >------------------------------------------------------- >This SF.net email is sponsored by: IT Product Guide on ITManagersJournal >Use IT products in your business? Tell us what you think of them. Give us >Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more >http://productguide.itmanagersjournal.com/guidepromo.tmpl >_______________________________________________ >Iaxclient-devel mailing list >Iax...@li... >https://lists.sourceforge.net/lists/listinfo/iaxclient-devel > > > ------------------------------------------------------- This SF.net email is sponsored by: IT Product Guide on ITManagersJournal Use IT products in your business? Tell us what you think of them. Give us Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more http://productguide.itmanagersjournal.com/guidepromo.tmpl _______________________________________________ Iaxclient-devel mailing list Iax...@li... https://lists.sourceforge.net/lists/listinfo/iaxclient-devel |
From: Steve K. <st...@st...> - 2004-10-13 14:48:06
|
Richard Pettitt wrote: >Hi Steve > >I used the latest library from the cvs to create a ulaw version of iaxcomm. > >The audio sent from iaxcomm came out all distorted on the other side. Does >this have something to do with the sample variable of the packet not being >set correctly? > >I don't really know much about codecs and would appreciate any help you >could give. > > So, I've done just a very limited amount of testing so far with this new code: 1) Did a test from my mac to PSTN via nufone and uLaw: worked fine. 2) Did a test from my linux PC to PSTN via local asterisk and GSM: worked fine. So, there certainly might be issues that I'm not seeing here. "sample variable of the packet not being set correctly?" Do you mean the samples item in IAX2? I didn't know it was set wrong? Did you see this in ethereal? -SteveK >Thanks, > Richard > >-----Original Message----- >From: iax...@li... >[mailto:iax...@li...]On Behalf Of Steve Kann >Sent: 13 October 2004 04:39 >To: Iaxclientlist >Subject: [Iaxclient-devel] codecs. > > >I've finally done the codec thing. > >Adding other 20ms codecs should now be pretty trivial (actually, the >whole thing was pretty easy). > >ulaw has been added, and gsm still works. > >speex will probably come later this week. > >I need to add some flexibility in setting allowed and preferred codecs. > Right now, your application must choose just one. > > > >-SteveK > > > >------------------------------------------------------- >This SF.net email is sponsored by: IT Product Guide on ITManagersJournal >Use IT products in your business? Tell us what you think of them. Give us >Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more >http://productguide.itmanagersjournal.com/guidepromo.tmpl >_______________________________________________ >Iaxclient-devel mailing list >Iax...@li... >https://lists.sourceforge.net/lists/listinfo/iaxclient-devel > > > >------------------------------------------------------- >This SF.net email is sponsored by: IT Product Guide on ITManagersJournal >Use IT products in your business? Tell us what you think of them. Give us >Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more >http://productguide.itmanagersjournal.com/guidepromo.tmpl >_______________________________________________ >Iaxclient-devel mailing list >Iax...@li... >https://lists.sourceforge.net/lists/listinfo/iaxclient-devel > > > |
From: Richard P. <ric...@co...> - 2004-10-13 14:29:32
|
Hi Steve I used the latest library from the cvs to create a ulaw version of iaxcomm. The audio sent from iaxcomm came out all distorted on the other side. Does this have something to do with the sample variable of the packet not being set correctly? I don't really know much about codecs and would appreciate any help you could give. Thanks, Richard -----Original Message----- From: iax...@li... [mailto:iax...@li...]On Behalf Of Steve Kann Sent: 13 October 2004 04:39 To: Iaxclientlist Subject: [Iaxclient-devel] codecs. I've finally done the codec thing. Adding other 20ms codecs should now be pretty trivial (actually, the whole thing was pretty easy). ulaw has been added, and gsm still works. speex will probably come later this week. I need to add some flexibility in setting allowed and preferred codecs. Right now, your application must choose just one. -SteveK ------------------------------------------------------- This SF.net email is sponsored by: IT Product Guide on ITManagersJournal Use IT products in your business? Tell us what you think of them. Give us Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more http://productguide.itmanagersjournal.com/guidepromo.tmpl _______________________________________________ Iaxclient-devel mailing list Iax...@li... https://lists.sourceforge.net/lists/listinfo/iaxclient-devel |
From: Steve K. <st...@st...> - 2004-10-13 03:39:15
|
I've finally done the codec thing. Adding other 20ms codecs should now be pretty trivial (actually, the whole thing was pretty easy). ulaw has been added, and gsm still works. speex will probably come later this week. I need to add some flexibility in setting allowed and preferred codecs. Right now, your application must choose just one. -SteveK |
From: Geoff N. <ge...@gn...> - 2004-10-11 18:35:37
|
I would like to embed an IAX softphone into a web browser. I would like to use it for training. I would like to configure it so I can select what conference it is supposed to enter. I don't want it to be IE only. In the end I want it to be as seamless as possible for the end user. I would like it to work on Internet Explorer, and non-IE browsers. Has anyone done anything like this yet? If so, I would appreciate any input you may have. Thanks, Geoff |
From: daniel h. <dan...@to...> - 2004-10-11 08:33:02
|
Michael Van Donselaar a =E9crit : > [...] > >>In debian-unstable wxrc is provided by libwxgtk2.4-contrib-dev which=20 >>provide also /usr/lib/libwx_gtk_xrc-2.4.so >>So for me should be ok. >> =20 >> I confirm, this package provide wxrc >> <>[...] >> >> Also, to get compile pass on Debian, I had to modify makefile by >> commenting extralibs=3D/usr/local/lib/libwx_gtk_xrc-2.4.a and removing >> $(EXTRALIBS) from SYSLIBS > Here is my mistake. I shouldn't comment extralibs but instead adapt the=20 path to libwx_gtk_xrc-2.4a extralibs=3D/usr/lib/libwx_gtk_xrc-2.4.a and not modifying the SYSLIBS. Now it work. >> [...] >> >>>>Another point to put in README, is that libtiff4-dev should also be=20 >>>>installed. >>>> =20 >>>> Confirmed. I remove package and get ringer.cc:64: attention : `void Beep(int, int)' defined but not used g++ main.o prefs.o calls.o directory.o dial.o frame.o devices.o=20 xrc_res.o accounts.o ringer.o ../../lib/libiaxclient.a=20 /usr/lib/libwx_gtk_xrc-2.4.a -lpthread -lm `wx-config --static --libs`=20 -o iaxcomm /usr/bin/ld: ne peut trouver -ltiff collect2: ld a retourn=E9 1 code d'=E9tat d'ex=E9cution make: *** [iaxcomm] Erreur 1 dh@nomade:~/Mes_documents/Informatique/src/iaxclient/simpleclient/iaxcomm= $ =20 > >iaxComm isn't doing anything that would explicitly call libtiff. I wond= er if >there might be unresolved dependencies in the debian prebuilt wx library. > =20 > Now we know ;-) > =20 > > [...] > >What happens when you compile $WXWIN/contrib/samples/xrc ? > =20 > This I don't understand: $WXWIN is not the path under windows? I didn't=20 find any contrib/samples/xrc file in my system. What do you mesn than?=20 Perhaps it's more an RH related file... So now as I get it work, I will try the Mikael sources to create some=20 .deb files Also, I started a french translation based on rc directory as=20 you explained me some times ago. Rules are still the same? Thanks for help --=20 Daniel Huhardeaux ______ _____ _____ ______ ______ __ enum +48 32 285 5276 /_ _// _ // _ //_ _// __ // / IAX FWD +1 7009 422493 / / / // // // / / / / /_/ // / sip:102 h323:121 @voip./_/ /____//____/ /_/ /_/ /_//_/.com |
From: Mikael M. <mik...@tj...> - 2004-10-09 17:37:01
|
Hi, daniel huhardeaux wrote: > Hi everybody, > > I'm trying to compile the today CVS tarball on my Debian SID and face a > problem with iaxComm. This are logs I receive: > ... > > Also, to get compile pass on Debian, I had to modify makefile by > commenting extralibs=/usr/local/lib/libwx_gtk_xrc-2.4.a and removing > $(EXTRALIBS) from SYSLIBS > > Another point to put in README, is that libtiff4-dev should also be > installed. > > Thanks for any hint concerning my compilation problem. > I have made a Debian source package (iaxclient) that you can try. It's available from mentors.debian.net and depends on the following packages: libiax2-dev, libgsm1-dev, libportaudio-dev, libspeex-dev (>= 1.1.3-1), libwxgtk2.4-dev, libgtk1.2-dev, libwxgtk2.4-contrib-dev (>= 2.4.2.5), libtool, autotools-dev libiax2-dev and libportaudio-dev are debianized by me, libspeex-dev (>= 1.1.3-1) is available in Debian unstable and the rest in Debian testing/unstable. You can download my source packages from mentors: http://mentors.debian.net/debian/pool/main/i/iax2/ http://mentors.debian.net/debian/pool/main/i/iaxclient/ http://mentors.debian.net/debian/pool/main/p/portaudio/ Regards, Mikael Magnusson |
From: daniel h. <de...@to...> - 2004-10-09 17:13:34
|
Steve Kann a =E9crit : > > On Oct 9, 2004, at 10:21 AM, daniel huhardeaux wrote: > >> [...] >> >> Also, to get compile pass on Debian, I had to modify makefile by=20 >> commenting extralibs=3D/usr/local/lib/libwx_gtk_xrc-2.4.a and removing= =20 >> $(EXTRALIBS) from SYSLIBS >> > > That was the real problem; instead of removing the library from the=20 > makefile, you need to install the xrc library. > > Michael used xrc to build iaxcomm; xrc is the xml-based UI description=20 > libary, which will be std in wx-2.6. See my previous mail: /usr/lib/libwx_gtk_xrc-2.4.so is installed and=20 xrc_res.cc was compiled. Should it be something else?=20 |
From: daniel h. <de...@to...> - 2004-10-09 17:13:25
|
Michael Van Donselaar a =E9crit : > <>On Sat, 09 Oct 2004 16:21:13 +0200, daniel huhardeaux=20 > <de...@to...> wrote: > > [...] > accounts.o(.text+0x17e3):/home/dh/src/iaxclient/simpleclient/iaxcomm/ac= counts.cc:127:=20 > > more undefined references to `wxXmlResource::GetXRCID(char const*)' fol= low > collect2: ld a retourn=E9 1 code d'=E9tat d'ex=E9cution > make: *** [iaxcomm] Erreur 1 > dh@nomade:~/src/iaxclient/simpleclient/iaxcomm$ > > >Do you have the xrc contribs to wxWindows compiled? ISTR that I got the= same >types of errors when I first compiled on my RedHat system and had forgot= ten to >do that. > > =20 > In debian-unstable wxrc is provided by libwxgtk2.4-contrib-dev which provide also /usr/lib/libwx_gtk_xrc-2.4.so So for me should be ok. >>I checked and found a wxXmlResource.py in wxpython sample directory. Is= =20 >>this one which is missing? If yes, where to copy it? I tried to put a=20 >>copy in iaxcomm dir but no luck. >> >>Also, to get compile pass on Debian, I had to modify makefile by=20 >>commenting extralibs=3D/usr/local/lib/libwx_gtk_xrc-2.4.a and removing=20 >>$(EXTRALIBS) from SYSLIBS >> =20 >> > >I may not have put that in the Makefile correctly, but you *will* need t= o link >against the xrc library. All of the resources are loaded dynamically vi= a the >xrc system. > =20 > See above. Removing this line make the above library used by ld. And so went xrc_res.cc compiling. > =20 > >>Another point to put in README, is that libtiff4-dev should also be=20 >>installed. >> =20 >> > >I don't think I have it installed on my RedHat system. Might be a diffe= rence >bewteen your wxWidgets installation and mine. > =20 > Not installed ld complain about ltiff missing >>Thanks for any hint concerning my compilation problem. >> =20 >> > >Hope it goes well for you. I'll be happy to help, but will be offline m= ost of >this weekend. > =20 > Nice WE than ;-) |