aboutsummaryrefslogtreecommitdiffstats
path: root/utils.hpp
blob: 9cff9e0a7cf495d167421b4c02cd617a66c8f11f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef __UTILS_H_

#include <cstddef>

const size_t samps_per_buffer = 20480;
const size_t samplerate = 2048000;

#include <complex>

typedef std::complex<float> complexf;


#include <cstdio>

#define MDEBUG(fmt, args...) fprintf (stderr, fmt , ## args)

#define __UTILS_H_
#endif // __UTILS_H_