From 086e6b358ad45bda0e6a948cfb7ea2d33ab7da5a Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Wed, 10 Feb 2010 00:34:05 +0000 Subject: re-arranged into libdir and setup with the template Makefile+debian stuff. renabled vv+ and vv- as vvplus and vvminus svn path=/trunk/externals/smlib/; revision=13158 --- source/vmtof.c | 51 --------------------------------------------------- 1 file changed, 51 deletions(-) delete mode 100644 source/vmtof.c (limited to 'source/vmtof.c') diff --git a/source/vmtof.c b/source/vmtof.c deleted file mode 100644 index 828dcb6..0000000 --- a/source/vmtof.c +++ /dev/null @@ -1,51 +0,0 @@ -#include "defines.h" - -/*--------------- vmtof ----------------*/ - -static t_class *vmtof_class; - -typedef struct _vmtof -{ - t_object x_obj; -} t_vmtof; - -float mtof(float f) -{ - if (f <= -1500) return(0); - else if (f > 1499) return(mtof(1499)); - else return (float)(8.17579891564 * exp(.0577622650 * f)); -} - -static void vmtof_perform(t_vmtof *x, t_symbol *s, int argc, t_atom *argv) -{ - int i; - t_atom *ap,*app; - ap = (t_atom *)getbytes(sizeof(t_atom)*argc); - app=ap; - - for (i = 0; i < argc; i++) - { - SETFLOAT(app, mtof(atom_getfloat(argv++))); - app++; - } - outlet_list(x->x_obj.ob_outlet,gensym("list"),argc,ap); - freebytes(ap,argc); -} - -static void *vmtof_new() -{ - t_vmtof *x=(t_vmtof *)pd_new(vmtof_class); - outlet_new(&x->x_obj, gensym("list")); - return (void *)x; -} - -void vmtof_setup(void) -{ - vmtof_class = class_new(gensym("vmtof"), - (t_newmethod)vmtof_new, 0, - sizeof(t_vmtof), - CLASS_DEFAULT, - 0); - class_addlist(vmtof_class, (t_method)vmtof_perform); -} - -- cgit v1.2.1