Commit 8f7bc70b authored by Max Kellermann's avatar Max Kellermann

decoder/wavpack: don't use the nonstandard "uchar" type

Use the signed C99 type int8_t instead.
parent 5a354a1e
......@@ -72,7 +72,7 @@ format_samples_int(int bytes_per_sample, void *buffer, uint32_t count)
switch (bytes_per_sample) {
case 1: {
uchar *dst = buffer;
int8_t *dst = buffer;
/*
* The asserts like the following one are because we do the
* formatting of samples within a single buffer. The size
......
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