blob: 9ce2caa1c39a484a8ac9b93ecfd28b9b0e301dc3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef __RADIOLA_FILT_H
#define __RADIOLA_FILT_H
#include <stdlib.h>
#include <stdio.h>
#include <stdint.h>
#include <string.h>
#include <unistd.h>
//fifth order filter from rtlsdr
void filt_5th(int16_t *data, int length, int16_t *hist);
//delay filtering from https://github.com/dpiponi/mini_fm.git
void filt_delay( uint8_t *buf, int buf_len );
#endif
|