Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for unscaledQuant (0.15 sec)

  1. src/image/jpeg/writer.go

    const (
    	quantIndexLuminance quantIndex = iota
    	quantIndexChrominance
    	nQuantIndex
    )
    
    // unscaledQuant are the unscaled quantization tables in zig-zag order. Each
    // encoder copies and scales the tables according to its quality parameter.
    // The values are derived from section K.1 after converting from natural to
    // zig-zag order.
    var unscaledQuant = [nQuantIndex][blockSize]byte{
    	// Luminance.
    	{
    		16, 11, 12, 14, 12, 10, 16, 14,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 17.1K bytes
    - Viewed (0)
Back to top