blob: 702c6f32515e9e2e97d927a0a8fe5691fc8e87fa [file] [log] [blame]
/* $Id$
*
*/
#include <pjmedia/rtp.h>
#include <stdio.h>
int rtp_test()
{
pj_rtp_session rtp;
FILE *fhnd = fopen("RTP.DAT", "wb");
const void *rtphdr;
int hdrlen;
if (!fhnd)
return -1;
pj_rtp_session_init (&rtp, 4, 0x12345678);
pj_rtp_encode_rtp (&rtp, 4, 0, 0, 160, &rtphdr, &hdrlen);
fwrite (rtphdr, hdrlen, 1, fhnd);
fclose(fhnd);
return 0;
}