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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
/*
SuperEQ DSP plugin for DeaDBeeF Player
Copyright (C) 2009-2014 Alexey Yakovenko <waker@users.sourceforge.net>
Original SuperEQ code (C) Naoki Shibata <shibatch@users.sf.net>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
class paramlistelm {
public:
class paramlistelm *next;
float lower,upper,gain,gain2;
int sortindex;
paramlistelm(void) {
lower = upper = gain = 0;
next = NULL;
};
~paramlistelm() {
delete next;
next = NULL;
};
};
class paramlist {
public:
class paramlistelm *elm;
paramlist(void) {
elm = NULL;
}
~paramlist() {
delete elm;
elm = NULL;
}
void copy(paramlist &src)
{
delete elm;
elm = NULL;
paramlistelm **p,*q;
for(p=&elm,q=src.elm;q != NULL;q = q->next,p = &(*p)->next)
{
*p = new paramlistelm;
(*p)->lower = q->lower;
(*p)->upper = q->upper;
(*p)->gain = q->gain;
}
}
paramlistelm *newelm(void)
{
paramlistelm **e;
for(e = &elm;*e != NULL;e = &(*e)->next) ;
*e = new paramlistelm;
return *e;
}
int getnelm(void)
{
int i;
paramlistelm *e;
for(e = elm,i = 0;e != NULL;e = e->next,i++) ;
return i;
}
void delelm(paramlistelm *p)
{
paramlistelm **e;
for(e = &elm;*e != NULL && p != *e;e = &(*e)->next) ;
if (*e == NULL) return;
*e = (*e)->next;
p->next = NULL;
delete p;
}
void sortelm(void)
{
int i=0;
if (elm == NULL) return;
for(paramlistelm *r = elm;r != NULL;r = r->next) r->sortindex = i++;
paramlistelm **p,**q;
for(p=&elm->next;*p != NULL;)
{
for(q=&elm;*q != *p;q = &(*q)->next)
if ((*p)->lower < (*q)->lower ||
((*p)->lower == (*q)->lower && (*p)->sortindex < (*q)->sortindex)) break;
if (p == q) {p = &(*p)->next; continue;}
paramlistelm **pn = p;
paramlistelm *pp = *p;
*p = (*p)->next;
pp->next = *q;
*q = pp;
p = pn;
}
}
};
|