aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShadowghost <Ghost_of_Stone@web.de>2022-12-07 18:06:04 +0100
committerShadowghost <Ghost_of_Stone@web.de>2022-12-07 18:06:04 +0100
commit0834dc58c13b42e599c78e3898229ecc09120754 (patch)
tree1994737976b62fe44d1075a5dab9299fa6ed4437
parent8e8a085b7ec9649a0b5968aa6c926b8aff576b39 (diff)
Fix .Net 7 compatibility
-rw-r--r--MediaBrowser.Model/Dlna/MediaOptions.cs15
-rw-r--r--MediaBrowser.Model/Dlna/StreamBuilder.cs5
2 files changed, 9 insertions, 11 deletions
diff --git a/MediaBrowser.Model/Dlna/MediaOptions.cs b/MediaBrowser.Model/Dlna/MediaOptions.cs
index 71ee1db05..29aecf97f 100644
--- a/MediaBrowser.Model/Dlna/MediaOptions.cs
+++ b/MediaBrowser.Model/Dlna/MediaOptions.cs
@@ -11,7 +11,7 @@ namespace MediaBrowser.Model.Dlna
public class MediaOptions
{
/// <summary>
- /// Creates a new instance of the <see cref="MediaOptions"/> class.
+ /// Initializes a new instance of the <see cref="MediaOptions"/> class.
/// </summary>
public MediaOptions()
{
@@ -22,32 +22,32 @@ namespace MediaBrowser.Model.Dlna
}
/// <summary>
- /// Gets or sets a boolean to allow/forbid direct playback.
+ /// Gets or sets a value indicating whether direct playback is allowed.
/// </summary>
public bool EnableDirectPlay { get; set; }
/// <summary>
- /// Gets or sets a boolean to allow/forbid direct streaming.
+ /// Gets or sets a value indicating whether direct streaming is allowed.
/// </summary>
public bool EnableDirectStream { get; set; }
/// <summary>
- /// Gets or sets a boolean to force direct playback.
+ /// Gets or sets a value indicating whether direct playback is forced.
/// </summary>
public bool ForceDirectPlay { get; set; }
/// <summary>
- /// Gets or sets a boolean to force direct streaming.
+ /// Gets or sets a value indicating whether direct streaming is forced.
/// </summary>
public bool ForceDirectStream { get; set; }
/// <summary>
- /// Gets or sets a boolean to allow/forbid audio stream copy.
+ /// Gets or sets a value indicating whether audio stream copy is allowed.
/// </summary>
public bool AllowAudioStreamCopy { get; set; }
/// <summary>
- /// Gets or sets a boolean to allow/forbid video stream copy.
+ /// Gets or sets a value indicating whether video stream copy is allowed.
/// </summary>
public bool AllowVideoStreamCopy { get; set; }
@@ -64,7 +64,6 @@ namespace MediaBrowser.Model.Dlna
/// <summary>
/// Gets or sets the device profile.
/// </summary>
-
public DeviceProfile Profile { get; set; }
/// <summary>
diff --git a/MediaBrowser.Model/Dlna/StreamBuilder.cs b/MediaBrowser.Model/Dlna/StreamBuilder.cs
index bb1e236be..2f919b045 100644
--- a/MediaBrowser.Model/Dlna/StreamBuilder.cs
+++ b/MediaBrowser.Model/Dlna/StreamBuilder.cs
@@ -1483,7 +1483,6 @@ namespace MediaBrowser.Model.Dlna
return false;
}
-
long requestedMaxBitrate = maxBitrate > 0 ? maxBitrate : 1000000;
// If we don't know the bitrate, then force a transcode if requested max bitrate is under 40 mbps
@@ -1501,7 +1500,7 @@ namespace MediaBrowser.Model.Dlna
return false;
}
- private static void ValidateMediaOptions(MediaOptions options, Boolean IsMediaSource)
+ private static void ValidateMediaOptions(MediaOptions options, bool isMediaSource)
{
if (options.ItemId.Equals(default))
{
@@ -1518,7 +1517,7 @@ namespace MediaBrowser.Model.Dlna
throw new ArgumentException("MediaSources is required");
}
- if (IsMediaSource)
+ if (isMediaSource)
{
if (options.AudioStreamIndex.HasValue && string.IsNullOrEmpty(options.MediaSourceId))
{