Mercurial > libavcodec.hg
comparison ra288.c @ 7413:d018af0d20a1 libavcodec
Remove an useless comment describing prodsum()
author | vitor |
---|---|
date | Sat, 26 Jul 2008 14:33:25 +0000 |
parents | 51da3d8200d0 |
children | 5d1378447a07 |
comparison
equal
deleted
inserted
replaced
7412:51da3d8200d0 | 7413:d018af0d20a1 |
---|---|
133 } | 133 } |
134 | 134 |
135 return 0; | 135 return 0; |
136 } | 136 } |
137 | 137 |
138 /* product sum (lsf) */ | |
139 static void prodsum(float *tgt, const float *src, int len, int n) | 138 static void prodsum(float *tgt, const float *src, int len, int n) |
140 { | 139 { |
141 for (; n >= 0; n--) | 140 for (; n >= 0; n--) |
142 tgt[n] = scalar_product_float(src, src - n, len); | 141 tgt[n] = scalar_product_float(src, src - n, len); |
143 | 142 |