]> git.sesse.net Git - fjl/history
fjl
2009-06-01 Steinar H. GundersonMore debug code moving. master
2009-06-01 Steinar H. GundersonMove some parts of the driver code into its own function.
2009-06-01 Steinar H. GundersonKill the expect for now.
2009-06-01 Steinar H. GundersonKill AC_END_OF_BLOCK as well.
2009-06-01 Steinar H. GundersonGet rid of AC_SIXTEEN_ZEROS.
2009-06-01 Steinar H. GundersonRemove some debugging asserts.
2009-06-01 Steinar H. GundersonWhatever. :-P
2009-06-01 Steinar H. GundersonRemove an increment from the fast path of the AC coeffi...
2009-06-01 Steinar H. GundersonFix a Makefile typo.
2009-06-01 Steinar H. GundersonAdd driver to the Makefile.
2009-06-01 Steinar H. GundersonFix some errors/warnings in driver.c.
2009-06-01 Steinar H. GundersonMinor optimizations to the new AC coefficient tables.
2009-06-01 Steinar H. GundersonMake a shiny new lookup table for looking up complete...
2009-06-01 Steinar H. GundersonSome more musings about code word lengths.
2009-06-01 Steinar H. GundersonFix our bswap trick on i386.
2009-06-01 Steinar H. GundersonSome asm() correction.
2009-06-01 Steinar H. GundersonYet another microoptimization in the driver.
2009-06-01 Steinar H. GundersonYet another microoptimization in the driver.
2009-06-01 Steinar H. GundersonAdd an x86 optimized version of extend().
2009-05-31 Steinar H. GundersonMicrooptimization: Use a form of byteswapping that...
2009-05-31 Steinar H. Gundersonextend() should not need sign extension for the bits...
2009-05-31 Steinar H. GundersonMore manual strength reduction.
2009-05-31 sgunderson@bigfoot.comSave one refill from inner coefficient-reading loop.
2009-05-31 sgunderson@bigfoot.comRemove unused variable.
2009-05-31 sgunderson@bigfoot.comMerge from pannekake.
2009-05-31 Steinar H. GundersonTry to reduce the register pressure a bit in the unstuf...
2009-05-31 sgunderson@bigfoot.comDo some manual strength reduction.
2009-05-31 sgunderson@bigfoot.comCorrect PGM height for vertically sampled components.
2009-05-31 sgunderson@bigfoot.comHandle EOI marker.
2009-05-31 sgunderson@bigfoot.comLet the bit source alert about EOF as soon as we have...
2009-05-31 sgunderson@bigfoot.comAdd optional padding data at the end to the bit source...
2009-05-31 sgunderson@bigfoot.comIn the driver, store the image data and output one...
2009-05-31 sgunderson@bigfoot.comMake idct_float.c compile without optimization.
2009-05-31 sgunderson@bigfoot.comAdd the level bias we're supposed to have.
2009-05-31 sgunderson@bigfoot.comUnfix the coefficient fix.
2009-05-31 sgunderson@bigfoot.comFix a typo in extend().
2009-05-31 sgunderson@bigfoot.comWrite to the right coefficient.
2009-05-31 sgunderson@bigfoot.comFix height/width read.
2009-05-31 sgunderson@bigfoot.comMinor adjustments to code that does not work.
2009-05-31 sgunderson@bigfoot.comTry to dequantize and IDCT data in the driver.
2009-05-30 sgunderson@bigfoot.comAdd DQT parsing.
2009-05-30 sgunderson@bigfoot.comAdd IDCT choices. This is rapidly becoming a bit fugly...
2009-05-30 sgunderson@bigfoot.comAdd un-zigzag table.
2009-01-28 Steinar H. GundersonAdd a stupid integerization of the AA&N IDCT -- 30...
2009-01-20 Steinar H. GundersonAdd the missing benchmarking files.
2009-01-20 Steinar H. GundersonSplit the two IDCTs into different files.
2009-01-11 Steinar H. GundersonReplace a magic constant by a less magic constant.
2009-01-11 Steinar H. GundersonLet IDCTs do precalculation outside the inner loops...
2009-01-11 Steinar H. GundersonMeasure CPU seconds instead of wall time, and move...
2009-01-09 Steinar H. GundersonCorrect a presentation error.
2009-01-09 Steinar H. Gunderson+static
2009-01-09 Steinar H. GundersonFloating-point implementation of AA&N IDCT. Does not...
2009-01-09 Steinar H. GundersonFix a read of uninitialized memory.
2009-01-06 Steinar H. GundersonCommit initial reference implementation of IDCT.
2009-01-03 Steinar H. GundersonAdd a decoding driver.
2009-01-03 Steinar H. GundersonStray newline.
2009-01-03 Steinar H. GundersonAdd an implementation of the EXTEND function.
2009-01-03 Steinar H. GundersonThe bit source needs to actually consume the data it...
2009-01-03 Steinar H. GundersonFix a missing #include.
2009-01-03 Steinar H. GundersonFix a bug in the fast Huffman decoder.
2009-01-03 Steinar H. GundersonRename read_length to read_uint16, and add a read_uint8.
2009-01-03 Steinar H. GundersonArgh, fix issue with double-pointers vs. multidimension...
2009-01-03 Steinar H. GundersonMore issues with overlong returns.
2009-01-03 Steinar H. GundersonFix a bug where we could return too much data from...
2009-01-03 Steinar H. Gundersonbyte_source_read_marker() needs to refill.
2009-01-03 Steinar H. GundersonFix a warning.
2009-01-03 Steinar H. GundersonMove some common input stuff around.
2009-01-03 Steinar H. GundersonFix a Makefile typo.
2009-01-03 Steinar H. GundersonRename input.h to bitsource.h (and friends).
2009-01-03 Steinar H. Gundersonread_huffman_tables() takes in unstuffed data, not...
2009-01-03 Steinar H. GundersonFix signedness warnings.
2009-01-03 Steinar H. GundersonEnable -Wall -Wextra.
2009-01-03 Steinar H. GundersonAdd back -O2.
2009-01-03 Steinar H. GundersonAdd a bytesource test for broken markers.
2009-01-03 Steinar H. GundersonAdd a new input source converting JPEG-format bytes...
2009-01-02 Steinar H. GundersonAdd code for efficient (?) Huffman decoding.
2009-01-02 Steinar H. GundersonCompile with debugging by default.
2009-01-02 Steinar H. GundersonUpper-case constants.
2009-01-02 Steinar H. GundersonPort some table-generating stuff from unjpeg.
2009-01-02 Steinar H. GundersonRename data_source to bit_source, and add a little...
2009-01-02 Steinar H. GundersonInitialize a very crude framework for choosing the...
2009-01-02 Steinar H. GundersonAdd a simple Makefile for compiling and running tests.
2009-01-02 Steinar H. GundersonAdded functions for bit-level reading.
2009-01-02 Steinar H. GundersonAdded some experimental data about Huffman code lengths.
2009-01-02 Steinar H. GundersonTransform unjpeg into something slightly more useful...
2009-01-02 Steinar H. GundersonAdd unjpeg.c, frmo an earlier project.
2009-01-02 Steinar H. GundersonInitial unstuff code.