summaryrefslogtreecommitdiff
path: root/libavfilter/af_sofalizer.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2018-12-26 00:27:48 +0100
committerPaul B Mahol <onemda@gmail.com>2018-12-26 10:01:06 +0100
commit60e9007be2e9851a6c8948f1ab7fbe85f590d34f (patch)
treecbde2d0728feaa350847de56f25cba0653a2dc07 /libavfilter/af_sofalizer.c
parent8e4e2c9e40b1839c74b3b4a6485f272c7f32b284 (diff)
avfilter/af_sofalizer: fix typo in comments
Diffstat (limited to 'libavfilter/af_sofalizer.c')
-rw-r--r--libavfilter/af_sofalizer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/af_sofalizer.c b/libavfilter/af_sofalizer.c
index 02c0409043..f9325ff312 100644
--- a/libavfilter/af_sofalizer.c
+++ b/libavfilter/af_sofalizer.c
@@ -877,7 +877,7 @@ static int load_data(AVFilterContext *ctx, int azim, int elev, float radius, int
/* load non-reversed IRs of the specified source position
* sample-by-sample and apply gain,
* L channel is loaded to real part, R channel to imag part,
- * IRs ared shifted by L and R delay */
+ * IRs are shifted by L and R delay */
fft_in_l[s->delay[0][i] + j].re = lir[j] * gain_lin;
fft_in_r[s->delay[1][i] + j].re = rir[j] * gain_lin;
}