G729 Codec for Linphone Android

I compiled and built the bcg729 codec to implement linphone android. How to enable and use it? I have g729 fees. When I launch my last application, I do not see it turned on.

+1
source share
1 answer
PayloadType[] defauldCodecs = linphoneCore.getAudioCodecs();PayloadType payloadType = inphoneCore.findPayloadType("G729");if (payloadType != null) {linphoneCore.enablePayloadType(payloadType, true);PayloadType[] codecs = new PayloadType[]{payloadType}; linphoneCore.setAudioCodecs(codecs); } 
0
source

All Articles