On Thu, Sep 13, 2007 at 12:20:38PM +0300, Vadym Kukhtin wrote:
> Good news!
> 
> How its average traffic consuming?

Good question :-) That depends on the used codec. I have hard coded to
use ulaw - that means about 60-80 kbit/s but compression. The Asterisk
conference rooms work internaly with ulaw, so there is no extra
compression on client and server side.

But there are other codecs available inside libiaxclient: 

#define IAXC_FORMAT_G723_1       (1 << 0)        /* G.723.1 compression */
#define IAXC_FORMAT_GSM          (1 << 1)        /* GSM compression */
#define IAXC_FORMAT_ULAW         (1 << 2)        /* Raw mu-law data (G.711) */
#define IAXC_FORMAT_ALAW         (1 << 3)        /* Raw A-law data (G.711) */
#define IAXC_FORMAT_G726         (1 << 4)        /* ADPCM, 32kbps  */
#define IAXC_FORMAT_ADPCM        (1 << 5)        /* ADPCM IMA */
#define IAXC_FORMAT_SLINEAR      (1 << 6)        /* Raw 16-bit Signed Linear 
(8000 Hz) PCM */
#define IAXC_FORMAT_LPC10        (1 << 7)        /* LPC10, 180 samples/frame */
#define IAXC_FORMAT_G729A        (1 << 8)        /* G.729a Audio */
#define IAXC_FORMAT_SPEEX        (1 << 9)        /* Speex Audio */
#define IAXC_FORMAT_ILBC         (1 << 10)       /* iLBC Audio */

Perhaps GSM is an alternative for ulaw. 

> Does it eat traff in a pauses?

You mean if there is a "silence compression"?
For ulaw: no.
For others: maybe - I think there are pages on wikipedia which are
describing how the codecs are working. Actually the server allows the
following:

allow=ulaw
allow=alaw
allow=gsm
allow=ilbc
allow=g726

> And is there tuner quality<->traffic, or choice codecs, etc?

Currently you have to choose the coder in src/fgcom.h. But it is no
problem to make a CLI option for this. 

> It's actually for me :(

You have a dial-in line?
If you have a low bandwith connection it would be very interesting if
it will work... Try the gsm codec.

Regards, Holger

-- 
#####  #### ##  ##   Holger Wirtz         Phone : (+49 30) 884299-40
##  ## ##   ### ##   DFN-Verein           Fax   : (+49 30) 884299-70
##  ## #### ######   Stresemannstr. 78    E-Mail: [EMAIL PROTECTED]
##  ## ##   ## ###   10963 Berlin
#####  ##   ##  ##   GERMANY              WWW   : http://www.dfn.de
GPG-Fingerprint: ABFA 1F51 DD8D 503C 85DC  0C51 E961 79E2 6685 9BCF

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel

Reply via email to