mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-19 01:52:35 -05:00
Put the rangecoder struct into IRAM for a nice speedup on coldfire.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18699 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
27c7977068
commit
5d29f5188f
1 changed files with 2 additions and 2 deletions
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
libdemac - A Monkey's Audio decoder
|
libdemac - A Monkey's Audio decoder
|
||||||
|
|
||||||
$Id:$
|
$Id$
|
||||||
|
|
||||||
Copyright (C) Dave Chapman 2007
|
Copyright (C) Dave Chapman 2007
|
||||||
|
|
||||||
|
|
@ -97,7 +97,7 @@ struct rangecoder_t
|
||||||
unsigned int buffer; /* buffer for input/output */
|
unsigned int buffer; /* buffer for input/output */
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct rangecoder_t rc;
|
static struct rangecoder_t rc IBSS_ATTR;
|
||||||
|
|
||||||
/* Start the decoder */
|
/* Start the decoder */
|
||||||
static inline void range_start_decoding(void)
|
static inline void range_start_decoding(void)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue