summaryrefslogtreecommitdiff
path: root/apps/plugins/lib
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2008-04-06 13:59:31 +0000
committerJens Arnold <amiconn@rockbox.org>2008-04-06 13:59:31 +0000
commitdf8749d6d7a52034b7b1872ee421c4c6012f8c0a (patch)
treeed2ae2c520cc391dcd30d9f0a2372373a21449e6 /apps/plugins/lib
parentcf6510567a5e5ebe2386b1348f72d387dee1f256 (diff)
downloadrockbox-df8749d6d7a52034b7b1872ee421c4c6012f8c0a.tar.gz
rockbox-df8749d6d7a52034b7b1872ee421c4c6012f8c0a.zip
Adapt the remaining plugins to put the greyscale isr on cop. Now they can be used while playing music without making the audio stutter. Needs the new SHAREDBSS_ATTR.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16987 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/lib')
-rw-r--r--apps/plugins/lib/grey.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/lib/grey.h b/apps/plugins/lib/grey.h
index 95dca6beb6..7bb8c5ff98 100644
--- a/apps/plugins/lib/grey.h
+++ b/apps/plugins/lib/grey.h
@@ -41,7 +41,7 @@
41/* Greyscale library management structure declaration. You need one of these 41/* Greyscale library management structure declaration. You need one of these
42 * in every plugin using the library, depending on whether the structure should 42 * in every plugin using the library, depending on whether the structure should
43 * use IRAM or not. */ 43 * use IRAM or not. */
44#define GREY_INFO_STRUCT struct _grey_info _grey_info; 44#define GREY_INFO_STRUCT struct _grey_info _grey_info SHAREDBSS_ATTR;
45#define GREY_INFO_STRUCT_IRAM struct _grey_info _grey_info IBSS_ATTR; 45#define GREY_INFO_STRUCT_IRAM struct _grey_info _grey_info IBSS_ATTR;
46 46
47/* Features you can request on library init (ORed together): */ 47/* Features you can request on library init (ORed together): */