Commit b1512201 authored by Max Kellermann's avatar Max Kellermann

pcm/PcmPack: remove obsolete code comment

parent 424e9cbc
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment