diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-12-18 14:22:13 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-12-18 14:22:13 +0100 |
commit | 9a972b51114213270256c83278eb7c8fe4cf346a (patch) | |
tree | ee3f538b414f2532dcf5a94e6f58f63d042e594c /libavcodec | |
parent | 290e7eb77bee5a54182fb3d5fb122c1e117190da (diff) | |
download | ffmpeg-9a972b51114213270256c83278eb7c8fe4cf346a.tar.gz |
Cosmetics: Fix indentation after last commit.
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/acelp_vectors.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/libavcodec/acelp_vectors.c b/libavcodec/acelp_vectors.c index e6db556410..6a544a912d 100644 --- a/libavcodec/acelp_vectors.c +++ b/libavcodec/acelp_vectors.c @@ -238,11 +238,11 @@ void ff_set_fixed_vector(float *out, const AMRFixed *in, float scale, int size) float y = in->y[i] * scale; if (in->pitch_lag > 0) - do { - out[x] += y; - y *= in->pitch_fac; - x += in->pitch_lag; - } while (x < size && repeats); + do { + out[x] += y; + y *= in->pitch_fac; + x += in->pitch_lag; + } while (x < size && repeats); } } @@ -254,9 +254,9 @@ void ff_clear_fixed_vector(float *out, const AMRFixed *in, int size) int x = in->x[i], repeats = !((in->no_repeat_mask >> i) & 1); if (in->pitch_lag > 0) - do { - out[x] = 0.0; - x += in->pitch_lag; - } while (x < size && repeats); + do { + out[x] = 0.0; + x += in->pitch_lag; + } while (x < size && repeats); } } |