From f35eb4efe288584453c22591149294ac462cab3d Mon Sep 17 00:00:00 2001 From: Mark Hills Date: Tue, 23 Jan 2018 16:18:46 +0000 Subject: [PATCH] Change to 0.26.0 liboRTP API --- rx.c | 2 +- tx.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rx.c b/rx.c index c5c3c10..62c205e 100644 --- a/rx.c +++ b/rx.c @@ -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); diff --git a/tx.c b/tx.c index 79151fa..42bb3bb 100644 --- a/tx.c +++ b/tx.c @@ -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);