mirror of https://github.com/thesofproject/sof.git
format: add missing #include <stdint.h>
Adds missing stdint header, since we are using types defined in that file. Right now format.h compiles by accident. Signed-off-by: Tomasz Lauda <tomasz.lauda@linux.intel.com>
This commit is contained in:
parent
10495481c9
commit
67e954668e
|
@ -10,6 +10,8 @@
|
|||
#ifndef AUDIO_FORMAT_H
|
||||
#define AUDIO_FORMAT_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
/* Maximum and minimum values for 24 bit */
|
||||
#define INT24_MAXVALUE 8388607
|
||||
#define INT24_MINVALUE -8388608
|
||||
|
|
Loading…
Reference in New Issue