aboutsummaryrefslogtreecommitdiff
path: root/Emby.Drawing/GDI/GDIImageEncoder.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-04-09 01:20:23 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-04-09 01:20:23 -0400
commitb9c656e859fe28ed6a66580d1eb5577bd50264e6 (patch)
treeb1149cb31bc6be25bb30e416195f7228a276d987 /Emby.Drawing/GDI/GDIImageEncoder.cs
parent6e6ce82cf6d8418c83d4090b19b7d29f036b3aa0 (diff)
added out of network bitrate limit
Diffstat (limited to 'Emby.Drawing/GDI/GDIImageEncoder.cs')
-rw-r--r--Emby.Drawing/GDI/GDIImageEncoder.cs9
1 files changed, 7 insertions, 2 deletions
diff --git a/Emby.Drawing/GDI/GDIImageEncoder.cs b/Emby.Drawing/GDI/GDIImageEncoder.cs
index 33502c5e1..d968b8b5f 100644
--- a/Emby.Drawing/GDI/GDIImageEncoder.cs
+++ b/Emby.Drawing/GDI/GDIImageEncoder.cs
@@ -1,5 +1,4 @@
-using System.Linq;
-using MediaBrowser.Common.IO;
+using MediaBrowser.Common.IO;
using MediaBrowser.Controller.Drawing;
using MediaBrowser.Model.Drawing;
using MediaBrowser.Model.Logging;
@@ -8,6 +7,7 @@ using System.Drawing;
using System.Drawing.Drawing2D;
using System.Drawing.Imaging;
using System.IO;
+using System.Linq;
using ImageFormat = MediaBrowser.Model.Drawing.ImageFormat;
namespace Emby.Drawing.GDI
@@ -245,5 +245,10 @@ namespace Emby.Drawing.GDI
public void Dispose()
{
}
+
+ public string Name
+ {
+ get { return "GDI"; }
+ }
}
}