[plain text]
#ifndef _APPLEUSBAUDIOCLIP_H
#define _APPLEUSBAUDIOCLIP_H
#include <libkern/OSTypes.h>
extern "C" {
typedef float Float32;
typedef double Float64;
typedef struct _sPreviousValues {
Float32 xl_1;
Float32 xr_1;
Float32 xl_2;
Float32 xr_2;
Float32 yl_1;
Float32 yr_1;
Float32 yl_2;
Float32 yr_2;
} PreviousValues;
UInt32 CalculateOffset (UInt64 nanoseconds, UInt32 sampleRate);
IOReturn clipAppleUSBAudioToOutputStreamiSub (const void *mixBuf,
void *sampleBuf,
PreviousValues *filterState,
float *low,
float *high,
UInt32 firstSampleFrame,
UInt32 numSampleFrames,
UInt32 sampleRate,
const IOAudioStreamFormat *streamFormat,
SInt16 * iSubBufferMemory,
UInt32 *loopCount,
SInt32 *iSubBufferOffset,
UInt32 iSubBufferLen);
IOReturn clipAppleUSBAudioToOutputStream (const void *mixBuf,
void *sampleBuf,
UInt32 firstSampleFrame,
UInt32 numSampleFrames,
const IOAudioStreamFormat *streamFormat);
IOReturn convertFromAppleUSBAudioInputStream_NoWrap (const void *sampleBuf,
void *destBuf,
UInt32 firstSampleFrame,
UInt32 numSampleFrames,
const IOAudioStreamFormat *streamFormat);
}
#endif
Generated by GNU enscript 1.6.4.