Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MCUs (0.02 sec)

  1. src/image/jpeg/scan.go

    		}
    		if ah != 0 && ah != al+1 {
    			return FormatError("bad successive approximation values")
    		}
    	}
    
    	// mxx and myy are the number of MCUs (Minimum Coded Units) in the image.
    	h0, v0 := d.comp[0].h, d.comp[0].v // The h and v values from the Y components.
    	mxx := (d.width + 8*h0 - 1) / (8 * h0)
    	myy := (d.height + 8*v0 - 1) / (8 * v0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. src/image/jpeg/reader.go

    			// always 1. The component's (h, v) is effectively always (1, 1): even if
    			// the nominal (h, v) is (2, 1), a 20x5 image is encoded in three 8x8
    			// MCUs, not two 16x8 MCUs.
    			h, v = 1, 1
    
    		case 3:
    			// For YCbCr images, we only support 4:4:4, 4:4:0, 4:2:2, 4:2:0,
    			// 4:1:1 or 4:1:0 chroma subsampling ratios. This implies that the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 22.5K bytes
    - Viewed (0)
Back to top