aboutsummaryrefslogtreecommitdiff
path: root/src/avg~.c
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2015-08-28 17:55:26 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2015-08-28 17:55:26 +0000
commit739a8290a8b05645a2d055aed8e5eb76ba2e24e6 (patch)
tree13713efb9e01a6f2912ce4fe0a12af4869a7593b /src/avg~.c
parent863ac0a263247d43d48c06ed942ddd470f811507 (diff)
one-true indentation
svn path=/trunk/externals/zexy/; revision=17537
Diffstat (limited to 'src/avg~.c')
-rw-r--r--src/avg~.c16
1 files changed, 7 insertions, 9 deletions
diff --git a/src/avg~.c b/src/avg~.c
index 6254520..3e68c4c 100644
--- a/src/avg~.c
+++ b/src/avg~.c
@@ -1,4 +1,4 @@
-/*
+/*
* avg~: calculate the average of a signal block
*
* (c) 1999-2011 IOhannes m zmölnig, forum::für::umläute, institute of electronic music and acoustics (iem)
@@ -7,12 +7,12 @@
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
- *
+ *
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
- *
+ *
* You should have received a copy of the GNU General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
@@ -25,8 +25,7 @@
static t_class *avg_class;
-typedef struct _avg
-{
+typedef struct _avg {
t_object x_obj;
t_float n_inv;
@@ -45,10 +44,9 @@ static t_int *avg_perform(t_int *w)
t_sample buf = 0.;
- while (n--)
- {
- buf += *in++;
- }
+ while (n--) {
+ buf += *in++;
+ }
outlet_float(x->x_obj.ob_outlet, buf*x->n_inv);
return (w+4);