Patch #1038325 by Markus Braun, prevents WPS from setting the volume higher than 100
[kugel-rb.git] / firmware / buffer.c
blobc3afb5cc4b38e761f529ad4f7457ae058b567ebb
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2002 by Linus Nielsen Feltzing
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.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
19 #include <stdio.h>
20 #include "buffer.h"
22 #ifdef SIMULATOR
23 unsigned char mp3buffer[0x200000];
24 unsigned char *mp3end = mp3buffer + sizeof(mp3buffer);
25 #else
26 /* defined in linker script */
27 extern unsigned char mp3buffer[];
28 #endif
30 unsigned char *mp3buf;
32 void buffer_init(void)
34 mp3buf = mp3buffer;
37 void *buffer_alloc(size_t size)
39 void *retval = mp3buf;
41 mp3buf += size;
42 return retval;