From ac25d1d35e99e8e08099c0b329dd23b1159a2bb3 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Sun, 13 Dec 2015 18:49:29 +0100 Subject: [PATCH] avfilter/af_sofalizer: switch comments positions to correct order Signed-off-by: Paul B Mahol --- libavfilter/af_sofalizer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavfilter/af_sofalizer.c b/libavfilter/af_sofalizer.c index 5143145043..bcb35190ff 100644 --- a/libavfilter/af_sofalizer.c +++ b/libavfilter/af_sofalizer.c @@ -154,8 +154,8 @@ static int load_sofa(AVFilterContext *ctx, char *filename, int *samplingrate) return AVERROR(EINVAL); } - n_samples = dim_length[n_dim_id]; /* get number of measurements */ - m_dim = dim_length[m_dim_id]; /* get length of one IR */ + n_samples = dim_length[n_dim_id]; /* get length of one IR */ + m_dim = dim_length[m_dim_id]; /* get number of measurements */ av_freep(&dim_length);