diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2008-04-06 13:59:31 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2008-04-06 13:59:31 +0000 |
| commit | df8749d6d7a52034b7b1872ee421c4c6012f8c0a (patch) | |
| tree | ed2ae2c520cc391dcd30d9f0a2372373a21449e6 /apps/plugins/lib | |
| parent | cf6510567a5e5ebe2386b1348f72d387dee1f256 (diff) | |
| download | rockbox-df8749d6d7a52034b7b1872ee421c4c6012f8c0a.zip rockbox-df8749d6d7a52034b7b1872ee421c4c6012f8c0a.tar.gz rockbox-df8749d6d7a52034b7b1872ee421c4c6012f8c0a.tar.bz2 rockbox-df8749d6d7a52034b7b1872ee421c4c6012f8c0a.tar.xz | |
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.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/lib/grey.h b/apps/plugins/lib/grey.h index 95dca6b..7bb8c5f 100644 --- a/apps/plugins/lib/grey.h +++ b/apps/plugins/lib/grey.h @@ -41,7 +41,7 @@ /* Greyscale library management structure declaration. You need one of these * in every plugin using the library, depending on whether the structure should * use IRAM or not. */ -#define GREY_INFO_STRUCT struct _grey_info _grey_info; +#define GREY_INFO_STRUCT struct _grey_info _grey_info SHAREDBSS_ATTR; #define GREY_INFO_STRUCT_IRAM struct _grey_info _grey_info IBSS_ATTR; /* Features you can request on library init (ORed together): */ |