From 7a9631d82b27cf46c0a7911ae6a643ae2b33035f Mon Sep 17 00:00:00 2001 From: fduncanh Date: Wed, 27 Apr 2022 13:18:32 -0400 Subject: [PATCH] cosmetic (typo in comment) --- lib/raop_rtp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/raop_rtp.c b/lib/raop_rtp.c index b711959..cadace8 100644 --- a/lib/raop_rtp.c +++ b/lib/raop_rtp.c @@ -455,7 +455,7 @@ raop_rtp_thread_udp(void *arg) uint32_t sync_rtp = byteutils_get_int_be(packet, 4); uint64_t sync_ntp_raw = byteutils_get_long_be(packet, 8); uint32_t next_rtp = byteutils_get_int_be(packet, 16); - // next_rtp = sync_rtp + 7497 = 441 * 17 (0.17 sec) for AAC_EL + // next_rtp = sync_rtp + 7497 = 441 * 17 (0.17 sec) for AAC-ELD // next_rtp = sync_rtp + 77175 = 441 * 175 (1.75 sec) for ALAC /* subtract 44100/4 from sync_rtp */ sync_rtp -= 11025;