2003-05-09 16:01:21 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 by Linus Nielsen Feltzing
|
|
|
|
*
|
2008-06-28 18:10:04 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2003-05-09 16:01:21 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "buffer.h"
|
|
|
|
|
2010-06-21 16:53:00 +00:00
|
|
|
#if (CONFIG_PLATFORM & PLATFORM_HOSTED)
|
2005-04-05 11:33:58 +00:00
|
|
|
unsigned char audiobuffer[(MEM*1024-256)*1024];
|
|
|
|
unsigned char *audiobufend = audiobuffer + sizeof(audiobuffer);
|
2003-05-09 16:01:21 +00:00
|
|
|
#else
|
|
|
|
/* defined in linker script */
|
2005-04-05 11:33:58 +00:00
|
|
|
extern unsigned char audiobuffer[];
|
2003-05-09 16:01:21 +00:00
|
|
|
#endif
|
|
|
|
|
2005-04-05 11:33:58 +00:00
|
|
|
unsigned char *audiobuf;
|
2003-05-09 16:01:21 +00:00
|
|
|
|
|
|
|
void buffer_init(void)
|
|
|
|
{
|
2006-08-01 09:43:14 +00:00
|
|
|
/* 32-bit aligned */
|
|
|
|
audiobuf = (void *)(((unsigned long)audiobuffer + 3) & ~3);
|
2003-05-09 16:01:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void *buffer_alloc(size_t size)
|
|
|
|
{
|
2005-04-05 11:33:58 +00:00
|
|
|
void *retval = audiobuf;
|
2003-05-09 16:01:21 +00:00
|
|
|
|
2005-04-05 11:33:58 +00:00
|
|
|
audiobuf += size;
|
2006-09-16 16:18:11 +00:00
|
|
|
/* 32-bit aligned */
|
2006-08-01 09:43:14 +00:00
|
|
|
audiobuf = (void *)(((unsigned long)audiobuf + 3) & ~3);
|
2006-09-16 16:18:11 +00:00
|
|
|
|
2003-05-09 16:01:21 +00:00
|
|
|
return retval;
|
|
|
|
}
|
2006-09-16 16:18:11 +00:00
|
|
|
|