view src/audiocompress/compress.h @ 39:3643db656a4f trunk

[svn] Removed the check for socklen_t. This fixes building on NetBSD. curl defined socklen_t anyway, so no need for this. This *MIGHT* break something on some systems (I haven't found one yet, though), so PLEASE report all bugs to me.
author js
date Tue, 19 Sep 2006 07:53:54 -0700
parents 3da1b8942b8b
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