diff options
author | Clément Bœsch <cboesch@gopro.com> | 2017-06-02 16:55:32 +0200 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2017-06-28 12:22:39 +0200 |
commit | 9bbb0fbd314ca87f5964c00a5eb82eeccc8fc051 (patch) | |
tree | 7ca9beff3ef974cfea99ad0c24fd7b4f637de009 | |
parent | edd041e64c0b96c8a2be37a1b143ae1c0048fc09 (diff) | |
download | ffmpeg-9bbb0fbd314ca87f5964c00a5eb82eeccc8fc051.tar.gz |
lavc/aacpsdsp: fix a few spaces (cosmetics)
-rw-r--r-- | libavcodec/aacpsdsp_template.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/libavcodec/aacpsdsp_template.c b/libavcodec/aacpsdsp_template.c index 3049ce8b79..4f193604bc 100644 --- a/libavcodec/aacpsdsp_template.c +++ b/libavcodec/aacpsdsp_template.c @@ -72,6 +72,7 @@ static void ps_hybrid_analysis_c(INTFLOAT (*out)[2], INTFLOAT (*in)[2], #endif /* USE_FIXED */ } } + static void ps_hybrid_analysis_ileave_c(INTFLOAT (*out)[32][2], INTFLOAT L[2][38][64], int i, int len) { @@ -165,10 +166,10 @@ static void ps_stereo_interpolate_c(INTFLOAT (*l)[2], INTFLOAT (*r)[2], h1 += hs1; h2 += hs2; h3 += hs3; - l[n][0] = AAC_MADD30(h0, l_re, h2, r_re); - l[n][1] = AAC_MADD30(h0, l_im, h2, r_im); - r[n][0] = AAC_MADD30(h1, l_re, h3, r_re); - r[n][1] = AAC_MADD30(h1, l_im, h3, r_im); + l[n][0] = AAC_MADD30(h0, l_re, h2, r_re); + l[n][1] = AAC_MADD30(h0, l_im, h2, r_im); + r[n][0] = AAC_MADD30(h1, l_re, h3, r_re); + r[n][1] = AAC_MADD30(h1, l_im, h3, r_im); } } |