Merge pull request #1631 from razzfazz/hdhr_config_hw_transcode_dev

allow disabling of hardware transcoding on HDTC-2US (dev)
This commit is contained in:
Luke
2016-04-06 23:08:48 -04:00
2 changed files with 4 additions and 2 deletions

View File

@@ -389,7 +389,7 @@ namespace MediaBrowser.Server.Implementations.LiveTv.TunerHosts.HdHomerun
string model = await GetModelInfo(info, cancellationToken).ConfigureAwait(false);
model = model ?? string.Empty;
if (model.IndexOf("hdtc", StringComparison.OrdinalIgnoreCase) != -1)
if (info.AllowHWTranscoding && (model.IndexOf("hdtc", StringComparison.OrdinalIgnoreCase) != -1))
{
list.Add(await GetMediaSource(info, hdhrId, "heavy").ConfigureAwait(false));