Ardour  8.7-14-g57a6773833
slider_gain.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2006 Paul Davis
3  * Copyright (C) 2007 Michael Taht
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  *
19  * */
20 
21 #ifndef ardour_slider_gain
22 #define ardour_slider_gain
23 
24 static inline double
26 {
27  if (g == 0) return 0;
28  return pow((6.0*log(g)/log(2.0)+192.0)/198.0, 8.0);
29 
30 }
31 
32 static inline ARDOUR::gain_t
34 {
35  /* XXX Marcus writes: this doesn't seem right to me. but i don't have a better answer ... */
36  if (pos == 0.0) return 0;
37  return pow (2.0,(sqrt(sqrt(sqrt(pos)))*198.0-192.0)/6.0);
38 }
39 
40 #endif
static ARDOUR::gain_t slider_position_to_gain(double pos)
Definition: slider_gain.h:33
static double gain_to_slider_position(ARDOUR::gain_t g)
Definition: slider_gain.h:25