summaryrefslogtreecommitdiff
path: root/src/mq/mq.cpp
blob: e842ac6f9af38a145aa3e414a5157536d1775b88 (plain)
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
/* Copyright (c) 2010 John Glover, National University of Ireland, Maynooth
 *
 * 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

#include "mq.h"


/* -------------------------------------------------------------------------
 * Initialisation and destruction
 */

int init_mq(MQParameters* params)
{
	/* allocate memory for FFT */
	params->fft_in = (sample*) fftw_malloc(sizeof(sample) * params->frame_size);
	params->fft_out = (fftw_complex*) fftw_malloc(sizeof(fftw_complex) * params->num_bins);
	params->fft_plan = fftw_plan_dft_r2c_1d(params->frame_size, params->fft_in, 
                                            params->fft_out, FFTW_ESTIMATE);
    /* set other variables to defaults */
    reset_mq(params);
    return 0;
}

void reset_mq(MQParameters* params)
{
    params->prev_peaks = NULL;
}

int destroy_mq(MQParameters* params)
{
    if(params)
    {
        if(params->fft_in) free(params->fft_in);
        if(params->fft_out) free(params->fft_out);
        fftw_destroy_plan(params->fft_plan);
    }
    return 0;
}

/* -------------------------------------------------------------------------
 * Peak Detection
 */

/* Add new_peak to the doubly linked list of peaks, keeping peaks sorted
 * with the largest amplitude peaks at the start of the list
 */
void add_peak(Peak* new_peak, PeakList* peak_list)
{
    do
    {
        if(peak_list->peak)
        {
            if(peak_list->peak->amplitude > new_peak->amplitude)
            {
                if(peak_list->next)
                {
                    peak_list = peak_list->next;
                }
                else
                {
                    PeakList* new_node = (PeakList*)malloc(sizeof(PeakList));
                    new_node->peak = new_peak;
                    new_node->prev = peak_list;
                    new_node->next = NULL;
                    new_node->prev->next = new_node;
                    return;
                }
            }
            else
            {
                PeakList* new_node = (PeakList*)malloc(sizeof(PeakList));
                new_node->peak = peak_list->peak;
                new_node->prev = peak_list;
                new_node->next = peak_list->next;
                peak_list->next = new_node;
                peak_list->peak = new_peak;
                return;
            }
        }
        else
        {
            /* should only happen for the first peak */
            peak_list->peak = new_peak;
            return;
        }
    }
    while(1);
}

/* delete the given PeakList */
void delete_peak_list(PeakList* peak_list)
{
    /* destroy list of peaks */
    while(peak_list && peak_list->next)
    {
        if(peak_list->peak)
        {
            free(peak_list->peak);
        }
        PeakList* temp = peak_list->next;
        free(peak_list);
        peak_list = temp;
    }
    free(peak_list);
}

sample get_magnitude(sample x, sample y)
{
    return sqrt((x*x) + (y*y));
}

sample get_phase(sample x, sample y)
{
    return atan2(y, x);
}

PeakList* find_peaks(int signal_size, sample* signal, MQParameters* params)
{
    int i;
    int num_peaks = 0;
    sample prev_amp, current_amp, next_amp;
    PeakList* peak_list = (PeakList*)malloc(sizeof(PeakList));
    peak_list->next = NULL;
    peak_list->prev = NULL;
    peak_list->peak = NULL;

    /* take fft of the signal */
    memcpy(params->fft_in, signal, sizeof(sample)*params->frame_size);
    hann_window(params->frame_size, params->fft_in);
    fftw_execute(params->fft_plan);

    /* get initial magnitudes */
    prev_amp = get_magnitude(params->fft_out[0][0], params->fft_out[0][1]); 
    current_amp = get_magnitude(params->fft_out[1][0], params->fft_out[1][1]); 

    /* find all peaks in the amplitude spectrum */
    for(i = 1; i < params->num_bins-1; i++)
    {
        next_amp = get_magnitude(params->fft_out[i+1][0], params->fft_out[i+1][1]); 

        if((current_amp > prev_amp) && 
           (current_amp > next_amp) &&
           (current_amp > params->peak_threshold))
        {
            /* create a new Peak */
            Peak* p = (Peak*)malloc(sizeof(Peak));
            p->amplitude = current_amp;
            p->frequency = i * params->fundamental;
            p->phase = get_phase(params->fft_out[i][0], params->fft_out[i][1]);
            p->bin = i;
            p->next = NULL;
            p->prev = NULL;

            /* add it to the appropriate position in the list of Peaks */
            add_peak(p, peak_list);
            num_peaks++;
        }
        prev_amp = current_amp;
        current_amp = next_amp;
    }

    /* limit peaks to a maximum of max_peaks
     */
    if(num_peaks > params->max_peaks)
    {
        PeakList* current = peak_list;
        for(i = 0; i < params->max_peaks-1; i++)
        {
            current = current->next;
        }

        delete_peak_list(current->next);
        current->next = NULL;
        num_peaks = params->max_peaks;
    }

    return sort_peaks_by_frequency(peak_list, num_peaks);
}

/* -------------------------------------------------------------------------
 * Sorting
 */

