Skip to content

Commit

Permalink
rtpstat cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
alfredh committed Sep 28, 2019
1 parent d4d698c commit bd50da3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/core.h
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,6 @@ struct audio;

int audio_send_digit(struct audio *a, char key);
void audio_sdp_attr_decode(struct audio *a);
int audio_print_rtpstat(struct re_printf *pf, const struct audio *au);


/*
Expand Down
4 changes: 2 additions & 2 deletions src/rtpstat.c
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ int rtpstat_print(struct re_printf *pf, const struct call *call)
"JI=%.1f,%.1f;" /* Jitter RX, TX in timestamp units */
"IP=%J,%J" /* Local, Remote IPs */
,
call_setup_duration(s->call) * 1000,
call_duration(s->call),
call_setup_duration(call) * 1000,
call_duration(call),

s->metric_rx.n_packets,
s->metric_tx.n_packets,
Expand Down

0 comments on commit bd50da3

Please sign in to comment.