File: defaults.h

package info (click to toggle)
extace 1.9.9-7
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 2,776 kB
  • ctags: 811
  • sloc: sh: 8,733; ansic: 6,982; makefile: 92
file content (30 lines) | stat: -rw-r--r-- 903 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
 * defaults.h source file for extace
 * 
 * /GDK/GNOME sound (esd) system output display program
 * 
 * Based on the original extace written by The Rasterman and Michael Fulbright
 *  
 * 
 * This software comes under the GPL (GNU Public License)
 * You may freely copy,distribute etc. this as long as the source code
 * is made available for FREE.
 * 
 * No warranty is made or implied. You use this program at your own risk.
 */

#ifndef _DEFAULTS_H_
#define _DEFAULTS_H_ 1

const float	lag_min = 1.00;		/* Minimum lag allowed */
float	noise_floor_min = -160.0;
float	noise_floor_max = 100.0;
const float	multiplier_min = 1.0;	/* Sensivity max allowed */
const float	multiplier_max = 100.0;	/* Sensivity max allowed */
const float	bar_decay_max = 35.0;
const float	peak_hold_max = 35.0;
const float	peak_decay_max = 35.0;
const float	refresh_max = 86.0;
const float	tape_scroll_max = 12.0;

#endif