PortAudio 2.0

Distort input like a fuzz box. More...

#include <stdio.h>
#include <math.h>
#include "portaudio.h"

Macros

#define SAMPLE_RATE   (44100)
 
#define PA_SAMPLE_TYPE   paFloat32
 
#define FRAMES_PER_BUFFER   (64)
 
#define FUZZ(x)
 

Typedefs

typedef float SAMPLE
 

Functions

float CubicAmplifier (float input)
 
int main (void)
 

Detailed Description

Distort input like a fuzz box.

Author
Phil Burk http://www.softsynth.com

Macro Definition Documentation

◆ FRAMES_PER_BUFFER

#define FRAMES_PER_BUFFER   (64)

Referenced by main().

◆ FUZZ

#define FUZZ ( x)
Value:
float CubicAmplifier(float input)
Definition pa_fuzz.c:69

◆ PA_SAMPLE_TYPE

#define PA_SAMPLE_TYPE   paFloat32

Referenced by main().

◆ SAMPLE_RATE

#define SAMPLE_RATE   (44100)

Referenced by main().

Typedef Documentation

◆ SAMPLE

typedef float SAMPLE

Function Documentation

◆ CubicAmplifier()

float CubicAmplifier ( float input)

◆ main()