From a67fd8132a3c8a29ee9a3849fe89226bdee1a32d Mon Sep 17 00:00:00 2001 From: Martin Piatka Date: Mon, 13 Oct 2025 16:52:00 +0200 Subject: [PATCH] aplay/aes67: Fix incorrect write --- src/audio/playback/aes67.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/audio/playback/aes67.cpp b/src/audio/playback/aes67.cpp index a90ac5bd3..de36b4be4 100644 --- a/src/audio/playback/aes67.cpp +++ b/src/audio/playback/aes67.cpp @@ -339,7 +339,6 @@ static void rtp_worker(state_aes67_play *s){ change_bps2(dst, s->sap_sess.stream.bps, static_cast(src1), s->in_desc.bps, size1, true); frames_written += size1 / in_frame_size; - dst += frames_written * out_frame_size; if(size2){ int offset = (size1 / in_frame_size) * out_frame_size; change_bps2(dst + offset, s->sap_sess.stream.bps, static_cast(src2), s->in_desc.bps, size2, true);