mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2024-11-10 00:24:14 +01:00
Removed invalid assertion
This commit is contained in:
parent
5593bc4a4b
commit
e3aa7a5eae
1 changed files with 2 additions and 1 deletions
|
@ -461,7 +461,8 @@ public void Video_Snapshot_InMemory_SkiaSharp()
|
|||
var input = FFProbe.Analyse(TestResources.Mp4Video);
|
||||
Assert.AreEqual(input.PrimaryVideoStream!.Width, bitmap.Width);
|
||||
Assert.AreEqual(input.PrimaryVideoStream.Height, bitmap.Height);
|
||||
Assert.AreEqual(bitmap.ColorType, SkiaSharp.SKColorType.Bgra8888);
|
||||
// Note: The resulting ColorType is dependent on the execution environment and therefore not assessed,
|
||||
// e.g. Bgra8888 on Windows and Rgba8888 on macOS.
|
||||
}
|
||||
|
||||
[TestMethod, Timeout(BaseTimeoutMilliseconds)]
|
||||
|
|
Loading…
Reference in a new issue