mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-05-24 02:02:29 -04:00
Use static regex
This commit is contained in:
parent
d6f3ca859e
commit
f3030812ea
@ -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));
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user