Sean Bartell | cadb362 | 2011-10-30 12:05:04 -0400 | [diff] [blame] | 1 | #ifndef RBCODECPLATFORM_H_INCLUDED |
| 2 | #define RBCODECPLATFORM_H_INCLUDED |
| 3 | #if 0 |
| 4 | /* assert */ |
| 5 | #include <assert.h> |
| 6 | |
| 7 | /* isdigit, islower, isprint, isspace, toupper */ |
| 8 | #include <ctype.h> |
| 9 | |
| 10 | /* {UCHAR,USHRT,UINT,ULONG,SCHAR,SHRT,INT,LONG}_{MIN,MAX} */ |
| 11 | #include <limits.h> |
| 12 | |
| 13 | /* memchr, memcmp, memcpy, memmove, memset, strcasecmp, strcat, strchr, strcmp, |
| 14 | * strcpy, strlen, strncmp, strrchr, strlcpy */ |
| 15 | #include <string.h> |
| 16 | #include "string-extra.h" |
| 17 | |
| 18 | /* snprintf */ |
| 19 | #include <stdio.h> |
| 20 | #endif |
| 21 | /* abs, atoi, labs, rand */ |
| 22 | #include <stdlib.h> |
| 23 | #if 0 |
| 24 | /* debugf */ |
| 25 | #include "debug.h" |
| 26 | |
| 27 | /* logf */ |
| 28 | #include "logf.h" |
| 29 | |
| 30 | /* clip_sample_16 */ |
| 31 | #include "dsp-util.h" |
| 32 | #define HAVE_CLIP_SAMPLE_16 |
| 33 | #endif |
Nils Wallménius | 3f61caa | 2012-05-06 12:22:09 +0200 | [diff] [blame] | 34 | |
| 35 | bool tdspeed_alloc_buffers(int32_t **buffers, const int *buf_s, int nbuf); |
| 36 | void tdspeed_free_buffers(int32_t **buffers, int nbuf); |
| 37 | |
Sean Bartell | cadb362 | 2011-10-30 12:05:04 -0400 | [diff] [blame] | 38 | #endif |
| 39 | |