How To Install G729 Codec In Freeswitch
I am developing Softphone dialer applications for android, iOS etc with PJSIP. I need to know how to integrate G.729 Codec with the project. I've seen articles related to building G.729 Codec using Intel IPP in PJSIP Website itself. But when I contacted Intel Support Team, they told me that it was only supported in older versions of IPP. Now they are not supporting arm processors and G.729 Codec is also not coming along with the sample project.

G729 Codec
Is there any other way to integrate the codec with PJSIP project. Thanks in advance. First you need to download g729 patch from pjsip-android-builder library Download pjsip, unzip it; put g729patch folder and pjsip folder into one folder. In g729patch open in editor install.sh and edit the line 5 (put the correct name of your folder with pjsip), for me it was: PJPROJECTBASEFOLDER='./pjproject-2.7.2' In terminal cd to g729patch directory and run./install.sh (you need autoconf utility to be installed for that); patch can be applied manually as well, see instructions in readme. Create file configsite.h with the following content: #define PJCONFIGANDROID 1 #define PJMEDIAHASG729CODEC 1 #define PJMEDIAHASG7221CODEC 1 #include for me it was for android but can be for other platform so 1st line can vary, also other options can be added. Put this file to /pjlib/include/pj.
How to use codec g729 on freeswitch? Hi guys, i am going to make call using codec g729, because the carrier support only codec g729 is it possible to get free that? In freeswitch implement only g729.
Freeswitch Download
Cd to your pjsip directory and run:./configure-android -enable-g729-codec for me it was android so i ran./configure-android but may be other. On this step any other configure flags can be applied, for example for me it was NDKTOOLCHAINVERSION=4.9 TARGETABI=armeabi-v7a./configure-android -use-ndk-cflags -enable-g729-codec then run: make dep && make clean && make That's it - pjsip is compiled with g729 codec.