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
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