diff options
Diffstat (limited to 'MediaBrowser.Controller/Library/IDirectStreamProvider.cs')
| -rw-r--r-- | MediaBrowser.Controller/Library/IDirectStreamProvider.cs | 5 |
1 files changed, 2 insertions, 3 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(); } } |
