Fix incorrect condition

This commit is contained in:
hey-red 2021-01-23 05:40:03 +03:00
parent cfee86199b
commit d16efbda31

View file

@ -10,6 +10,7 @@ public class ContainerFormat
public bool DemuxingSupported { get; private set; } public bool DemuxingSupported { get; private set; }
public bool MuxingSupported { get; private set; } public bool MuxingSupported { get; private set; }
public string Description { get; private set; } = null!; public string Description { get; private set; } = null!;
public string Extension public string Extension
{ {
get get
@ -36,8 +37,8 @@ internal static bool TryParse(string line, out ContainerFormat fmt)
fmt = new ContainerFormat(match.Groups[3].Value) fmt = new ContainerFormat(match.Groups[3].Value)
{ {
DemuxingSupported = match.Groups[1].Value == " ", DemuxingSupported = match.Groups[1].Value != " ",
MuxingSupported = match.Groups[2].Value == " ", MuxingSupported = match.Groups[2].Value != " ",
Description = match.Groups[4].Value Description = match.Groups[4].Value
}; };
return true; return true;