~ubuntu-branches/debian/jessie/eq10q/jessie

« back to all changes in this revision

Viewing changes to gui/widgets/guiconstants.h

  • Committer: Package Import Robot
  • Author(s): Jaromír Mikeš
  • Date: 2014-02-17 15:19:16 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20140217151916-liule90bv6dew1fw
Tags: 2.0~beta5.1~repack0-1
* New upstream release.
* Set dh/compat 9.
* Bump Standards.
* Added cmake as build-dep.
* Patches removed - not applied anymore.
* Added patch to fix prefix.
* Removed plotmm as build-dep.
* Update VCS urls.
* Update copyright.
* Update watch file.
* Added README.source file.
* Removed lv2-c++-tools and libpstreams-dev as build-dep.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   Copyright (C) 2009 by Pere R�fols Soler                               *
 
3
 *   sapista2@gmail.com                                                    *
 
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                         *
 
17
 *   Free Software Foundation, Inc.,                                       *
 
18
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
 
19
 ***************************************************************************/
 
20
 
 
21
#ifndef GUI_CONSTANTS_H
 
22
  #define GUI_CONSTANTS_H
 
23
 
 
24
#define GAIN_TYPE 0
 
25
#define FREQ_TYPE 1
 
26
#define Q_TYPE    2
 
27
#define FILTER_TYPE 3
 
28
#define ONOFF_TYPE 4
 
29
 
 
30
//TODO: verificar que es pot eliminar, ara es fa amb el fitxer filter.h
 
31
//Define filter types 
 
32
// #define  LPF_ORDER_1 0
 
33
// #define  LPF_ORDER_2 1
 
34
// #define  LPF_ORDER_3 2
 
35
// #define  LPF_ORDER_4 3
 
36
// #define  HPF_ORDER_1 4
 
37
// #define  HPF_ORDER_2 5
 
38
// #define  HPF_ORDER_3 6
 
39
// #define  HPF_ORDER_4 7
 
40
// #define  LOW_SHELF   8
 
41
// #define  HIGH_SHELF  9
 
42
// #define  PEAK        10
 
43
// #define  NOTCH       11
 
44
 
 
45
//Filter default values ///TODO: Aixo ha de venir del .ttl
 
46
#define GAIN_MIN -20.0
 
47
#define GAIN_MAX 20.0
 
48
#define FREQ_MIN 20.0
 
49
#define FREQ_MAX 20000.0
 
50
#define PEAK_Q_MIN 0.02
 
51
#define PEAK_Q_MAX 16.0
 
52
#define HPF_LPF_Q_DEFAULT 0.7
 
53
#define NOTCH_Q_DEFAULT 2
 
54
#define HIGH_LOW_SHELF_Q_DEFAULT  0.7
 
55
#define PEAK_Q_DEFAULT 2
 
56
#define GAIN_DEFAULT 0.0
 
57
 
 
58
#endif
 
 
b'\\ No newline at end of file'