Commit ca2633bf authored by Max Kellermann's avatar Max Kellermann

pcm/Dsd2Pcm: remove unused function dsd2pcm_clone()

parent e0784cd4
......@@ -175,17 +175,6 @@ dsd2pcm_destroy(dsd2pcm_ctx *ptr) noexcept
free(ptr);
}
dsd2pcm_ctx *
dsd2pcm_clone(dsd2pcm_ctx *ptr) noexcept
{
dsd2pcm_ctx* p2;
p2 = (dsd2pcm_ctx*) malloc(sizeof(dsd2pcm_ctx));
if (p2) {
memcpy(p2,ptr,sizeof(dsd2pcm_ctx));
}
return p2;
}
void
dsd2pcm_reset(dsd2pcm_ctx *ptr) noexcept
{
......
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