I know that if ffmpeg is compiled with libnpp support you can do a full hardware transcoding with scaling, like this:
ffmpeg -hwaccel_device 0 -hwaccel cuvid -c:v h264_cuvid -i input -vf scale_npp=-1:720 -c:v h264_nvenc -preset slow output.mkv
Is it possible to, instead of scaling, apply a deinterlace filter to be handled by the hardware, like the scaling is in the example above? Does libnpp provide deinterlace?