diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-04 22:50:29 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-04 22:50:29 -0500 |
| commit | 4d4ea6e42c39c20a8d8b7767dcb1bd4dc00b1bb8 (patch) | |
| tree | 1c74d66fe1c7f3e94af50d454c203d26434d8878 /MediaBrowser.Controller/LiveTv/ILiveTvService.cs | |
| parent | 2788d8d201afdfdb65074fe7d922f62ec5aaf94b (diff) | |
updated ffmpeg
Diffstat (limited to 'MediaBrowser.Controller/LiveTv/ILiveTvService.cs')
| -rw-r--r-- | MediaBrowser.Controller/LiveTv/ILiveTvService.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/LiveTv/ILiveTvService.cs b/MediaBrowser.Controller/LiveTv/ILiveTvService.cs index 491e8cbf8..1e535139c 100644 --- a/MediaBrowser.Controller/LiveTv/ILiveTvService.cs +++ b/MediaBrowser.Controller/LiveTv/ILiveTvService.cs @@ -154,5 +154,13 @@ namespace MediaBrowser.Controller.LiveTv /// <param name="cancellationToken">The cancellation token.</param> /// <returns>Task{Stream}.</returns> Task<LiveStreamInfo> GetChannelStream(string channelId, CancellationToken cancellationToken); + + /// <summary> + /// Closes the live stream. + /// </summary> + /// <param name="id">The identifier.</param> + /// <param name="cancellationToken">The cancellation token.</param> + /// <returns>Task.</returns> + Task CloseLiveStream(string id, CancellationToken cancellationToken); } } |
