|
|
|
|
|
by herf
4526 days ago
|
|
Yes, you can stream JPEG pretty easily as long as you know the output size. Also to combine JPEGs into a sprite, you can avoid all DCT/iDCT/color operations and use only the Huffman portion of the codec (decode, concat, encode). Since Huffman throughput is a considerable multiple of gzip (~10x?), I think you'd be quite a ways ahead, for memory and time. |
|