Skip to content

Commit

Permalink
Seperate encoding and decoding logic into JpegScan classes.
Browse files Browse the repository at this point in the history
  • Loading branch information
juliusfriedman committed Oct 29, 2024
1 parent 78ff79b commit 18848d7
Show file tree
Hide file tree
Showing 7 changed files with 599 additions and 508 deletions.
15 changes: 15 additions & 0 deletions Codecs/Image/Jpeg/Classes/ArithmeticScan.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
using System.IO;

namespace Media.Codec.Jpeg.Classes
{
internal class ArithmeticScan : JpegScan
{
public override void Compress(JpegImage jpegImage, Stream output)
{
}

public override void Decompress(JpegImage jpegImage)
{
}
}
}
Loading

0 comments on commit 18848d7

Please sign in to comment.