From d6f1abe9ce08279e6e3f90a80724fcef7a2ab673 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Thu, 14 Jan 2016 22:20:25 +0100 Subject: [PATCH] avfilter/vf_fftfilt: this is video filter so use pixels instead of samples Signed-off-by: Paul B Mahol --- libavfilter/vf_fftfilt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,