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 //EQ10Q definitions
22 //TODO: Aquestes seran les definicions definitives del EQ tan de GUI com del audio dsp.
23 //La idea es fer desapareixer el header EQ_TYPES.H quan s'implementi la compilació amb CMake a tot el projecte (DSP inclos)
24 //TODO: aquest fitxer es un copy paste de eq.h elimnnant la inclusio del eq_types
25 #ifndef EQ_GUI_DEFINES_H
26   #define EQ_GUI_DEFINES_H
27 #define EQ_BYPASS    0
28 #define EQ_INGAIN    1
29 #define EQ_OUTGAIN   2
30 
31 #define PORT_OFFSET  3
32 
33 #define FFT_N 4096 //FFT sample size, must be a power of 2
34 #endif