diff options
author | Paul B Mahol <onemda@gmail.com> | 2018-12-24 20:58:12 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2018-12-24 20:58:12 +0100 |
commit | d6fc20a3ba17bc3ddb642018222ebff712c6fc34 (patch) | |
tree | ac7e65ed4676b06e3189d96a1f0d5fa3bd7f86db /libavfilter/af_surround.c | |
parent | 3bc711a2675a41b4932a7d10341fce906c749fc1 (diff) | |
download | ffmpeg-d6fc20a3ba17bc3ddb642018222ebff712c6fc34.tar.gz |
avfilter/af_surround: fix code indentation
Diffstat (limited to 'libavfilter/af_surround.c')
-rw-r--r-- | libavfilter/af_surround.c | 4 |
1 files 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, |