mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2024-11-10 08:34:12 +01:00
Correct valid transpose values
This commit is contained in:
parent
21b35d349e
commit
cdade1e73f
1 changed files with 2 additions and 2 deletions
|
@ -15,9 +15,9 @@ public TransposeArgument() { }
|
|||
|
||||
public TransposeArgument(int transpose) : base(transpose)
|
||||
{
|
||||
if (transpose < 0 || transpose > 5)
|
||||
if (transpose < 0 || transpose > 3)
|
||||
{
|
||||
throw new ArgumentException("Argument is outside range (0 - 5)", nameof(transpose));
|
||||
throw new ArgumentException("Argument is outside range (0 - 3)", nameof(transpose));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue