Ignore:
Timestamp:
Feb 15, 2006 12:24:23 PM (19 years ago)
Author:
bennylp
Message:

Created and updated PJMEDIA documentation

File:
1 edited

Legend:

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

    r65 r188  
    2222int rtp_test() 
    2323{ 
    24     pj_rtp_session rtp; 
     24    pjmedia_rtp_session rtp; 
    2525    FILE *fhnd = fopen("RTP.DAT", "wb"); 
    2626    const void *rtphdr; 
     
    3030        return -1; 
    3131 
    32     pj_rtp_session_init (&rtp, 4, 0x12345678); 
    33     pj_rtp_encode_rtp (&rtp, 4, 0, 0, 160, &rtphdr, &hdrlen); 
     32    pjmedia_rtp_session_init (&rtp, 4, 0x12345678); 
     33    pjmedia_rtp_encode_rtp (&rtp, 4, 0, 0, 160, &rtphdr, &hdrlen); 
    3434    fwrite (rtphdr, hdrlen, 1, fhnd); 
    3535    fclose(fhnd); 
Note: See TracChangeset for help on using the changeset viewer.