mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-29 00:36:22 -04:00
Fix a warning in the sim
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15185 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
9a1a2fd686
commit
25ff558854
1 changed files with 5 additions and 2 deletions
|
|
@ -1484,11 +1484,14 @@ audio_thread_quit:
|
||||||
|
|
||||||
/* End of libmad stuff */
|
/* End of libmad stuff */
|
||||||
|
|
||||||
/* The audio stack is stolen from the core codec thread */
|
/* The audio stack is stolen from the core codec thread (but not in uisim) */
|
||||||
#define AUDIO_STACKSIZE (9*1024)
|
#define AUDIO_STACKSIZE (9*1024)
|
||||||
static uint32_t codec_stack_copy[AUDIO_STACKSIZE / sizeof(uint32_t)];
|
|
||||||
uint32_t* audio_stack;
|
uint32_t* audio_stack;
|
||||||
|
|
||||||
|
#ifndef SIMULATOR
|
||||||
|
static uint32_t codec_stack_copy[AUDIO_STACKSIZE / sizeof(uint32_t)];
|
||||||
|
#endif
|
||||||
|
|
||||||
/* TODO: Check if 4KB is appropriate - it works for my test streams,
|
/* TODO: Check if 4KB is appropriate - it works for my test streams,
|
||||||
so maybe we can reduce it. */
|
so maybe we can reduce it. */
|
||||||
#define VIDEO_STACKSIZE (4*1024)
|
#define VIDEO_STACKSIZE (4*1024)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue