Skip to content

Commit

Permalink
v1.5.9.1-alpha
Browse files Browse the repository at this point in the history
Fixed Video Filter Deinterlace Yadif
  • Loading branch information
MattMcManis committed Mar 25, 2019
1 parent 6828db4 commit 2e1ce8f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/Axiom/Axiom/Video/VideoFilters.cs
Original file line number Diff line number Diff line change
Expand Up @@ -262,14 +262,14 @@ public static void Deinterlace_Filter(ViewModel vm)
// -------------------------
else if (vm.FilterVideo_Deinterlace_SelectedItem == "frame nospatial")
{
deinterlace = "yadif_cuda=2:-1:0";
deinterlace = "yadif=2:-1:0";
}
// -------------------------
// Field Skip Spatial
// -------------------------
else if (vm.FilterVideo_Deinterlace_SelectedItem == "field nospatial")
{
deinterlace = "yadif_cuda=3:-1:0";
deinterlace = "yadif=3:-1:0";
}
//// -------------------------
//// Cuda Frame
Expand Down

0 comments on commit 2e1ce8f

Please sign in to comment.