From 6d41f3626694d7f16b657e8b2f3abb2816b1f649 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Thu, 21 Aug 2014 13:09:14 +0200 Subject: decoder/dsf: use memcpy() --- src/decoder/plugins/DsfDecoderPlugin.cxx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src/decoder/plugins') diff --git a/src/decoder/plugins/DsfDecoderPlugin.cxx b/src/decoder/plugins/DsfDecoderPlugin.cxx index 585819f52..20102c43e 100644 --- a/src/decoder/plugins/DsfDecoderPlugin.cxx +++ b/src/decoder/plugins/DsfDecoderPlugin.cxx @@ -39,6 +39,8 @@ #include "tag/TagHandler.hxx" #include "Log.hxx" +#include + struct DsfMetaData { unsigned sample_rate, channels; bool bitreverse; @@ -208,10 +210,7 @@ dsf_to_pcm_order(uint8_t *dest, size_t nrbytes) j++; } - for (unsigned i = 0; i < (unsigned)nrbytes; i++) { - *dest = scratch[i]; - dest++; - } + memcpy(dest, scratch, nrbytes); } /** -- cgit v1.2.3