summaryrefslogtreecommitdiff
path: root/staging/rcv_rtp.c
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2020-08-13 12:09:28 +0200
committerTobias Klauser <tobias.klauser@gmail.com>2020-08-19 13:16:51 +0200
commitbfa3c89317869ffe1e90b7e01e7cacad7a7ea10e (patch)
tree69a429ad9d42236b7b8db6258c76d64bf7575762 /staging/rcv_rtp.c
parentca09a6f34d70e3a8ea495a6b2b71cd6d598d5ffb (diff)
mausezahn: make needlessly global variables static
Move variables only used withing a single compilation unit from mz.h and make them static. This avoids "multiple definition of symbol" linker errors with gcc-10. Updates #216 Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Diffstat (limited to 'staging/rcv_rtp.c')
-rw-r--r--staging/rcv_rtp.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/staging/rcv_rtp.c b/staging/rcv_rtp.c
index 0a91155..f43b92c 100644
--- a/staging/rcv_rtp.c
+++ b/staging/rcv_rtp.c
@@ -39,6 +39,25 @@
#include "mz.h"
#include "mops.h"
+static enum rtp_display_mode {
+ BAR, NCURSES, TEXT
+} rtp_dm;
+
+static int32_t
+ time0,
+ jitter_rfc;
+
+static struct mz_timestamp
+ timeTX[TIME_COUNT_MAX],
+ timeRX[TIME_COUNT_MAX];
+
+static u_int32_t
+ drop, // packet drop count
+ dis, // packet disorder count
+ gtotal; // counts number of file write cycles (see "got_rtp_packet()")
+
+static char rtp_filter_str[64];
+
// Initialize the rcv_rtp process: Read user parameters and initialize globals
int rcv_rtp_init(void)
{