aboutsummaryrefslogtreecommitdiff
path: root/src/jpeg.c
AgeCommit message (Collapse)AuthorFilesLines
2013-09-18Merge bmp.h, boot.h, jpeg.h, and post.h into util.h.Kevin O'Connor1-1/+1
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
2013-09-18Move malloc code from pmm.c to new files malloc.c and malloc.h.Kevin O'Connor1-1/+1
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
2013-09-18Rename util.c to string.c and introduce string.h.Kevin O'Connor1-0/+1
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
2011-07-09Fix jpeg decoder problem when it is used in 24 BPP mode.Wayne Xia1-9/+22
Signed-off-by: Wayne Xia <xiawenc@linux.vnet.ibm.com>
2010-08-28Minor - indentation change to jpeg.c.Kevin O'Connor1-8/+8
2010-07-30Breakup jpeg_decode into parsing and displaying phases.Kevin O'Connor1-29/+31
Split the screen display code out of the jpeg parsing code. Allow ability for caller to obtain jpeg dimensions.
2010-07-30Avoid using BSS variables in jpeg.c.Kevin O'Connor1-131/+152
Using BSS increases the rom size (and reduce space for option roms). So, move BSS variables in the jpeg.c code to malloc'd memory. Also, move struct and error declarations from jpeg.h to jpeg.c.
2010-06-28Initial bootsplash support.Kevin O'Connor1-0/+1018
Support displaying a jpeg file (stored in cbfs) during bootup. Signed-off-by: Stefan Reinauer <stepan@coresystems.de>