We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e85482 commit 4e6ecdaCopy full SHA for 4e6ecda
FFMpegCore/FFMpeg/Arguments/SetMirrorVideo.cs
@@ -22,12 +22,12 @@ public string Value
22
{
23
switch (_value)
24
25
- case Mirror.Horizontall:
+ case Mirror.Horizontal:
26
return "hflip";
27
- case Mirror.Verticall:
+ case Mirror.Vertical:
28
return "vflip";
29
default:
30
- throw new Exception("SetMirrorVideo: argument not found");
+ throw new ArgumentOutOfRangeException("SetMirrorVideo: argument not found");
31
}
32
33
FFMpegCore/FFMpeg/Enums/Mirror.cs
@@ -1,12 +1,8 @@
1
-using System;
2
-using System.Collections.Generic;
3
-using System.Text;
4
-
5
-namespace FFMpegCore.Enums
+namespace FFMpegCore.Enums
6
7
public enum Mirror
8
9
- Verticall,
10
- Horizontall
+ Vertical,
+ Horizontal
11
12
0 commit comments