AudioCompress: include stdint.h for int16_t definition.
In mingw32, int16_t is not defined by sys/types.h, but it is by stdint.h, and it is in the int16_t man page as being defined in stdint.h. Thanks to mithi for help debugging.
This commit is contained in:
parent
8341daca4a
commit
bead892e21
@ -8,7 +8,7 @@
|
|||||||
#ifndef COMPRESS_H
|
#ifndef COMPRESS_H
|
||||||
#define COMPRESS_H
|
#define COMPRESS_H
|
||||||
|
|
||||||
#include <sys/types.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
//! Configuration values for the compressor object
|
//! Configuration values for the compressor object
|
||||||
struct CompressorConfig {
|
struct CompressorConfig {
|
||||||
|
Loading…
Reference in New Issue
Block a user