diff options
author | Paul B Mahol <onemda@gmail.com> | 2016-01-14 22:20:25 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2016-01-14 22:20:25 +0100 |
commit | d6f1abe9ce08279e6e3f90a80724fcef7a2ab673 (patch) | |
tree | dde0359eb042bc4c3c46785d1208a9d6a20939ea | |
parent | 2bbc7e9625f2cceb0adad95f8d8b9bbf15881dd4 (diff) | |
download | ffmpeg-d6f1abe9ce08279e6e3f90a80724fcef7a2ab673.tar.gz |
avfilter/vf_fftfilt: this is video filter so use pixels instead of samples
Signed-off-by: Paul B Mahol <onemda@gmail.com>
-rw-r--r-- | libavfilter/vf_fftfilt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_fftfilt.c b/libavfilter/vf_fftfilt.c index bc493e34c4..8cbfa35142 100644 --- a/libavfilter/vf_fftfilt.c +++ b/libavfilter/vf_fftfilt.c @@ -335,7 +335,7 @@ static const AVFilterPad fftfilt_outputs[] = { AVFilter ff_vf_fftfilt = { .name = "fftfilt", - .description = NULL_IF_CONFIG_SMALL("Apply arbitrary expressions to samples in frequency domain."), + .description = NULL_IF_CONFIG_SMALL("Apply arbitrary expressions to pixels in frequency domain."), .priv_size = sizeof(FFTFILTContext), .priv_class = &fftfilt_class, .inputs = fftfilt_inputs, |