You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
461 B
24 lines
461 B
|
|
#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
|