#jpeg #compute-shader #web-gpu #decoder #decode #yuv #image

compeg

A JPEG decoder implemented as a WebGPU compute shader

4 releases (2 breaking)

0.2.0 Mar 11, 2024
0.1.2 Mar 3, 2024
0.1.1 Nov 7, 2023
0.1.0 Nov 7, 2023
0.0.0 Nov 7, 2023

#247 in Graphics APIs

0BSD license

1.5MB
3K SLoC

Rust 2.5K SLoC // 0.0% comments WebGPU Shader Language 353 SLoC // 0.2% comments

This is an experiment to use WebGPU Compute Shaders to decode JPEG images. The main Purpose of this project is to learn how to write compute shaders.

It performs surprisingly well on my RX 6700 XT, with GPU times of around 1 ms at high GPU clocks (and 2ms spent doing preprocessing on the CPU) when decoding a 4k test image.

The approach used here is restricted to baseline JPEGs that make heavy use of restart intervals. These types of JPEGs are typically produced by hardware encoders in GPUs, phones and webcams.

Due to technical limitations, only YUV JPEGs that make use of 4:2:2 chroma subsampling are supported. In the future this restriction may be lifted.


lib.rs:

WebGPU compute shader JPEG decoder.

Usage:

Dependencies

~3–37MB
~534K SLoC