rockbox/apps/plugins/lib
Andrew Mahone 6a0d931f38 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
2009-06-19 02:56:00 +00:00
..
bmp_smooth_scale.c Added missing dependencies for codeclib and pluginlib. This required renaming some files that have twins in other places. 2009-01-12 21:56:46 +00:00
buflib.c Extend buflib to support shifting space out off the buffer for other use, and returning space to the buffer. 2009-05-16 00:45:08 +00:00
buflib.h Extend buflib to support shifting space out off the buffer for other use, and returning space to the buffer. 2009-05-16 00:45:08 +00:00
checkbox.c loader-initialized global plugin API: 2009-01-16 10:34:40 +00:00
checkbox.h loader-initialized global plugin API: 2009-01-16 10:34:40 +00:00
configfile.c Fix TYPE_BOOL settings format string. Boolean settings should really use 'on'/'off', but this is currently impossible due to the fixed field width requirement introduced in r15052. 2009-01-18 17:06:29 +00:00
configfile.h unify pointers to value for configfile, and add TYPE_BOOL type, used by 2009-01-17 22:53:12 +00:00
feature_wrappers.h Make JPEG and BMP scaler optional with HAVE_JPEG and HAVE_BMP_SCALING, both defined for all targets that have HAVE_ALBUMART. Disable JPEG in PictureFlow and pluginlib album art search with 32KiB plugin buffer until PictureFlow 2009-05-04 15:46:41 +00:00
fixedpoint.c Convert a number of places in core and plugins to use the BIT_N() macro instead of 1<<n. Speeds up things on SH1, and also reduces core binsize. Most notable speedups: 1 bit lcd driver: drawpixel +20%, drawline + 27%, hline +5%; jpeg viewer: +8% for 1/8 scaling. Other targets are unaffected. 2009-06-07 21:27:05 +00:00
fixedpoint.h Updated our source code header to explicitly mention that we are GPL v2 or 2008-06-28 18:10:04 +00:00
gcc-support.c remove MEM_FUNCTION_WRAPPERS, and private mem* implementations from plugins, and replace with pluginlib implementations in plugins/lib/gcc-support.c 2009-01-24 22:57:57 +00:00
grey.h loader-initialized global plugin API: 2009-01-16 10:34:40 +00:00
grey_coldfire.S Updated our source code header to explicitly mention that we are GPL v2 or 2008-06-28 18:10:04 +00:00
grey_core.c Convert a number of places in core and plugins to use the BIT_N() macro instead of 1<<n. Speeds up things on SH1, and also reduces core binsize. Most notable speedups: 1 bit lcd driver: drawpixel +20%, drawline + 27%, hline +5%; jpeg viewer: +8% for 1/8 scaling. Other targets are unaffected. 2009-06-07 21:27:05 +00:00
grey_draw.c Speed up mono bitmap drawing on horizontally packed greyscale targets (greyscale iPods). Average speedup is 80% on PP5002, and 55% on PP502x. * Simplify mono bitmap drawing in the 16 bit driver and the greylib a bit, also giving a slight speedup (3% on PP502x, 1.5% on coldfire). 2009-06-01 21:28:03 +00:00
grey_parm.c loader-initialized global plugin API: 2009-01-16 10:34:40 +00:00
grey_scroll.c loader-initialized global plugin API: 2009-01-16 10:34:40 +00:00
grey_sh.S Updated our source code header to explicitly mention that we are GPL v2 or 2008-06-28 18:10:04 +00:00
helper.c Convert a number of places in core and plugins to use the BIT_N() macro instead of 1<<n. Speeds up things on SH1, and also reduces core binsize. Most notable speedups: 1 bit lcd driver: drawpixel +20%, drawline + 27%, hline +5%; jpeg viewer: +8% for 1/8 scaling. Other targets are unaffected. 2009-06-07 21:27:05 +00:00
helper.h loader-initialized global plugin API: 2009-01-16 10:34:40 +00:00
highscore.c loader-initialized global plugin API: 2009-01-16 10:34:40 +00:00
highscore.h loader-initialized global plugin API: 2009-01-16 10:34:40 +00:00
jhash.c Add Bob Jenkins' lookup3 32-bit and 64-bit hashes to pluginlib. 2009-06-01 13:40:30 +00:00
jhash.h Add Bob Jenkins' lookup3 32-bit and 64-bit hashes to pluginlib. 2009-06-01 13:40:30 +00:00
jpeg_mem.h Plugin JPEG decoder for data in memory, along with test_mem_jpeg.c and bench_mem_jpeg.c plugins to test and benchmark it, and a line-length clean up in jpeg_load.c. 2009-05-08 03:46:48 +00:00
md5.c loader-initialized global plugin API: 2009-01-16 10:34:40 +00:00
md5.h loader-initialized global plugin API: 2009-01-16 10:34:40 +00:00
overlay.c loader-initialized global plugin API: 2009-01-16 10:34:40 +00:00
overlay.h loader-initialized global plugin API: 2009-01-16 10:34:40 +00:00
picture.c Updated our source code header to explicitly mention that we are GPL v2 or 2008-06-28 18:10:04 +00:00
picture.h Updated our source code header to explicitly mention that we are GPL v2 or 2008-06-28 18:10:04 +00:00
playback_control.c loader-initialized global plugin API: 2009-01-16 10:34:40 +00:00
playback_control.h loader-initialized global plugin API: 2009-01-16 10:34:40 +00:00
playergfx.c loader-initialized global plugin API: 2009-01-16 10:34:40 +00:00
playergfx.h loader-initialized global plugin API: 2009-01-16 10:34:40 +00:00
pluginlib_actions.c Move the ONDIO_PAD to the others which have the same keymap in the generic directions PLA context. 2009-06-01 17:33:20 +00:00
pluginlib_actions.h loader-initialized global plugin API: 2009-01-16 10:34:40 +00:00
pluginlib_albumart.c albumart search in pluginlib when building without HAVE_ALBUMART (for later use by pictureflow) 2009-01-24 04:09:29 +00:00
pluginlib_bmp.c Fix duplicate #includes 2009-05-17 14:50:19 +00:00
pluginlib_bmp.h loader-initialized global plugin API: 2009-01-16 10:34:40 +00:00
pluginlib_exit.c Add exit() implementation for plugins 2009-04-22 14:31:23 +00:00
pluginlib_exit.h Add exit() implementation for plugins 2009-04-22 14:31:23 +00:00
pluginlib_jpeg_idct_arm.S Core JPEG decoder improvements: 2009-06-19 02:56:00 +00:00
pluginlib_jpeg_load.c Add read_jpeg_* to feature_wrappers.h, add import-from-core for jpeg_load.c on mono targets. 2009-05-02 02:39:13 +00:00
pluginlib_jpeg_mem.c Add include to pluginlib_jpeg_mem.c to prevent warning noise with -Wmissing-prototypes. 2009-05-16 08:20:41 +00:00
pluginlib_resize.c fix pluginlib_resize.c for global plugin API 2009-01-16 10:49:11 +00:00
profile_plugin.c loader-initialized global plugin API: 2009-01-16 10:34:40 +00:00
profile_plugin.h loader-initialized global plugin API: 2009-01-16 10:34:40 +00:00
read_image.c Make JPEG and BMP scaler optional with HAVE_JPEG and HAVE_BMP_SCALING, both defined for all targets that have HAVE_ALBUMART. Disable JPEG in PictureFlow and pluginlib album art search with 32KiB plugin buffer until PictureFlow 2009-05-04 15:46:41 +00:00
read_image.h Add read_<image>_fd functions to plugin API, add feature_wrappers.h handling for them, and add read_image.[ch] wrapper for reading image files with automatic type detection. 2009-05-02 03:47:46 +00:00
rgb_hsv.c Updated our source code header to explicitly mention that we are GPL v2 or 2008-06-28 18:10:04 +00:00
rgb_hsv.h Updated our source code header to explicitly mention that we are GPL v2 or 2008-06-28 18:10:04 +00:00
SOURCES Core JPEG decoder improvements: 2009-06-19 02:56:00 +00:00
touchscreen.c Commit FS#9308: differentiate between TOUCHPAD & TOUCHSCREEN 2008-08-23 09:46:38 +00:00
touchscreen.h Commit FS#9308: differentiate between TOUCHPAD & TOUCHSCREEN 2008-08-23 09:46:38 +00:00
wrappers.h Commit fix for CPU_BOOST_LOGGING by Rafaël Carré. 2009-04-17 16:01:15 +00:00
xlcd.h loader-initialized global plugin API: 2009-01-16 10:34:40 +00:00
xlcd_core.c loader-initialized global plugin API: 2009-01-16 10:34:40 +00:00
xlcd_draw.c loader-initialized global plugin API: 2009-01-16 10:34:40 +00:00
xlcd_scroll.c loader-initialized global plugin API: 2009-01-16 10:34:40 +00:00