mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2024-11-10 08:34:12 +01:00
update
This commit is contained in:
parent
4e85482988
commit
4e6ecda884
2 changed files with 6 additions and 10 deletions
|
@ -22,12 +22,12 @@ public string Value
|
|||
{
|
||||
switch (_value)
|
||||
{
|
||||
case Mirror.Horizontall:
|
||||
case Mirror.Horizontal:
|
||||
return "hflip";
|
||||
case Mirror.Verticall:
|
||||
case Mirror.Vertical:
|
||||
return "vflip";
|
||||
default:
|
||||
throw new Exception("SetMirrorVideo: argument not found");
|
||||
throw new ArgumentOutOfRangeException("SetMirrorVideo: argument not found");
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace FFMpegCore.Enums
|
||||
namespace FFMpegCore.Enums
|
||||
{
|
||||
public enum Mirror
|
||||
{
|
||||
Verticall,
|
||||
Horizontall
|
||||
Vertical,
|
||||
Horizontal
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue