0
1
mirror of https://github.com/radio95-rnt/fm95.git synced 2026-02-26 19:23:51 +01:00
Files
fm95/lib/filters.h
2025-03-22 21:13:15 +01:00

17 lines
392 B
C

#pragma once
#include <math.h>
#include <string.h>
#include <stdlib.h>
#include "constants.h"
#include "oscillator.h"
typedef struct
{
float alpha;
float prev_sample;
} ResistorCapacitor;
void init_preemphasis(ResistorCapacitor *filter, float tau, float sample_rate);
float apply_preemphasis(ResistorCapacitor *filter, float sample);
float hard_clip(float sample, float threshold);