summaryrefslogtreecommitdiff
path: root/apps/codecs/libtremor/os_types.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/libtremor/os_types.h')
-rw-r--r--apps/codecs/libtremor/os_types.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/apps/codecs/libtremor/os_types.h b/apps/codecs/libtremor/os_types.h
index 337c055d54..b5bd0b713a 100644
--- a/apps/codecs/libtremor/os_types.h
+++ b/apps/codecs/libtremor/os_types.h
@@ -19,6 +19,7 @@
19#ifndef _OS_TYPES_H 19#ifndef _OS_TYPES_H
20#define _OS_TYPES_H 20#define _OS_TYPES_H
21 21
22#include <stdint.h>
22#include <stdlib.h> 23#include <stdlib.h>
23#include <codecs.h> 24#include <codecs.h>
24 25
@@ -49,9 +50,9 @@ void ogg_free(void *ptr);
49void iram_malloc_init(void); 50void iram_malloc_init(void);
50void *iram_malloc(size_t size); 51void *iram_malloc(size_t size);
51 52
52 typedef short ogg_int16_t; 53 typedef int16_t ogg_int16_t;
53 typedef int ogg_int32_t; 54 typedef int32_t ogg_int32_t;
54 typedef unsigned int ogg_uint32_t; 55 typedef uint32_t ogg_uint32_t;
55 typedef long long ogg_int64_t; 56 typedef int64_t ogg_int64_t;
56 57
57#endif /* _OS_TYPES_H */ 58#endif /* _OS_TYPES_H */