comparison libaf/af_volume.c @ 22746:fd6f824ef894

Rename open to af_open so as not to conflict with a previous header definition.
author diego
date Tue, 20 Mar 2007 09:46:00 +0000
parents 108fcc2e5d01
children 904e3f3f8bee
comparison
equal deleted inserted replaced
22745:db6ba6a2ba51 22746:fd6f824ef894
189 } 189 }
190 return c; 190 return c;
191 } 191 }
192 192
193 // Allocate memory and set function pointers 193 // Allocate memory and set function pointers
194 static int open(af_instance_t* af){ 194 static int af_open(af_instance_t* af){
195 int i = 0; 195 int i = 0;
196 af->control=control; 196 af->control=control;
197 af->uninit=uninit; 197 af->uninit=uninit;
198 af->play=play; 198 af->play=play;
199 af->mul.n=1; 199 af->mul.n=1;
215 "Volume control audio filter", 215 "Volume control audio filter",
216 "volume", 216 "volume",
217 "Anders", 217 "Anders",
218 "", 218 "",
219 AF_FLAGS_NOT_REENTRANT, 219 AF_FLAGS_NOT_REENTRANT,
220 open 220 af_open
221 }; 221 };