summaryrefslogtreecommitdiff
path: root/src/pkg/image/jpeg/writer.go
Commit message (Expand)AuthorAgeFilesLines
* build: move package sources from src/pkg to srcRuss Cox2014-09-081-614/+0
* image/jpeg: encode *image.Gray as grayscale JPEGs.Bill Thiede2014-06-191-35/+96
* image/jpeg: use a look-up table to speed up Huffman decoding. ThisNigel Tao2014-06-191-1/+1
* all: use io.ByteWriter now that it existsBrad Fitzpatrick2013-01-081-2/+2
* image/jpeg: change block from [64]int to [64]int32.Nigel Tao2012-10-301-26/+24
* image/jpeg: fix quantization tables to be in zig-zag order, not naturalNigel Tao2012-09-061-19/+23
* image/jpeg: send a correct Start Of Scan (SOS) header.Nigel Tao2012-08-081-2/+4
* std: add struct field tags to untagged literals.Nigel Tao2012-02-031-1/+1
* image/ycbcr: move the Y'CbCr types into image and image/color.Nigel Tao2011-12-211-3/+3
* src/pkg/[a-m]*: gofix -r error -force=errorRuss Cox2011-11-011-7/+7
* image: change Pix from []FooColor to []uint8.Nigel Tao2011-07-121-3/+3
* image: change Pix[0] to mean top-left corner of an image's Rect insteadNigel Tao2011-07-101-2/+2
* image/jpeg: small memory layout optimization for encoding.Nigel Tao2011-05-181-7/+6
* image/jpeg: make writeDQT do fewer array copies.Nigel Tao2011-05-181-6/+3
* image/jpeg: decode grayscale images, not just color images.Nigel Tao2011-05-161-4/+4
* jpeg: speed up RGBA encoding ~%50Brad Fitzpatrick2011-05-021-1/+31
* image/jpeg: add an encoder.Nigel Tao2011-04-191-0/+523