Use static regex

This commit is contained in:
Bond_009 2019-01-02 11:32:35 +01:00 committed by Vasily
parent d6f3ca859e
commit f3030812ea

View file

@ -139,9 +139,9 @@ namespace MediaBrowser.MediaEncoding.Encoder
var required = codec == Codec.Encoder ? requiredEncoders : requiredDecoders;
Regex regex = new Regex(@"^\s\S{6}\s(?<codec>[\w|-]+)\s+.+$", RegexOptions.Multiline);
MatchCollection matches = regex.Matches(output);
var found = matches.Cast<Match>()
var found = Regex
.Matches(output, @"^\s\S{6}\s(?<codec>[\w|-]+)\s+.+$", RegexOptions.Multiline)
.Cast<Match>()
.Select(x => x.Groups["codec"].Value)
.Where(x => required.Contains(x));