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:
Jens Arnold 2008-10-03 15:54:34 +00:00
parent 27c7977068
commit 5d29f5188f

View file

@ -2,7 +2,7 @@
libdemac - A Monkey's Audio decoder
$Id:$
$Id$
Copyright (C) Dave Chapman 2007
@ -97,7 +97,7 @@ struct rangecoder_t
unsigned int buffer; /* buffer for input/output */
};
static struct rangecoder_t rc;
static struct rangecoder_t rc IBSS_ATTR;
/* Start the decoder */
static inline void range_start_decoding(void)