Commit 0a218ee5 authored by Max Kellermann's avatar Max Kellermann

encoder/wave: support packed 24 bit samples

Convert to padded 24 bit samples, instead of falling back to 16 bit.
parent 74beefca
......@@ -3,6 +3,7 @@ ver 0.16.6 (2010/??/??)
- fix assertion failure when resuming streams
* encoder:
- flac, null, wave: fix buffer corruption bug
- wave: support packed 24 bit samples
* event_pipe: fix WIN32 regression
* define WINVER in ./configure
* WIN32: autodetect filesystem encoding
......
......@@ -122,6 +122,11 @@ wave_encoder_open(struct encoder *_encoder,
encoder->bits = 16;
break;
case SAMPLE_FORMAT_S24:
audio_format->format = SAMPLE_FORMAT_S24_P32;
encoder->bits = 24;
break;
case SAMPLE_FORMAT_S24_P32:
encoder->bits = 24;
break;
......
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