aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-02-01 22:21:58 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-02-01 22:21:58 -0500
commit1cdb420d2e815baa16e52ddef056b947716e37bb (patch)
tree523416a4d410cb84a97555593c3c187168dd54e3 /MediaBrowser.Server.Implementations
parentbb26e05e1e71fbbf0bc842f591a2157fa471b2be (diff)
parent11e5d194b41cabf5a9320198d2b61484aba00115 (diff)
Merge branch 'beta' into dev
Conflicts: MediaBrowser.Api/StartupWizardService.cs MediaBrowser.Model/Configuration/ServerConfiguration.cs MediaBrowser.Server.Implementations/Dto/DtoService.cs MediaBrowser.Server.Implementations/HttpServer/HttpListenerHost.cs MediaBrowser.Server.Implementations/Library/LibraryManager.cs MediaBrowser.Server.Implementations/Localization/Core/ca.json MediaBrowser.Server.Implementations/MediaBrowser.Server.Implementations.csproj MediaBrowser.Server.Implementations/packages.config MediaBrowser.WebDashboard/dashboard-ui/bower_components/iron-selector/.bower.json MediaBrowser.WebDashboard/dashboard-ui/bower_components/iron-selector/bower.json MediaBrowser.WebDashboard/dashboard-ui/strings/html/ca.json MediaBrowser.WebDashboard/dashboard-ui/strings/javascript/ca.json SharedVersion.cs
Diffstat (limited to 'MediaBrowser.Server.Implementations')
-rw-r--r--MediaBrowser.Server.Implementations/Channels/ChannelManager.cs2
-rw-r--r--MediaBrowser.Server.Implementations/LiveTv/TunerHosts/SatIp.cs54
2 files changed, 55 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/Channels/ChannelManager.cs b/MediaBrowser.Server.Implementations/Channels/ChannelManager.cs
index c7865b6aa..d730998eb 100644
--- a/MediaBrowser.Server.Implementations/Channels/ChannelManager.cs
+++ b/MediaBrowser.Server.Implementations/Channels/ChannelManager.cs
@@ -1534,4 +1534,4 @@ namespace MediaBrowser.Server.Implementations.Channels
}
}
}
-} \ No newline at end of file
+}
diff --git a/MediaBrowser.Server.Implementations/LiveTv/TunerHosts/SatIp.cs b/MediaBrowser.Server.Implementations/LiveTv/TunerHosts/SatIp.cs
new file mode 100644
index 000000000..ecd2864c5
--- /dev/null
+++ b/MediaBrowser.Server.Implementations/LiveTv/TunerHosts/SatIp.cs
@@ -0,0 +1,54 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading;
+using System.Threading.Tasks;
+using MediaBrowser.Common.Configuration;
+using MediaBrowser.Controller.LiveTv;
+using MediaBrowser.Controller.MediaEncoding;
+using MediaBrowser.Model.Dto;
+using MediaBrowser.Model.LiveTv;
+using MediaBrowser.Model.Logging;
+using MediaBrowser.Model.Serialization;
+
+namespace MediaBrowser.Server.Implementations.LiveTv.TunerHosts
+{
+ public class SatIp : BaseTunerHost
+ {
+ public SatIp(IConfigurationManager config, ILogger logger, IJsonSerializer jsonSerializer, IMediaEncoder mediaEncoder)
+ : base(config, logger, jsonSerializer, mediaEncoder)
+ {
+ }
+
+ protected override Task<IEnumerable<ChannelInfo>> GetChannelsInternal(TunerHostInfo tuner, CancellationToken cancellationToken)
+ {
+ throw new NotImplementedException();
+ }
+
+ public override string Type
+ {
+ get { return "SatIp"; }
+ }
+
+ protected override Task<List<MediaSourceInfo>> GetChannelStreamMediaSources(TunerHostInfo tuner, string channelId, CancellationToken cancellationToken)
+ {
+ throw new NotImplementedException();
+ }
+
+ protected override Task<MediaSourceInfo> GetChannelStream(TunerHostInfo tuner, string channelId, string streamId, CancellationToken cancellationToken)
+ {
+ throw new NotImplementedException();
+ }
+
+ protected override Task<bool> IsAvailableInternal(TunerHostInfo tuner, string channelId, CancellationToken cancellationToken)
+ {
+ throw new NotImplementedException();
+ }
+
+ protected override bool IsValidChannelId(string channelId)
+ {
+ throw new NotImplementedException();
+ }
+ }
+}