encoder/wave: add constant WAVE_FORMAT_PCM

This commit is contained in:
Max Kellermann 2016-04-30 13:57:09 +02:00
parent 62221adf55
commit c9553411bb

View File

@ -27,6 +27,8 @@
#include <assert.h>
#include <string.h>
static constexpr uint16_t WAVE_FORMAT_PCM = 1;
struct WaveEncoder {
Encoder encoder;
unsigned bits;
@ -65,7 +67,7 @@ fill_wave_header(struct wave_header *header, int channels, int bits,
header->id_data = ToLE32(0x61746164);
/* wave format */
header->format = ToLE16(1); // PCM_FORMAT
header->format = ToLE16(WAVE_FORMAT_PCM);
header->channels = ToLE16(channels);
header->bits = ToLE16(bits);
header->freq = ToLE32(freq);