Commit 327cbf48 authored by Max Kellermann's avatar Max Kellermann

pcm/FallbackResampler: add missing ConstBuffer<T>::ToVoid() call

parent 0f1f509b
......@@ -112,7 +112,7 @@ pcm_resample_fallback_void(PcmBuffer &buffer,
{
const auto typed_src = ConstBuffer<T>::FromVoid(src);
return pcm_resample_fallback(buffer, channels, src_rate, typed_src,
dest_rate);
dest_rate).ToVoid();
}
ConstBuffer<void>
......
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