Skip to content

Commit

Permalink
Fix regression
Browse files Browse the repository at this point in the history
  • Loading branch information
msg7086 committed Apr 12, 2020
1 parent bb10e22 commit 3280f80
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ Legacy format support was removed and a few options that are no longer useful we
```python
# AviSynth+
LoadPlugin("neo-f3kdb.dll")
neo_f3kdb(clip, Y=64, Cb=64, Cr=64, grainY=0, grainC=0, ...)
neo_f3kdb(clip, y=64, cb=64, cr=64, grainy=0, grainc=0, ...)
# VapourSynth
core.neo_f3kdb.Deband(clip, Y=64, Cb=64, Cr=64, grainY=0, grainC=0, ...)
core.neo_f3kdb.Deband(clip, y=64, cb=64, cr=64, grainy=0, grainc=0, ...)
```

[Check original usage documents.](https://f3kdb.readthedocs.io/en/stable/usage.html)
Expand Down
10 changes: 5 additions & 5 deletions src/f3kdb.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,11 @@ struct F3KDB final : Filter {
ep.Y = ep.grainY = 0;
int tmp;
in->Read("range", ep.range);
in->Read("Y", ep.Y);
in->Read("Cb", ep.Cb);
in->Read("Cr", ep.Cr);
in->Read("grainY", ep.grainY);
in->Read("grainC", ep.grainC);
in->Read("y", ep.Y);
in->Read("cb", ep.Cb);
in->Read("cr", ep.Cr);
in->Read("grainy", ep.grainY);
in->Read("grainc", ep.grainC);
in->Read("sample_mode", ep.sample_mode);
in->Read("seed", ep.seed);
in->Read("blur_first", ep.blur_first);
Expand Down

0 comments on commit 3280f80

Please sign in to comment.