From fcacc4e51fa0008d1e97628c59820d1f1ea33f57 Mon Sep 17 00:00:00 2001 From: Mike Brady <4265913+mikebrady@users.noreply.github.com> Date: Mon, 22 Dec 2025 17:55:26 +0000 Subject: [PATCH] Update a couple of comments. --- player.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/player.c b/player.c index 9d9f14cd..b38183eb 100644 --- a/player.c +++ b/player.c @@ -1584,7 +1584,7 @@ uint32_t player_put_packet(uint32_t ssrc, seq_t seqno, uint32_t actual_timestamp // } else { if (len <= 8) { debug(1, - "Using the FFMPEG ALAC_44100_S16_2 decoder, a short audio packet %u, rtptime %u, of length %u has been decoded. Contents follow:", seqno, + "Using the FFMPEG ALAC_44100_S16_2 decoder, a short audio packet %u, rtptime %u, of length %u has been decoded but not discarded. Contents follow:", seqno, actual_timestamp, len); debug_print_buffer(1, data, len); // abuf->length = conn->frames_per_packet; @@ -1636,7 +1636,7 @@ uint32_t player_put_packet(uint32_t ssrc, seq_t seqno, uint32_t actual_timestamp //} else { if (len <= 8) { debug(1, - "Using an FFMPEG decoder, a short audio packet %u, rtptime %u, of length %u has been decoded. Contents follow:", seqno, + "Using an FFMPEG decoder, a short audio packet %u, rtptime %u, of length %u has been decoded but not discarded. Contents follow:", seqno, actual_timestamp, len); debug_print_buffer(1, data, len); // abuf->length = 0; -- 2.47.3