From d6fc20a3ba17bc3ddb642018222ebff712c6fc34 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Mon, 24 Dec 2018 20:58:12 +0100 Subject: [PATCH] avfilter/af_surround: fix code indentation --- libavfilter/af_surround.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavfilter/af_surround.c b/libavfilter/af_surround.c index f29afecbfb..fcd84155a7 100644 --- a/libavfilter/af_surround.c +++ b/libavfilter/af_surround.c @@ -229,8 +229,8 @@ static int config_output(AVFilterLink *outlink) static void stereo_position(float a, float p, float *x, float *y) { - *x = av_clipf(a+FFMAX(0, sinf(p-M_PI_2))*FFDIFFSIGN(a,0), -1, 1); - *y = av_clipf(cosf(a*M_PI_2+M_PI)*cosf(M_PI_2-p/M_PI)*M_LN10+1, -1, 1); + *x = av_clipf(a+FFMAX(0, sinf(p-M_PI_2))*FFDIFFSIGN(a,0), -1, 1); + *y = av_clipf(cosf(a*M_PI_2+M_PI)*cosf(M_PI_2-p/M_PI)*M_LN10+1, -1, 1); } static inline void get_lfe(int output_lfe, int n, float lowcut, float highcut,