aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Drawing
diff options
context:
space:
mode:
authorDavid Ullmer <davidullmer@outlook.de>2021-08-16 12:26:41 +0200
committerCody Robibero <cody@robibe.ro>2022-01-04 08:20:16 -0700
commit0fd4ff44513b195bb43368c7002d08991fed6c98 (patch)
tree4b602a77673e1c0905ac0b48da12e0a3e876fda7 /MediaBrowser.Controller/Drawing
parentc934269a6e915898629dd45e8fc8a55a75d91efd (diff)
Always use 1080p, add max parental rating
Diffstat (limited to 'MediaBrowser.Controller/Drawing')
-rw-r--r--MediaBrowser.Controller/Drawing/SplashscreenOptions.cs14
1 files changed, 1 insertions, 13 deletions
diff --git a/MediaBrowser.Controller/Drawing/SplashscreenOptions.cs b/MediaBrowser.Controller/Drawing/SplashscreenOptions.cs
index d70773d8f..0534d60b6 100644
--- a/MediaBrowser.Controller/Drawing/SplashscreenOptions.cs
+++ b/MediaBrowser.Controller/Drawing/SplashscreenOptions.cs
@@ -16,13 +16,11 @@ namespace MediaBrowser.Controller.Drawing
/// <param name="width">Optional. The image width.</param>
/// <param name="height">Optional. The image height.</param>
/// <param name="applyFilter">Optional. Apply a darkening filter.</param>
- public SplashscreenOptions(IReadOnlyList<string> portraitInputPaths, IReadOnlyList<string> landscapeInputPaths, string outputPath, int width = 1920, int height = 1080, bool applyFilter = false)
+ public SplashscreenOptions(IReadOnlyList<string> portraitInputPaths, IReadOnlyList<string> landscapeInputPaths, string outputPath, bool applyFilter = false)
{
PortraitInputPaths = portraitInputPaths;
LandscapeInputPaths = landscapeInputPaths;
OutputPath = outputPath;
- Width = width;
- Height = height;
ApplyFilter = applyFilter;
}
@@ -42,16 +40,6 @@ namespace MediaBrowser.Controller.Drawing
public string OutputPath { get; set; }
/// <summary>
- /// Gets or sets the width.
- /// </summary>
- public int Width { get; set; }
-
- /// <summary>
- /// Gets or sets the height.
- /// </summary>
- public int Height { get; set; }
-
- /// <summary>
/// Gets or sets a value indicating whether to apply a darkening filter at the end.
/// </summary>
public bool ApplyFilter { get; set; }