diff options
| author | Patrick Barron <barronpm@gmail.com> | 2024-01-09 09:54:02 -0500 |
|---|---|---|
| committer | Patrick Barron <barronpm@gmail.com> | 2024-01-09 10:16:58 -0500 |
| commit | 126aa9c893a5b5e3107ca9b6355d354753d45ed3 (patch) | |
| tree | 75040427c791f5815597357c13e830824f9aa3fe /Emby.Server.Implementations/Channels/ChannelDynamicMediaSourceProvider.cs | |
| parent | c1a3084312fa4fb7796b83640bfe9ad2b5044afa (diff) | |
Move channels to LiveTv project
Diffstat (limited to 'Emby.Server.Implementations/Channels/ChannelDynamicMediaSourceProvider.cs')
| -rw-r--r-- | Emby.Server.Implementations/Channels/ChannelDynamicMediaSourceProvider.cs | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/Emby.Server.Implementations/Channels/ChannelDynamicMediaSourceProvider.cs b/Emby.Server.Implementations/Channels/ChannelDynamicMediaSourceProvider.cs deleted file mode 100644 index 3e149cc82..000000000 --- a/Emby.Server.Implementations/Channels/ChannelDynamicMediaSourceProvider.cs +++ /dev/null @@ -1,43 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading; -using System.Threading.Tasks; -using MediaBrowser.Controller.Channels; -using MediaBrowser.Controller.Entities; -using MediaBrowser.Controller.Library; -using MediaBrowser.Model.Dto; - -namespace Emby.Server.Implementations.Channels -{ - /// <summary> - /// A media source provider for channels. - /// </summary> - public class ChannelDynamicMediaSourceProvider : IMediaSourceProvider - { - private readonly ChannelManager _channelManager; - - /// <summary> - /// Initializes a new instance of the <see cref="ChannelDynamicMediaSourceProvider"/> class. - /// </summary> - /// <param name="channelManager">The channel manager.</param> - public ChannelDynamicMediaSourceProvider(IChannelManager channelManager) - { - _channelManager = (ChannelManager)channelManager; - } - - /// <inheritdoc /> - public Task<IEnumerable<MediaSourceInfo>> GetMediaSources(BaseItem item, CancellationToken cancellationToken) - { - return item.SourceType == SourceType.Channel - ? _channelManager.GetDynamicMediaSources(item, cancellationToken) - : Task.FromResult(Enumerable.Empty<MediaSourceInfo>()); - } - - /// <inheritdoc /> - public Task<ILiveStream> OpenMediaSource(string openToken, List<ILiveStream> currentLiveStreams, CancellationToken cancellationToken) - { - throw new NotImplementedException(); - } - } -} |
