Skip to content

Commit

Permalink
Add back MT mode
Browse files Browse the repository at this point in the history
  • Loading branch information
msg7086 committed Apr 8, 2020
1 parent 0989466 commit 4d2c245
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/fft3d.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ struct FFT3D final : Filter {

const char* VSName() const override { return "FFT3D"; }
const char* AVSName() const override { return "neo_fft3d"; }
const MtMode AVSMode() const override { return ep->bt == 0 ? MT_SERIALIZED : MT_NICE_FILTER; }
const VSFilterMode VSMode() const override { return ep->bt == 0 ? fmSerial : fmParallel; }
const std::vector<Param> Params() const override {
return std::vector<Param> {
Param {"clip", Clip, false, true, true, false},
Expand Down

0 comments on commit 4d2c245

Please sign in to comment.