PeakList* merge(PeakList* list1, PeakList* list2)
{
    PeakList* merged_head = NULL;
    PeakList* merged_tail;

    while(list1 || list2)
    {
        if(list1 && list2)
        {
            if(list1->peak->frequency <= list2->peak->frequency)
            {
                if(!merged_head)
                {
                    merged_head = list1;
                    merged_tail = merged_head;
                }
                else
                {
                    merged_tail->next = list1;
                    merged_tail = merged_tail->next;
                }
                list1 = list1->next;
                merged_tail->next = NULL;
            }
            else
            {
                if(!merged_head)
                {
                    merged_head = list2;
                    merged_tail = merged_head;
                }
                else
                {
                    merged_tail->next = list2;
                    merged_tail = merged_tail->next;
                }
                list2 = list2->next;
                merged_tail->next = NULL;
            }
        }
        else if(list1)
        {
            if(!merged_head)
            {
                merged_head = list1;
                merged_tail = merged_head;
            }
            else
            {
                merged_tail->next = list1;
                merged_tail = merged_tail->next;
            }
            list1 = list1->next;
            merged_tail->next = NULL;
        }
        else if(list2)
        {
            if(!merged_head)
            {
                merged_head = list2;
                merged_tail = merged_head;
            }
            else
            {
                merged_tail->next = list2;
                merged_tail = merged_tail->next;
            }
            list2 = list2->next;
            merged_tail->next = NULL;
        }
    }

    return merged_head;
}

PeakList* merge_sort(PeakList* peak_list, int num_peaks)
{
    if(num_peaks <= 1)
    {
        return peak_list;
    }

    PeakList* left;
    PeakList* right;
    PeakList* current = peak_list;
    int n = 0;

    /* find the index of the middle peak. If we have an odd number, 
     * give the extra peak to the left */
    int middle;
    if(num_peaks % 2 == 0)
    {
        middle = num_peaks/2;
    }
    else
    {
        middle = (num_peaks/2) + 1;
    }

    /* split the peak list into left and right at the middle value */
    left = peak_list;
    while(current)
    {
        if(n == middle-1)
        {
            right = current->next;
            current->next = NULL;
            break;
        }

        n++;
        current = current->next;
    }

    /* recursively sort and merge */
    left = merge_sort(left, middle);
    right = merge_sort(right, num_peaks-middle);
    return merge(left, right);
}

/*
 * Sort peak_list into a list order from smaller to largest frequency.
 */
PeakList* sort_peaks_by_frequency(PeakList* peak_list, int num_peaks)
{
    if(!peak_list || num_peaks == 0)
    {
        return NULL;
    }
    else
    {
        return merge_sort(peak_list, num_peaks);
    }
}

/* -------------------------------------------------------------------------
 * Partial Tracking
 */

/*
 * Find a candidate match for peak in frame if one exists. This is the closest
 * (in frequency) match that is within the matching interval.
 */
Peak* find_closest_match(Peak* p, PeakList* peak_list, MQParameters* params, int backwards)
{
    PeakList* current = peak_list;
    Peak* match = NULL;
    sample best_distance = 44100.0; /* TODO: set this to params->sampling_rate */
    sample distance;

    while(current && current->peak)
    {
        if(backwards)
        {
            if(current->peak->prev)
            {
                current = current->next;
                continue;
            }
        }
        else
        {
            if(current->peak->next)
            {
                current = current->next;
                continue;
            }
        }

        distance = fabs(current->peak->frequency - p->frequency);
        if((distance < params->matching_interval) &&
           (distance < best_distance))
        {
            best_distance = distance;
            match = current->peak;
        }
        current = current->next;
    }

    return match;
}

/*
 * Returns the closest unmatched peak in frame with a frequency less than p.frequency.
 */
Peak* free_peak_below(Peak* p, PeakList* peak_list)
{
    PeakList* current = peak_list;
    Peak* free_peak = NULL;
    sample closest_frequency = 44100; /* TODO: set this to params->sampling_rate */

    while(current && current->peak)
    {
        if(current->peak != p)
        {
            /* if current peak is unmatched, and it is closer to p than the last
             * unmatched peak that we saw, save it */
            if(!current->peak->prev && (current->peak->frequency < p->frequency) &&
               (fabs(current->peak->frequency - p->frequency) < closest_frequency))
            {
                closest_frequency = fabs(current->peak->frequency - p->frequency);
                free_peak = current->peak;
            }
        }
        current = current->next;
    }
    return free_peak;
}

/*
 * A simplified version of MQ Partial Tracking.
 */
PeakList* track_peaks(PeakList* peak_list, MQParameters* params)
{
    PeakList* current = peak_list;

    /* MQ algorithm needs 2 frames of data, so return if this is the first frame */
    if(params->prev_peaks)
    {
        /* find all matches for previous peaks in the current frame */
        current = params->prev_peaks;
        while(current && current->peak)
        {
            Peak* match = find_closest_match(current->peak, peak_list, params, 1);
            /*printf("peak: %f\n", current->peak->frequency);*/
            if(match)
            {
                Peak* closest_to_cand = find_closest_match(match, params->prev_peaks, params, 0);
                if(closest_to_cand != current->peak)
                {
                    /*printf("%f closer to %f\n", match->frequency, closest_to_cand->frequency);*/
                    /* see if the closest peak with lower frequency to the candidate is within
                     * the matching interval
                     */
                    Peak* lower = free_peak_below(match, peak_list);
                    if(lower)
                    {
                        if(fabs(lower->frequency - current->peak->frequency) < params->matching_interval)
                        {
                            lower->prev = current->peak;
                            current->peak->next = lower;
                        }
                    }
                }
                /* if closest_peak == peak, it is a definitive match */
                else
                {
                    match->prev = current->peak;
                    current->peak->next = match;
                }
            }
            current = current->next;
        }
    }

    params->prev_peaks = peak_list;
    return peak_list;
}

/* -------------------------------------------------------------------------
 * Testing
 */

/*
 * Prints the frequency values of all peaks in p.
 */
void print_list(PeakList* p)
{
    int i = 0;
    while(p)
    {
        printf("%d: freq=%f\n", i, p->peak->frequency);
        p = p->next;
        i++;
    }
}