Ignore:
Timestamp:
Mar 26, 2008 4:18:17 PM (16 years ago)
Author:
bennylp
Message:

Updated pjmedia_test with the latest jitter buffer API

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/src/test/test.c

    r974 r1895  
    3636void app_perror(pj_status_t status, const char *msg) 
    3737{ 
    38     char errbuf[PJMEDIA_ERR_MSG_SIZE]; 
     38    char errbuf[PJ_ERR_MSG_SIZE]; 
    3939     
    4040    pjmedia_strerror(status, errbuf, sizeof(errbuf)); 
     
    4545int test_main(void) 
    4646{ 
    47     int rc; 
     47    int rc = 0; 
    4848    pj_caching_pool caching_pool; 
    4949 
     
    5555    mem = &caching_pool.factory; 
    5656 
    57     DO_TEST(sdp_neg_test()); 
     57    //DO_TEST(sdp_neg_test()); 
    5858    //sdp_test (&caching_pool.factory); 
    5959    //rtp_test(&caching_pool.factory); 
    6060    //session_test (&caching_pool.factory); 
    61     //jbuf_main(&caching_pool.factory); 
     61    jbuf_main(); 
    6262 
    6363    PJ_LOG(3,(THIS_FILE," ")); 
    64  
    65 on_return: 
    6664 
    6765    if (rc != 0) { 
Note: See TracChangeset for help on using the changeset viewer.