blob: 86ed42de1e2015f245fd77361acf002308a6c405 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef __MAGIC_CONF_H_
#define __MAGIC_CONF_H_
/***************************************/
/* For the incurably fiddle prone: */
/* log2 of sample size */
#define m 8
/* overlap amount between samples. Set to 1 or 2 if you have a fast computer */
#define overlap 0
/* Brightness */
#define brightness 150
/* Sample frequency*/
#define frequency 22050
#define MITSHM 1 /* use MIT X11 shared memory*/
/***************************************/
#endif
|