aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Library
diff options
context:
space:
mode:
authorcvium <clausvium@gmail.com>2021-09-10 09:56:48 +0200
committercvium <clausvium@gmail.com>2021-09-10 09:56:48 +0200
commitf3573b061c4d9eb869316ce3de320fd8803aeef8 (patch)
tree5f688788c598f18e7c1b768568f83817b367a7f2 /MediaBrowser.Controller/Library
parent1603d1928e888abeccc6a5fab2e1f13aa65eea6c (diff)
Remove the unused arg
Diffstat (limited to 'MediaBrowser.Controller/Library')
-rw-r--r--MediaBrowser.Controller/Library/IDirectStreamProvider.cs5
-rw-r--r--MediaBrowser.Controller/Library/ILiveStream.cs2
2 files changed, 3 insertions, 4 deletions
diff --git a/MediaBrowser.Controller/Library/IDirectStreamProvider.cs b/MediaBrowser.Controller/Library/IDirectStreamProvider.cs
index 2939668f7..96f8b7eba 100644
--- a/MediaBrowser.Controller/Library/IDirectStreamProvider.cs
+++ b/MediaBrowser.Controller/Library/IDirectStreamProvider.cs
@@ -11,10 +11,9 @@ namespace MediaBrowser.Controller.Library
public interface IDirectStreamProvider
{
/// <summary>
- /// Gets the live stream, optionally seeks to the end of the file first.
+ /// Gets the live stream, shared streams seek to the end of the file first.
/// </summary>
- /// <param name="seekNearEnd">A value indicating whether to seek to the end of the file.</param>
/// <returns>The stream.</returns>
- Stream GetStream(bool seekNearEnd = true);
+ Stream GetStream();
}
}
diff --git a/MediaBrowser.Controller/Library/ILiveStream.cs b/MediaBrowser.Controller/Library/ILiveStream.cs
index a29a91fe9..4c44a17fd 100644
--- a/MediaBrowser.Controller/Library/ILiveStream.cs
+++ b/MediaBrowser.Controller/Library/ILiveStream.cs
@@ -27,6 +27,6 @@ namespace MediaBrowser.Controller.Library
Task Close();
- Stream GetStream(bool seekNearEnd = true);
+ Stream GetStream();
}
}