summaryrefslogtreecommitdiffstats
path: root/apps/recorder/jpeg_load.c
AgeCommit message (Expand)AuthorFilesLines
2011-02-10Fix test plugin build.Andree Buschmann1-0/+2
2011-02-09Embedded album art support in MP3/ID3v2 tags.Thomas Martitz1-8/+35
2010-05-06Move c/h files implementing/defining standard library stuff into a new libc d...Thomas Martitz1-9/+9
2010-04-06Make array static const in apps/recorder/jpeg_load.cBertrik Sikken1-1/+1
2009-07-22Commit part of FS#9873 - Utilise buttons for playlistingThomas Martitz1-1/+1
2009-06-27Use single-instruction shift-and-saturate in place of range_limit for JPEG on...Andrew Mahone1-32/+29
2009-06-27ARM assembly 8-point IDCT, both passes. No ARMv5/6 optimizations yet, aside f...Andrew Mahone1-7/+10
2009-06-192-point and 1-point JPEG IDCT ARM assembly, remove comment in jpeg_load.c abo...Andrew Mahone1-6/+4
2009-06-19Core JPEG decoder improvements:Andrew Mahone1-219/+148
2009-06-14Remove explicit counter for rows/columns in IDCT, instead testing against a p...Andrew Mahone1-35/+22
2009-06-14Adjust AC decode such that decode *always* stops before storing an unneeded c...Andrew Mahone1-16/+11
2009-06-12Fix red.Andrew Mahone1-1/+1
2009-06-11ARMv4 and ARMv5 inline assembly for 4-point IDCT.Andrew Mahone1-3/+141
2009-06-11Move +128 offset out of range_limit, and add it to the DC coefficient in each...Andrew Mahone1-12/+10
2009-06-11Don't compensate for lack of shift in second IDCT stage, allowing quantizatio...Andrew Mahone1-43/+41
2009-06-07Undo the delta on ARM but making the loop variables signed as before r21205. ...Jens Arnold1-4/+3
2009-06-07Convert a number of places in core and plugins to use the BIT_N() macro inste...Jens Arnold1-21/+22
2009-06-03Don't perform YUV->RGB conversion before row output for unscaled loads of gre...Andrew Mahone1-12/+15
2009-05-11Flag EOF and empty buffer conditions as UNLIKELY in JPEG decoder.Andrew Mahone1-9/+9
2009-05-11Fix a bug reading JPEG when the output data is smaller than sizeof(struct jpe...Andrew Mahone1-5/+23
2009-05-09Don't build 16-point IDCT on greyscale targets, since it's only used for chro...Andrew Mahone1-0/+4
2009-05-09Fix test for direct JPEG output, bump plugin API as r20884 changed struct cus...Andrew Mahone1-2/+2
2009-05-09Split 8-bit-to-native conversion in bmp.c into a function, add support for pl...Andrew Mahone1-6/+51
2009-05-08Convert Huffman decode from inline function to macro, for small code size sav...Andrew Mahone1-79/+70
2009-05-08Small size improvement for JPEG on ARM/Coldfire.Andrew Mahone1-0/+11
2009-05-08Plugin JPEG decoder for data in memory, along with test_mem_jpeg.c and bench_...Andrew Mahone1-12/+105
2009-05-07Never use upscaling IDCT for luma (to reduce blockiness), plus some small siz...Andrew Mahone1-26/+47
2009-05-06Move YUV->RGB in JPEG load from before scaler to after scaler. Required chang...Andrew Mahone1-29/+3
2009-05-03Make local function static in jpeg_load.c, add missing header file in read_im...Bertrik Sikken1-1/+1
2009-05-01Add core JPEG reader, adapted from the JPEG plugin's decoder, with some chang...Andrew Mahone1-0/+2012