Codecs

Hi,

what types of codecs supports SIP phone plugin ?? and where is the opcion to configure this codecs??

regards

ulaw,gsm,g723

Where can i change this option to manage this codecs?

thanks!!

Hi,

I use asterisk (pbx) for managing the codecs.

e.g.

You can add the follow lines to the asterisk configuration (sip.conf)

disallow=all

allow=gsm,ulaw,g723

if you will only use gsm then use the follow lines

disallow=all

allow=gsm

ok,

I thin that i could change this parameters in the spark

regards

At this time you can change this only in the source code.

In my opinion it should be this file :

spark/src/plugins/sip/src/java/net/java/sipmack/media/JmfMediaManager.java

/**^M

  • Setup API supported AudioFormats^M

*/^M

private void setupAudioFormats() {^M

audioFormats.add(new AudioFormat(AudioFormat.GSM_RTP));^M

audioFormats.add(new AudioFormat(AudioFormat.G723_RTP));^M

audioFormats.add(new AudioFormat(AudioFormat.ULAW_RTP));^M

}^M