summaryrefslogtreecommitdiff
path: root/src/lzw.h
Commit message (Expand)AuthorAgeFilesLines
* lzw: Use size_t for buffer length/positionMichael Drake2022-12-161-4/+4
* LZW: Remove double blank lines.Michael Drake2021-11-191-3/+0
* Add myself to the copyright headers.Michael Drake2021-11-191-0/+1
* lzw: Rework API for separate init for map/non-map decode functions.Michael Drake2021-09-241-37/+57
* lzw: Remove unused one-code-at-a-time API.Michael Drake2021-04-241-16/+1
* lzw: Direct output into frame data, avoiding stack.Michael Drake2021-04-181-0/+25
* lzw: Add function for decoding multiple LZW codes at a time.Michael Drake2021-04-181-0/+15
* lzw: Return output array from decode function instead of init.Michael Drake2021-04-061-12/+10
* lzw: Output values in picture order.Michael Drake2021-04-061-15/+6
* lzw: Rename minimum_code_size to match what it's called in spec.Michael Drake2021-04-061-2/+2
* New LZW decoder: Real-world fix; continue after dictionary is full.Michael Drake2017-04-051-1/+0
* New LZW decoder: Add client calls to initialise LZW, and perform decode.Michael Drake2017-04-051-0/+54
* New LZW decoder: Add client calls to create/destroy LZW contexts.Michael Drake2017-04-041-0/+24
* New LZW decoder: Routine to extract LZW codes from GIF sub-block sequences.Michael Drake2017-04-041-0/+28