From 6a0c7db50ae5fbae297bcebd6aff87ad375589c2 Mon Sep 17 00:00:00 2001 From: ejurgensen Date: Tue, 11 Jan 2022 20:10:54 +0100 Subject: [PATCH] [airplay] Disable unused ntp_to_timestamp() --- src/outputs/airplay.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/outputs/airplay.c b/src/outputs/airplay.c index 2ebeed57..f9ac36e9 100644 --- a/src/outputs/airplay.c +++ b/src/outputs/airplay.c @@ -490,24 +490,26 @@ alac_encode(struct evbuffer *evbuf, struct encode_ctx *encode_ctx, uint8_t *rawb return len; } -/* AirTunes v2 time synchronization helpers */ +// AirTunes v2 time synchronization helpers static inline void timespec_to_ntp(struct timespec *ts, struct ntp_stamp *ns) { - /* Seconds since NTP Epoch (1900-01-01) */ + // Seconds since NTP Epoch (1900-01-01) ns->sec = ts->tv_sec + NTP_EPOCH_DELTA; ns->frac = (uint32_t)((double)ts->tv_nsec * 1e-9 * FRAC); } +/* static inline void ntp_to_timespec(struct ntp_stamp *ns, struct timespec *ts) { - /* Seconds since Unix Epoch (1970-01-01) */ + // Seconds since Unix Epoch (1970-01-01) ts->tv_sec = ns->sec - NTP_EPOCH_DELTA; ts->tv_nsec = (long)((double)ns->frac / (1e-9 * FRAC)); } +*/ static inline int timing_get_clock_ntp(struct ntp_stamp *ns)