fix validation logging

This commit is contained in:
Luke Pulverenti 2016-07-07 23:21:06 -04:00
parent 97d21723f3
commit 903fff0761
1 changed files with 10 additions and 2 deletions

View File

@ -86,20 +86,28 @@ namespace MediaBrowser.MediaEncoding.Encoder
"libvorbis",
"srt",
"h264_nvenc",
"h264_qsv"
"h264_qsv",
"ac3"
};
output = output ?? string.Empty;
var index = 0;
foreach (var codec in required)
{
var srch = " " + codec + " ";
if (output.IndexOf(srch, StringComparison.OrdinalIgnoreCase) != -1)
{
_logger.Info("Encoder available: " + codec);
if (index < required.Length - 1)
{
_logger.Info("Encoder available: " + codec);
}
found.Add(codec);
}
index++;
}
return found;