Ignore:
Timestamp:
Oct 14, 2011 4:15:15 AM (13 years ago)
Author:
bennylp
Message:

Committing re #1388: Support for OpenCORE AMR-NB codec (thank you Dan Arrhenius for the contribution!)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/1.x/pjsip-apps/src/samples/streamutil.c

    r3553 r3816  
    123123#if defined(PJMEDIA_HAS_G722_CODEC) && PJMEDIA_HAS_G722_CODEC!=0 
    124124    status = pjmedia_codec_g722_init(med_endpt); 
     125    PJ_ASSERT_RETURN(status == PJ_SUCCESS, status); 
     126#endif 
     127 
     128#if defined(PJMEDIA_HAS_OPENCORE_AMRNB_CODEC) && PJMEDIA_HAS_OPENCORE_AMRNB_CODEC!=0 
     129    status = pjmedia_codec_opencore_amrnb_init(med_endpt); 
    125130    PJ_ASSERT_RETURN(status == PJ_SUCCESS, status); 
    126131#endif 
Note: See TracChangeset for help on using the changeset viewer.