[FFmpeg-cvslog] Cosmetics: Fix indentation after last commit.

Carl Eugen Hoyos git at videolan.org
Sun Dec 18 15:31:10 CET 2011


ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Sun Dec 18 14:22:13 2011 +0100| [9a972b51114213270256c83278eb7c8fe4cf346a] | committer: Carl Eugen Hoyos

Cosmetics: Fix indentation after last commit.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=9a972b51114213270256c83278eb7c8fe4cf346a
---

 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 e6db556..6a544a9 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);
     }
 }



More information about the ffmpeg-cvslog mailing list