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