Change to 0.26.0 liboRTP API

master
Mark Hills 2018-01-23 16:18:46 +00:00
parent 14927fbaa9
commit f35eb4efe2
2 changed files with 2 additions and 2 deletions

2
rx.c
View File

@ -32,7 +32,7 @@
static unsigned int verbose = DEFAULT_VERBOSE;
static void timestamp_jump(RtpSession *session, ...)
static void timestamp_jump(RtpSession *session, void *a, void *b, void *c)
{
if (verbose > 1)
fputc('|', stderr);

2
tx.c
View File

@ -240,7 +240,7 @@ int main(int argc, char *argv[])
ortp_init();
ortp_scheduler_init();
ortp_set_log_level_mask(ORTP_WARNING|ORTP_ERROR);
ortp_set_log_level_mask(NULL, ORTP_WARNING|ORTP_ERROR);
session = create_rtp_send(addr, port);
assert(session != NULL);