From b1512201ab59aca4a1197c793b643f363fceb5ad Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sat, 22 Apr 2017 09:51:50 +0200 Subject: [PATCH] pcm/PcmPack: remove obsolete code comment --- src/pcm/PcmPack.cxx | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/pcm/PcmPack.cxx b/src/pcm/PcmPack.cxx index 4da6c950f..f368d3059 100644 --- a/src/pcm/PcmPack.cxx +++ b/src/pcm/PcmPack.cxx @@ -89,9 +89,6 @@ ReadS24(const uint8_t *src) void pcm_unpack_24(int32_t *dest, const uint8_t *src, const uint8_t *src_end) { - /* duplicate loop to help the compiler's optimizer (constant - parameter to the unpack_sample() inline function) */ - while (src < src_end) { *dest++ = ReadS24(src); src += 3;