Commit 880e31b5 authored by Stefan Westerfeld's avatar Stefan Westerfeld

Support 32-bit output pipe wav.

Signed-off-by: Stefan Westerfeld's avatarStefan Westerfeld <stefan@space.twc.de>
parent da945f77
......@@ -75,7 +75,7 @@ StdoutWavOutputStream::open (int n_channels, int sample_rate, int bit_depth, siz
{
assert (m_state == State::NEW);
if (bit_depth != 16 && bit_depth != 24)
if (bit_depth != 16 && bit_depth != 24 && bit_depth != 32)
{
return Error ("StdoutWavOutputStream::open: unsupported bit depth");
}
......
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