aboutsummaryrefslogtreecommitdiff
path: root/audience~/audience~.h
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2011-07-31 03:59:16 +0000
committerIOhannes m zmölnig <zmoelnig@iem.at>2015-10-14 15:23:30 +0200
commitd145fa6f792d6c44da2feec90507adb94e40323e (patch)
treeae3aaf213dbb4273331745802ef1259dce8e2986 /audience~/audience~.h
parent67af8f6b3f179d5b4ba0747ab971abbeecbedd45 (diff)
got everything building using the template Makefile
svn path=/trunk/externals/unauthorized/; revision=15173
Diffstat (limited to 'audience~/audience~.h')
-rw-r--r--audience~/audience~.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/audience~/audience~.h b/audience~/audience~.h
deleted file mode 100644
index b02d1b2..0000000
--- a/audience~/audience~.h
+++ /dev/null
@@ -1,44 +0,0 @@
-/* Copyright (c) 2002 Yves Degoyon
-* For information on usage and redistribution, and for a DISCLAIMER OF ALL
-* WARRANTIES, see the file, "LICENSE.txt," in this distribution. */
-
-/* a header for 2d_space which enables to spatialize
-* several sound inputs with the mouse
-*/
-
-#ifndef __G_2D_SPACE_H
-#define __G_2D_SPACE_H
-
-#define AUDIENCE_NONE 0
-#define AUDIENCE_INPUT 1
-#define AUDIENCE_OUTPUT 2
-
-typedef struct _audience_tilde
-{
- t_object x_obj;
- t_glist *x_glist;
- t_int x_nbinputs;
- t_int x_nboutputs;
- t_int *x_inputs_x;
- t_int *x_inputs_y;
- t_int *x_outputs_x;
- t_int *x_outputs_y;
- t_inlet **x_inputs;
- t_outlet **x_outputs;
- t_int x_allocate; /* indicates that audio buffer is */
- /* beeing reallocated */
- t_int x_audiobuffersize; /* audio buffer size */
- t_int x_audiowritepos; /* audio writing position */
- t_float **x_audiobuffer; /* audio buffer */
- t_int x_type_selected; /* type of selected object */
- /* e.g. inpout or output or none */
- t_int x_nselected; /* index of item selected */
- t_int x_height; /* height of the 2d_space object */
- t_int x_width; /* width of the 2d_space object */
- t_int x_selected; /* stores selected state */
- t_float x_attenuation; /* sound attenuation per meter */
- t_int x_applydelay; /* optional delay due to the distance */
- t_float x_f; /* classical float for signal input */
-} t_audience_tilde;
-
-#endif