rockbox-dsp 0.2.0

Rockbox DSP (EQ, crossfeed, compressor, timestretch, …) as a reusable static library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
/* Stub — no-op debug output. */
#ifndef RBDSP_DEBUG_H
#define RBDSP_DEBUG_H

#ifndef DEBUGF
#define DEBUGF(...) do { } while (0)
#endif

#ifndef panicf
#define panicf(...) do { } while (0)
#endif

#endif