Re: [pjsip] adding G729 support to pjsip1.0.3

AV
alex vishnev
Sun, Jan 31, 2010 12:07 AM

All,

thanks for everyone's participation. The problem was resolved by installing
initialization for G729 codec in pjsua_media.c file

#if PJMEDIA_HAS_G729_CODEC

 status = pjmedia_codec_*g729*_init( pjsua_var.med_endpt );
 if (status != PJ_SUCCESS) {
     pjsua_perror(THIS_FILE, "Error initializing *G729* codec",
                  status);
     return status;
 }

#endif  /* PJMEDIA_HAS_G729_CODEC */

You need to search where the same was done for G722 codec and insert the
block above.

Alex

All, thanks for everyone's participation. The problem was resolved by installing initialization for G729 codec in pjsua_media.c file > #if PJMEDIA_HAS_*G729*_CODEC > status = pjmedia_codec_*g729*_init( pjsua_var.med_endpt ); > if (status != PJ_SUCCESS) { > pjsua_perror(THIS_FILE, "Error initializing *G729* codec", > status); > return status; > } > #endif /* PJMEDIA_HAS_G729_CODEC */ You need to search where the same was done for G722 codec and insert the block above. Alex
RM
Re Mo
Thu, Feb 18, 2010 4:37 PM

Hi,

I have a similar problem when i try to add G729 to PSJIP on WINCE, are you
using WINCE or iPhone OS?

On Sun, Jan 31, 2010 at 2:07 AM, alex vishnev alex9134@gmail.com wrote:

All,

thanks for everyone's participation. The problem was resolved by installing
initialization for G729 codec in pjsua_media.c file

#if PJMEDIA_HAS_G729_CODEC

 status = pjmedia_codec_*g729*_init( pjsua_var.med_endpt );
 if (status != PJ_SUCCESS) {
     pjsua_perror(THIS_FILE, "Error initializing *G729* codec",
                  status);
     return status;
 }

#endif  /* PJMEDIA_HAS_G729_CODEC */

You need to search where the same was done for G722 codec and insert the
block above.

Alex


Visit our blog: http://blog.pjsip.org

pjsip mailing list
pjsip@lists.pjsip.org
http://lists.pjsip.org/mailman/listinfo/pjsip_lists.pjsip.org

Hi, I have a similar problem when i try to add G729 to PSJIP on WINCE, are you using WINCE or iPhone OS? On Sun, Jan 31, 2010 at 2:07 AM, alex vishnev <alex9134@gmail.com> wrote: > All, > > thanks for everyone's participation. The problem was resolved by installing > initialization for G729 codec in pjsua_media.c file > > > > #if PJMEDIA_HAS_*G729*_CODEC > > > status = pjmedia_codec_*g729*_init( pjsua_var.med_endpt ); > > > if (status != PJ_SUCCESS) { > > > pjsua_perror(THIS_FILE, "Error initializing *G729* codec", > > > status); > > > return status; > > > } > > > #endif /* PJMEDIA_HAS_G729_CODEC */ > > > You need to search where the same was done for G722 codec and insert the > block above. > > > Alex > > _______________________________________________ > Visit our blog: http://blog.pjsip.org > > pjsip mailing list > pjsip@lists.pjsip.org > http://lists.pjsip.org/mailman/listinfo/pjsip_lists.pjsip.org > >