Commit a471beae authored by vitor's avatar vitor

Cosmetics: alignement

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14304 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 4147acc3
...@@ -155,10 +155,10 @@ static void co(int n, int i, int j, const float *in, float *out, float *st1, ...@@ -155,10 +155,10 @@ static void co(int n, int i, int j, const float *in, float *out, float *st1,
work[x] = table[x] * st1[x]; work[x] = table[x] * st1[x];
} }
prodsum(buffer1, work + n, i, n); prodsum(buffer1, work + n , i, n);
prodsum(buffer2, work + n + i, j, n); prodsum(buffer2, work + n + i, j, n);
for (x=0;x<=n;x++) { for (x=0; x <= n; x++) {
st2[x] = st2[x] * 0.5625 + buffer1[x]; st2[x] = st2[x] * 0.5625 + buffer1[x];
out[x] = st2[x] + buffer2[x]; out[x] = st2[x] + buffer2[x];
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment