view Plugins/Effect/audiocompress/compress.h @ 1300:a5c4e748d557 trunk

[svn] - don't call filepopup_show_for_tuple() more than once
author nenolod
date Sun, 18 Jun 2006 22:28:47 -0700
parents 6158ee7d8b06
children
line wrap: on
line source

/* compress.h
** interface to audio compression
*/

#ifndef COMPRESS_H
#define COMPRESS_H

void CompressCfg(int anticlip,
		 int target,
		 int maxgain,
		 int smooth,
		 int buckets);

void CompressDo(void *data, unsigned int numSamples);

void CompressFree(void);

#endif