skin tags: fix the id3 track/disc numbers in conditionals
[maemo-rb.git] / apps / rbcodecplatform.h
blobd644b7c47ac761f93f836534dd623da6d1cad78a
1 #ifndef RBCODECPLATFORM_H_INCLUDED
2 #define RBCODECPLATFORM_H_INCLUDED
3 #if 0
4 /* assert */
5 #include <assert.h>
7 /* isdigit, islower, isprint, isspace, toupper */
8 #include <ctype.h>
10 /* {UCHAR,USHRT,UINT,ULONG,SCHAR,SHRT,INT,LONG}_{MIN,MAX} */
11 #include <limits.h>
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"
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"
27 /* logf */
28 #include "logf.h"
30 /* clip_sample_16 */
31 #include "dsp-util.h"
32 #define HAVE_CLIP_SAMPLE_16
33 #endif
35 bool tdspeed_alloc_buffers(int32_t **buffers, const int *buf_s, int nbuf);
36 void tdspeed_free_buffers(int32_t **buffers, int nbuf);
38 #endif