diff options
| author | Andrew Mahone <andrew.mahone@gmail.com> | 2009-06-19 02:56:00 +0000 |
|---|---|---|
| committer | Andrew Mahone <andrew.mahone@gmail.com> | 2009-06-19 02:56:00 +0000 |
| commit | 6a0d931f383259b4b82fcfd1cc87700f53bbcb02 (patch) | |
| tree | 04960b8122f35101bb31603af084536f307e0ae1 /apps/plugins/lib/SOURCES | |
| parent | 4c58ad26ba462309f95790c32421130a73909f05 (diff) | |
| download | rockbox-6a0d931f383259b4b82fcfd1cc87700f53bbcb02.zip rockbox-6a0d931f383259b4b82fcfd1cc87700f53bbcb02.tar.gz rockbox-6a0d931f383259b4b82fcfd1cc87700f53bbcb02.tar.bz2 rockbox-6a0d931f383259b4b82fcfd1cc87700f53bbcb02.tar.xz | |
Core JPEG decoder improvements:
For >8-point vertical IDCT, transpose the coefficients while decoding them, so that the vertical IDCT can read in rows rather than columns. This improves speed a bit for this size even using the C IDCT.
Remove inline ARM asm, replacing it with an external file containing pure asm IDCT functions.
Add jpeg_ prefix to JPEG IDCT functions since some of them will now be visible globally.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21345 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/lib/SOURCES')
| -rw-r--r-- | apps/plugins/lib/SOURCES | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/plugins/lib/SOURCES b/apps/plugins/lib/SOURCES index 7211109..2ed38c4 100644 --- a/apps/plugins/lib/SOURCES +++ b/apps/plugins/lib/SOURCES @@ -27,6 +27,9 @@ playergfx.c profile_plugin.c #endif #ifdef HAVE_LCD_BITMAP +#ifdef CPU_ARM +pluginlib_jpeg_idct_arm.S +#endif pluginlib_jpeg_mem.c pluginlib_resize.c #ifndef HAVE_JPEG |