Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for huffIndex (0.45 sec)

  1. src/image/jpeg/writer.go

    		99, 99, 99, 99, 99, 99, 99, 99,
    		99, 99, 99, 99, 99, 99, 99, 99,
    		99, 99, 99, 99, 99, 99, 99, 99,
    	},
    }
    
    type huffIndex int
    
    const (
    	huffIndexLuminanceDC huffIndex = iota
    	huffIndexLuminanceAC
    	huffIndexChrominanceDC
    	huffIndexChrominanceAC
    	nHuffIndex
    )
    
    // huffmanSpec specifies a Huffman encoding.
    type huffmanSpec struct {
    	// count[i] is the number of codes of length i bits.
    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