mirror of https://github.com/SixLabors/ImageSharp
2 changed files with 16 additions and 9 deletions
@ -0,0 +1,16 @@ |
|||
// Copyright (c) Six Labors.
|
|||
// Licensed under the Apache License, Version 2.0.
|
|||
|
|||
using System; |
|||
|
|||
namespace SixLabors.ImageSharp.Formats.Jpeg.Components.Decoder |
|||
{ |
|||
internal abstract class SpectralConverter : IDisposable |
|||
{ |
|||
public abstract void InjectFrameData(JpegFrame frame, IRawJpegData jpegData); |
|||
|
|||
public abstract void ConvertStrideBaseline(); |
|||
|
|||
public abstract void Dispose(); |
|||
} |
|||
} |
|||
Loading…
Reference in new issue