diff options
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Interop/Model/Preview/RawPreviewData.cs')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Interop/Model/Preview/RawPreviewData.cs | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Interop/Model/Preview/RawPreviewData.cs b/win/CS/HandBrake.ApplicationServices/Interop/Model/Preview/RawPreviewData.cs deleted file mode 100644 index 2da2dc52d..000000000 --- a/win/CS/HandBrake.ApplicationServices/Interop/Model/Preview/RawPreviewData.cs +++ /dev/null @@ -1,26 +0,0 @@ -// -------------------------------------------------------------------------------------------------------------------- -// <copyright file="RawPreviewData.cs" company="HandBrake Project (http://handbrake.fr)"> -// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. -// </copyright> -// -------------------------------------------------------------------------------------------------------------------- - -namespace HandBrake.ApplicationServices.Interop.Model.Preview -{ - public class RawPreviewData - { - public RawPreviewData(byte[] rawBitmapData, int strideWidth, int strideHeight, int width, int height) - { - this.RawBitmapData = rawBitmapData; - this.StrideWidth = strideWidth; - this.StrideHeight = strideHeight; - this.Width = width; - this.Height = height; - } - - public byte[] RawBitmapData { get; } - public int StrideWidth { get; } - public int StrideHeight { get; } - public int Width { get; } - public int Height { get; } - } -} |