mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Use file-scoped namespaces in Jellyfin.Drawing
This commit is contained in:
parent
16e33665a2
commit
6c7225b943
@ -19,13 +19,13 @@ using MediaBrowser.Model.Net;
|
|||||||
using Microsoft.Extensions.Logging;
|
using Microsoft.Extensions.Logging;
|
||||||
using Photo = MediaBrowser.Controller.Entities.Photo;
|
using Photo = MediaBrowser.Controller.Entities.Photo;
|
||||||
|
|
||||||
namespace Jellyfin.Drawing
|
namespace Jellyfin.Drawing;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Class ImageProcessor.
|
||||||
|
/// </summary>
|
||||||
|
public sealed class ImageProcessor : IImageProcessor, IDisposable
|
||||||
{
|
{
|
||||||
/// <summary>
|
|
||||||
/// Class ImageProcessor.
|
|
||||||
/// </summary>
|
|
||||||
public sealed class ImageProcessor : IImageProcessor, IDisposable
|
|
||||||
{
|
|
||||||
// Increment this when there's a change requiring caches to be invalidated
|
// Increment this when there's a change requiring caches to be invalidated
|
||||||
private const char Version = '3';
|
private const char Version = '3';
|
||||||
|
|
||||||
@ -565,5 +565,4 @@ namespace Jellyfin.Drawing
|
|||||||
|
|
||||||
_disposed = true;
|
_disposed = true;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -3,13 +3,13 @@ using System.Collections.Generic;
|
|||||||
using MediaBrowser.Controller.Drawing;
|
using MediaBrowser.Controller.Drawing;
|
||||||
using MediaBrowser.Model.Drawing;
|
using MediaBrowser.Model.Drawing;
|
||||||
|
|
||||||
namespace Jellyfin.Drawing
|
namespace Jellyfin.Drawing;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A fallback implementation of <see cref="IImageEncoder" />.
|
||||||
|
/// </summary>
|
||||||
|
public class NullImageEncoder : IImageEncoder
|
||||||
{
|
{
|
||||||
/// <summary>
|
|
||||||
/// A fallback implementation of <see cref="IImageEncoder" />.
|
|
||||||
/// </summary>
|
|
||||||
public class NullImageEncoder : IImageEncoder
|
|
||||||
{
|
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public IReadOnlyCollection<string> SupportedInputFormats
|
public IReadOnlyCollection<string> SupportedInputFormats
|
||||||
=> new HashSet<string>(StringComparer.OrdinalIgnoreCase) { "png", "jpeg", "jpg" };
|
=> new HashSet<string>(StringComparer.OrdinalIgnoreCase) { "png", "jpeg", "jpg" };
|
||||||
@ -54,5 +54,4 @@ namespace Jellyfin.Drawing
|
|||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new NotImplementedException();
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user