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:
Tomasz Lauda 2019-06-03 13:15:44 +02:00 committed by Tomasz Lauda
parent 10495481c9
commit 67e954668e
1 changed files with 2 additions and 0 deletions

View File

@ -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