comparison libaf/af_volnorm.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 9352446d4fa8
children 904e3f3f8bee
comparison
equal deleted inserted replaced
22745:db6ba6a2ba51 22746:fd6f824ef894
309 } 309 }
310 return data; 310 return data;
311 } 311 }
312 312
313 // Allocate memory and set function pointers 313 // Allocate memory and set function pointers
314 static int open(af_instance_t* af){ 314 static int af_open(af_instance_t* af){
315 int i = 0; 315 int i = 0;
316 af->control=control; 316 af->control=control;
317 af->uninit=uninit; 317 af->uninit=uninit;
318 af->play=play; 318 af->play=play;
319 af->mul.n=1; 319 af->mul.n=1;
341 "Volume normalizer filter", 341 "Volume normalizer filter",
342 "volnorm", 342 "volnorm",
343 "Alex Beregszaszi & Pierre Lombard", 343 "Alex Beregszaszi & Pierre Lombard",
344 "", 344 "",
345 AF_FLAGS_NOT_REENTRANT, 345 AF_FLAGS_NOT_REENTRANT,
346 open 346 af_open
347 }; 347 };