summaryrefslogtreecommitdiff
path: root/rtp.h
diff options
context:
space:
mode:
authorMike Brady <mikebrady@eircom.net>2016-09-11 10:35:53 +0100
committerMike Brady <mikebrady@eircom.net>2016-09-11 10:35:53 +0100
commit064bd293c560d0706d9c1cdf97613174afd93419 (patch)
tree90a2f689669fcf9f4066ba71a48f2ecd785c0bb2 /rtp.h
parent6bf0a1d4834389b14021eeaf7d078f9b4bc8e032 (diff)
Tidy up with a clang-format
Diffstat (limited to 'rtp.h')
-rw-r--r--rtp.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/rtp.h b/rtp.h
index 195f673..f4c8ab0 100644
--- a/rtp.h
+++ b/rtp.h
@@ -5,21 +5,21 @@
#include "player.h"
-typedef struct inter_threads_record {
- uint32_t please_stop;
-} inter_threads_record;
+typedef struct inter_threads_record { uint32_t please_stop; } inter_threads_record;
void *rtp_audio_receiver(void *arg);
void *rtp_control_receiver(void *arg);
void *rtp_timing_receiver(void *arg);
-void rtp_setup(SOCKADDR *local, SOCKADDR *remote, int controlport, int timingport, uint32_t active_remote,
- int *local_server_port, int *local_control_port, int *local_timing_port);
+void rtp_setup(SOCKADDR *local, SOCKADDR *remote, int controlport, int timingport,
+ uint32_t active_remote, int *local_server_port, int *local_control_port,
+ int *local_timing_port);
void rtp_shutdown(void);
void rtp_request_resend(seq_t first, uint32_t count);
void rtp_request_client_pause(void); // ask the client to pause
-void get_reference_timestamp_stuff(int64_t *timestamp, uint64_t *timestamp_time, uint64_t *remote_timestamp_time);
+void get_reference_timestamp_stuff(int64_t *timestamp, uint64_t *timestamp_time,
+ uint64_t *remote_timestamp_time);
void clear_reference_timestamp(void);
uint64_t static local_to_remote_time_jitters;