Skip to content

Instantly share code, notes, and snippets.

@Larry57
Larry57 / SimpleMJPEGDecoder.cs
Last active September 19, 2024 19:38
Simple, fast and stupid MJPEG decoder that works for real. Give this viewer a try : https://github.com/Larry57/SimpleMJPEGStreamViewer
using System;
using System.Drawing;
using System.IO;
using System.Net.Http;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace SimpleMJPEGStreamViewer {
static class SimpleMJPEGDecoder {