decoder/wavpack: don't use the nonstandard "uchar" type
Use the signed C99 type int8_t instead.
This commit is contained in:
parent
5a354a1ed4
commit
8f7bc70bf5
@ -72,7 +72,7 @@ format_samples_int(int bytes_per_sample, void *buffer, uint32_t count)
|
|||||||
|
|
||||||
switch (bytes_per_sample) {
|
switch (bytes_per_sample) {
|
||||||
case 1: {
|
case 1: {
|
||||||
uchar *dst = buffer;
|
int8_t *dst = buffer;
|
||||||
/*
|
/*
|
||||||
* The asserts like the following one are because we do the
|
* The asserts like the following one are because we do the
|
||||||
* formatting of samples within a single buffer. The size
|
* formatting of samples within a single buffer. The size
|
||||||
|
Loading…
Reference in New Issue
Block a user