1. 1d6df54 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. by Jens Arnold · 16 years ago
  2. d2ea7db Should fix red by Maurus Cuelenaere · 16 years ago
  3. 0bddb7e Fix FORMAT_RETURN_SIZE in read_bmp_*() when scaling (thanks to Andrew Mahone) by Maurus Cuelenaere · 16 years ago
  4. aec37aa * read_bmp_*(): add FORMAT_RETURN_SIZE by Maurus Cuelenaere · 16 years ago
  5. 59e70b5 Inline output_row_8_native when building bmp.c in core without HAVE_JPEG or HAVE_BMP_SCALING. by Andrew Mahone · 16 years ago
  6. 91efc16 Split 8-bit-to-native conversion in bmp.c into a function, add support for plugging unscaled output in BMP and JPEG loaders, use output_row_8_native in JPEG decoder when possible. by Andrew Mahone · 16 years ago
  7. eef7945 Move YUV->RGB in JPEG load from before scaler to after scaler. Required change to struct custom_format, so sorted the plugin API as well. by Andrew Mahone · 16 years ago
  8. 20f76d6 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 by Andrew Mahone · 16 years ago
  9. 36c71a6 Get checkwps working again by Maurus Cuelenaere · 16 years ago
  10. 07e982d cleanup for core-file-in-pluginlib compilation: by Andrew Mahone · 16 years ago
  11. 4eedc93 build a scaling-enabled bitmap loader in pluginlib for mono bitmap targets, and use it in the test greylib scaler plugin by Andrew Mahone · 16 years ago
  12. 9058620 Make scaler output truly pluggable, add an 8-bit greyscale output to by Andrew Mahone · 16 years ago
  13. f7fa7e5 Latest work on the bmp on-load scaler: by Andrew Mahone · 16 years ago
  14. 781421a resize-on-load for bitmap files on 2bpp and color targets by Andrew Mahone · 16 years ago
  15. 2acc0ac Updated our source code header to explicitly mention that we are GPL v2 or by Daniel Stenberg · 17 years ago
  16. 799e948 Remove some more simulator debugging output. by Steve Bavin · 17 years ago
  17. 78d29f5 Major cleanup of checkwps - fix all warnings and add a script to build versions for all supported targets (plus some unsupported ones). You now need to run the version of checkwps that matches the device your WPS is for. by Dave Chapman · 17 years ago
  18. b9bb723 1) Make Rockbox reject any WPSs if there are errors loading any of the required bmps; 2) Make checkwps actually load the images using the Rockbox bmp loader, and reject the WPS in the same was as Rockbox on bmp errors. by Dave Chapman · 17 years ago
  19. 8113717 Fix BMP loader for the iAudio M3 display. by Jens Arnold · 17 years ago
  20. 89bfb66 BMP loader: Handle top-down BMP files (height is negative). Note that the e200 example pictures still don't work, as they are larger than the screen (not a loader problem). by Jens Arnold · 17 years ago
  21. ec6569e Add read_bmp_fd and make the first parameter of read_bmp_file ("filename") const. by Nicolas Pennequin · 17 years ago
  22. 6a5cc0b Customizable icons for all bitmap targets. (FS#7013) by Jonathan Gordon · 18 years ago
  23. 0b2ac4b BMP loader: Using shifts for division by powers of 2 saves a bit on code size. by Jens Arnold · 18 years ago
  24. 848e0b5 BMP loader: Remote LCD format support. by Jens Arnold · 18 years ago
  25. d1077a8 Fixed the dithering once more. by Jens Arnold · 18 years ago
  26. adc4848 Complete rework of the BMP loader: * Support for 4 bit, 15/16 bit and 32 bit BMPs in addition to the already supported 1 bit, 8 bit and 24 bit formats. * Better protection against corrupt BMP files. * Added dithering for 2 bit targets. * Optimised, compact code. There's almost no code size increase for SH1 (only 68 bytes), and even a decrease for coldfire, with all the additional features. * Code policed. * Fixes bug that loading a backdrop worked only once per session. by Jens Arnold · 18 years ago
  27. 83e18d9 Patch #5771 by Frederik Vestre: Fix BMP loader to work in 64bit environments (simulator). by Jens Arnold · 18 years ago
  28. e0710b2 More color adjustments. Better translation to and from native colors with even distribution of levels. Macros for extracting native depth components and packing them. by Michael Sevakis · 19 years ago
  29. b5404b2 Left some crud in bmp.c that should've been removed before committing. Don't know what's with me today by Michael Sevakis · 19 years ago
  30. fa0ea19 Fixed the problem with the backdrops on iPod. The same problem was in the updated color picker and that is fixed too. by Michael Sevakis · 19 years ago
  31. bed0db2 Small bitmap dithering tweak by Michael Sevakis · 19 years ago
  32. 756ce4a Fixed errors. Forgot to include system.h for swap16 in bmp.c by Michael Sevakis · 19 years ago
  33. 76a6aaa Added dithering for 24 bit backdrops on 16 bit displays. FORMAT_DITHER should be specified to dither a bitmap when loading. Feel free to flame me if I got the RGB565SWAPPED thing wrong. by Michael Sevakis · 19 years ago
  34. 38ae72a Fix color->grayscale bitmap loading on grayscale ipods and mono->grayscale on all grayscale targets. by Frank Dischner · 19 years ago
  35. c279335 Correct pallette->RGB565 conversion when loading 1-bit BMP files. by Jens Arnold · 19 years ago
  36. 21229b2 The image size calculation was wrong on monochrome targets by Linus Nielsen Feltzing · 19 years ago
  37. b69d59b Handle 8-bit BMP files by Linus Nielsen Feltzing · 19 years ago
  38. 62b22ba Slighly less confusing handling of inverted monochrome images by Linus Nielsen Feltzing · 19 years ago
  39. fe1c9f5 Iriver: Another grayscale bmp loader bug fixed: clear the right amount of data, to avoid garbage in the images. by Magnus Holmgren · 19 years ago
  40. 5f0b75e Correct PaddedWidth calculation by Linus Nielsen Feltzing · 19 years ago
  41. ae0ae6d Small iPod colour BMP fix by linuxstd by Christi Scarborough · 19 years ago
  42. ea72d05 Fixed endianness problem in the BMP loader by Linus Nielsen Feltzing · 19 years ago
  43. 3b8934d Iriver: Calculate proper height (i.e., size) for grayscale bitmaps. by Magnus Holmgren · 19 years ago
  44. 3722a99 Better working fix for the BMP loader transparency flag bug by Linus Nielsen Feltzing · 19 years ago
  45. 8f07403 Temporary fix for crashing when trying to enter the WPS, thanks to Adam Boot. by Brandon Low · 19 years ago
  46. 745adad Color BMP support by Linus Nielsen Feltzing · 19 years ago
  47. 465982b Little optimization to the bmp loader loop (unfortunately almost no by Miika Pekkarinen · 19 years ago
  48. 1188f93 Made it build warning-free on the sim. This could not have worked in the sim by Daniel Stenberg · 20 years ago
  49. 113a58d include autoconf for the endian defines by Daniel Stenberg · 20 years ago
  50. b8a23f9e Fixed makefiles for autoconf.g include. by Daniel Stenberg · 20 years ago
  51. de4ef01 Long policy again by Linus Nielsen Feltzing · 20 years ago
  52. c27d51c Long policy by Linus Nielsen Feltzing · 20 years ago
  53. 250678b New BMP reader by Tomas Salfischberger by Linus Nielsen Feltzing · 20 years ago
  54. afc9b57 (while I remember this) The width padding is 4-byte aligned, nothing else... by Daniel Stenberg · 23 years ago
  55. a847271 removed code within #ifdef STANDALONE since it doesn't work and isn't ever used. by Daniel Stenberg · 23 years ago
  56. ebb14ca Gained about 128 KB buffer space by removing malloc() and the heap by Björn Stenberg · 23 years ago
  57. 5813fa9 removed unused variables, removed static variables by Daniel Stenberg · 23 years ago
  58. 00c6f51 corrected the comment regarding what kind of BMP files this reads by Daniel Stenberg · 23 years ago
  59. 1f50b8b included debug.h for debugf function by Felix Arends · 23 years ago
  60. aa11e3e free memory by Daniel Stenberg · 23 years ago
  61. 37a7c25 Moving recorder code to recorder/ by Björn Stenberg · 23 years ago[Renamed from apps/bmp.c]
  62. 1c0c861 moved from the simulator dir by Daniel Stenberg · 23 years ago