Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for unreadByteStuffedByte (0.83 sec)

  1. src/image/jpeg/huffman.go

    			// be able to read the next symbol out of the previously read bits.
    			// First, undo the readByte that the ensureNBits call made.
    			if d.bytes.nUnreadable != 0 {
    				d.unreadByteStuffedByte()
    			}
    			goto slowPath
    		}
    	}
    	if v := h.lut[(d.bits.a>>uint32(d.bits.n-lutSize))&0xff]; v != 0 {
    		n := (v & 0xff) - 1
    		d.bits.n -= int32(n)
    		d.bits.m >>= n
    		return uint8(v >> 8), nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top