summaryrefslogtreecommitdiff
path: root/apps/codecs/codec.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/codec.h')
-rw-r--r--apps/codecs/codec.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/apps/codecs/codec.h b/apps/codecs/codec.h
new file mode 100644
index 0000000000..6bd1020e09
--- /dev/null
+++ b/apps/codecs/codec.h
@@ -0,0 +1,43 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2005 Jens Arnold
11 *
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
14 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
17 *
18 ****************************************************************************/
19
20/* Global declarations to be used in rockbox software codecs */
21
22#include <sys/types.h>
23
24/* Get these functions 'out of the way' of the standard functions. Not doing
25 * so confuses the cygwin linker, and maybe others. These functions need to
26 * be implemented elsewhere */
27#define malloc(x) codec_malloc(x)
28#define calloc(x,y) codec_calloc(x,y)
29#define alloca(x) codec_alloca(x)
30#define realloc(x,y) codec_realloc(x,y)
31#define free(x) codec_free(x)
32
33void* codec_malloc(size_t size);
34void* codec_calloc(size_t nmemb, size_t size);
35void* codec_alloca(size_t size);
36void* codec_realloc(void* ptr, size_t size);
37void codec_free(void* ptr);
38
39#define abs(x) ((x)>0?(x):-(x))
40#define labs(x) abs(x)
41
42void qsort(void *base, size_t nmemb, size_t size, int(*compar)(const void *, const void *));
43