summaryrefslogtreecommitdiff
path: root/tests/test_sms.py
blob: 5b4cc4decf0e24ec3d8d4ced2421ee572cfc2681 (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
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
import simpl
from simpl import simplsms
import pysms
import numpy as np
from scipy.io.wavfile import read
from nose.tools import assert_almost_equals

class TestSimplSMS(object):
    FLOAT_PRECISION = 2 # number of decimal places to check for accuracy
    input_file = 'audio/flute.wav'
    hop_size = 512
    num_frames = 50
    num_samples = num_frames * hop_size
    max_peaks = 10
    max_partials = 10

    def get_audio(self):
        audio_data = read(self.input_file)
        audio = simpl.asarray(audio_data[1]) / 32768.0
        sampling_rate = audio_data[0]
        return audio[0:self.num_samples], sampling_rate

    def pysms_analysis_params(self, sampling_rate):
        analysis_params = pysms.SMS_AnalParams()
        pysms.sms_initAnalParams(analysis_params)
        analysis_params.iSamplingRate = sampling_rate
        analysis_params.iFrameRate = sampling_rate / self.hop_size
        analysis_params.iWindowType = pysms.SMS_WIN_HAMMING
        analysis_params.fDefaultFundamental = 100
        analysis_params.fHighestFreq = 20000
        analysis_params.iFormat = pysms.SMS_FORMAT_HP
        analysis_params.nTracks = self.max_peaks
        analysis_params.peakParams.iMaxPeaks = self.max_peaks
        analysis_params.nGuides = self.max_peaks
        analysis_params.iMaxDelayFrames = 4
        analysis_params.analDelay = 0
        analysis_params.minGoodFrames = 1
        analysis_params.iCleanTracks = 0
        analysis_params.iStochasticType = pysms.SMS_STOC_NONE
        analysis_params.preEmphasis = 0
        return analysis_params

    def simplsms_analysis_params(self, sampling_rate):
        analysis_params = simplsms.SMS_AnalParams()
        simplsms.sms_initAnalParams(analysis_params)
        analysis_params.iSamplingRate = sampling_rate
        analysis_params.iFrameRate = sampling_rate / self.hop_size
        analysis_params.iWindowType = simplsms.SMS_WIN_HAMMING
        analysis_params.fDefaultFundamental = 100
        analysis_params.fHighestFreq = 20000
        analysis_params.iFormat = simplsms.SMS_FORMAT_HP
        analysis_params.nTracks = self.max_peaks
        analysis_params.maxPeaks = self.max_peaks
        analysis_params.nGuides = self.max_peaks
        analysis_params.iMaxDelayFrames = 4
        analysis_params.analDelay = 0
        analysis_params.minGoodFrames = 1
        analysis_params.iCleanTracks = 0
        analysis_params.iStochasticType = simplsms.SMS_STOC_NONE
        analysis_params.preEmphasis = 0
        return analysis_params

    def pysms_synthesis_params(self, sampling_rate):
        synth_params = pysms.SMS_SynthParams() 
        pysms.sms_initSynthParams(synth_params)
        synth_params.iSamplingRate = sampling_rate
        synth_params.iSynthesisType = pysms.SMS_STYPE_DET
        synth_params.iStochasticType = pysms.SMS_STOC_NONE
        synth_params.sizeHop = self.hop_size 
        synth_params.nTracks = self.max_peaks
        synth_params.deEmphasis = 0
        return synth_params

    def test_size_next_read(self):
        """test_size_next_read
        Make sure pysms PeakDetection is calculating 
        the correct value for the size of the next frame."""
        audio, sampling_rate = self.get_audio()
        pysms.sms_init()
        snd_header = pysms.SMS_SndHeader()
        # Try to open the input file to fill snd_header
        if(pysms.sms_openSF(self.input_file, snd_header)):
            raise NameError("error opening sound file: " + pysms.sms_errorString())
        analysis_params = self.pysms_analysis_params(sampling_rate)
        analysis_params.iMaxDelayFrames = self.num_frames + 1
        if pysms.sms_initAnalysis(analysis_params, snd_header) != 0:
            raise Exception("Error allocating memory for analysis_params")
        analysis_params.nFrames = self.num_frames
        sms_header = pysms.SMS_Header()
        pysms.sms_fillHeader(sms_header, analysis_params, "pysms")

        sample_offset = 0
        pysms_size_new_data = 0
        current_frame = 0
        sms_next_read_sizes = []

        while current_frame < self.num_frames:
            sms_next_read_sizes.append(analysis_params.sizeNextRead)
            sample_offset += pysms_size_new_data
            pysms_size_new_data = analysis_params.sizeNextRead
            # convert frame to floats for libsms
            frame = audio[sample_offset:sample_offset + pysms_size_new_data]
            frame = np.array(frame, dtype=np.float32)
            if len(frame) < pysms_size_new_data:
                frame = np.hstack((frame, np.zeros(pysms_size_new_data - len(frame),
                                                   dtype=np.float32)))
            analysis_data = pysms.SMS_Data()
            pysms.sms_allocFrameH(sms_header, analysis_data)
            status = pysms.sms_analyze(frame, analysis_data, analysis_params)  
            # as the no. of frames of delay is > num_frames, sms_analyze should
            # never get around to performing partial tracking, and so the return
            # value should be 0
            assert status == 0
            pysms.sms_freeFrame(analysis_data)
            current_frame += 1

        pysms.sms_freeAnalysis(analysis_params)
        pysms.sms_closeSF()
        pysms.sms_free()

        pd = simpl.SMSPeakDetection()
        pd.hop_size = self.hop_size
        pd.max_peaks = self.max_peaks
        current_frame = 0
        sample_offset = 0

        while current_frame < self.num_frames:
            pd.frame_size = pd.get_next_frame_size()
            #print current_frame, sms_next_read_sizes[current_frame], pd.frame_size
            assert sms_next_read_sizes[current_frame] == pd.frame_size
            frame = simpl.Frame()
            frame.size = pd.frame_size
            frame.audio = audio[sample_offset:sample_offset + pd.frame_size]
            pd.find_peaks_in_frame(frame)
            sample_offset += pd.frame_size
            current_frame += 1

    def test_sms_analyze(self):
        """test_sms_analyze
        Make sure that the simplsms.sms_analyze function does the same thing
        as the sms_analyze function from libsms."""
        audio, sampling_rate = self.get_audio()
        pysms.sms_init()
        snd_header = pysms.SMS_SndHeader()
        # Try to open the input file to fill snd_header
        if(pysms.sms_openSF(self.input_file, snd_header)):
            raise NameError("error opening sound file: " + pysms.sms_errorString())
        analysis_params = self.pysms_analysis_params(sampling_rate)
        if pysms.sms_initAnalysis(analysis_params, snd_header) != 0:
            raise Exception("Error allocating memory for analysis_params")
        analysis_params.nFrames = self.num_frames
        analysis_params.iSizeSound = self.num_samples
        sms_header = pysms.SMS_Header()
        pysms.sms_fillHeader(sms_header, analysis_params, "pysms")

        sample_offset = 0
        size_new_data = 0
        current_frame = 0
        sms_frames = []
        do_analysis = True

        while do_analysis and (current_frame < self.num_frames):
            sample_offset += size_new_data
            size_new_data = analysis_params.sizeNextRead
            # convert frame to floats for libsms
            frame = simpl.Frame()
            frame.size = size_new_data
            frame.audio = np.array(audio[sample_offset:sample_offset + size_new_data],
                                   dtype=np.float32)
            if len(frame.audio) < size_new_data:
                frame.audio = np.hstack((frame.audio, np.zeros(size_new_data - len(frame.audio),
                                                               dtype=np.float32)))
            analysis_data = pysms.SMS_Data()
            pysms.sms_allocFrameH(sms_header, analysis_data)
            status = pysms.sms_analyze(frame.audio, analysis_data, analysis_params)  
            num_partials = analysis_data.nTracks
            peaks = []

            if status == 1:
                sms_amps = np.zeros(num_partials, dtype=np.float32)
                sms_freqs = np.zeros(num_partials, dtype=np.float32)
                sms_phases = np.zeros(num_partials, dtype=np.float32)
                analysis_data.getSinFreq(sms_freqs)
                analysis_data.getSinAmp(sms_amps)
                analysis_data.getSinPhase(sms_phases)
                for i in range(num_partials):
                    p = simpl.Peak()
                    p.amplitude = sms_amps[i]
                    p.frequency = sms_freqs[i]
                    p.phase = sms_phases[i]
                    peaks.append(p)
            else:
                for i in range(num_partials):
                    p = simpl.Peak()
                    p.amplitude = 0.0
                    p.frequency = 0.0
                    p.phase = 0.0
                    peaks.append(p)

            if status == -1:
                do_analysis = False

            frame.partials = peaks
            sms_frames.append(frame)
            pysms.sms_freeFrame(analysis_data)
            current_frame += 1

        pysms.sms_freeAnalysis(analysis_params)
        pysms.sms_closeSF()
        pysms.sms_free()

        audio, sampling_rate = self.get_audio()
        simplsms.sms_init()
        simpl_analysis_params = self.simplsms_analysis_params(sampling_rate)
        if simplsms.sms_initAnalysis(simpl_analysis_params) != 0:
            raise Exception("Error allocating memory for analysis_params")
        simpl_analysis_params.nFrames = self.num_frames
        simpl_analysis_params.iSizeSound = self.num_samples
        simpl_sms_header = simplsms.SMS_Header()
        simplsms.sms_fillHeader(simpl_sms_header, simpl_analysis_params, "simplsms")

        sample_offset = 0
        size_new_data = 0
        current_frame = 0
        simplsms_frames = []
        do_analysis = True

        while do_analysis and (current_frame < self.num_frames):
            sample_offset += size_new_data
            size_new_data = simpl_analysis_params.sizeNextRead
            frame = simpl.Frame()
            frame.size = size_new_data
            frame.audio = audio[sample_offset:sample_offset + size_new_data]
            if len(frame.audio) < size_new_data:
                frame.audio = np.hstack((frame.audio, simpl.zeros(size_new_data - len(frame.audio))))
            analysis_data = simplsms.SMS_Data()
            simplsms.sms_allocFrameH(simpl_sms_header, analysis_data)
            status = simplsms.sms_analyze(frame.audio, analysis_data, simpl_analysis_params)  
            num_partials = analysis_data.nTracks
            peaks = []

            if status == 1:
                freqs = simpl.zeros(num_partials)
                amps = simpl.zeros(num_partials)
                phases = simpl.zeros(num_partials)
                analysis_data.getSinAmp(amps)
                analysis_data.getSinFreq(freqs)
                analysis_data.getSinPhase(phases)
                for i in range(num_partials):
                    p = simpl.Peak()
                    p.amplitude = amps[i]
                    p.frequency = freqs[i]
                    p.phase = phases[i]
                    peaks.append(p)
            else:
                for i in range(num_partials):
                    p = simpl.Peak()
                    p.amplitude = 0.0
                    p.frequency = 0.0
                    p.phase = 0.0
                    peaks.append(p)

            if status == -1:
                do_analysis = False

            frame.partials = peaks
            simplsms_frames.append(frame)
            simplsms.sms_freeFrame(analysis_data)
            current_frame += 1

        simplsms.sms_freeAnalysis(simpl_analysis_params)
        simplsms.sms_free()

        # make sure both have the same number of partials
        assert len(sms_frames) == len(simplsms_frames)

        # make sure each partial is the same
        for i in range(len(sms_frames)):
            assert len(sms_frames[i].partials) == len(simplsms_frames[i].partials)
            for p in range(len(sms_frames[i].partials)):
                assert_almost_equals(sms_frames[i].partials[p].amplitude,
                                     simplsms_frames[i].partials[p].amplitude,
                                     self.FLOAT_PRECISION)
                assert_almost_equals(sms_frames[i].partials[p].frequency,
                                     simplsms_frames[i].partials[p].frequency,
                                     self.FLOAT_PRECISION)
                assert_almost_equals(sms_frames[i].partials[p].phase,
                                     simplsms_frames[i].partials[p].phase,
                                     self.FLOAT_PRECISION)

    def test_multi_sms_peak_detection(self): 
        """test_multi_sms_peak_detection
        Test that running the same peak detection process twice in a row
        produces the same results each time. This makes sure that results
        are independent, and also helps to highlight any memory errors."""
        audio, sampling_rate = self.get_audio()
        simplsms.sms_init()
        analysis_params = self.simplsms_analysis_params(sampling_rate)
        analysis_params.iMaxDelayFrames = self.num_frames + 1
        if simplsms.sms_initAnalysis(analysis_params) != 0:
            raise Exception("Error allocating memory for analysis_params")
        analysis_params.nFrames = self.num_frames
        sms_header = simplsms.SMS_Header()
        simplsms.sms_fillHeader(sms_header, analysis_params, "simplsms")

        sample_offset = 0
        size_new_data = 0
        current_frame = 0
        peaks1 = []

        while current_frame < self.num_frames:
            sample_offset += size_new_data
            size_new_data = analysis_params.sizeNextRead
            frame = audio[sample_offset:sample_offset + size_new_data]
            analysis_data = simplsms.SMS_Data()
            simplsms.sms_allocFrameH(sms_header, analysis_data)
            status = simplsms.sms_analyze(frame, analysis_data, analysis_params)  
            # as the no. of frames of delay is > num_frames, sms_analyze should
            # never get around to performing partial tracking, and so the return
            # value should be 0
            assert status == 0
            num_peaks = analysis_data.nTracks
            frame_peaks = []
            simplsms_freqs = simpl.zeros(num_peaks)
            simplsms_amps = simpl.zeros(num_peaks)
            simplsms_phases = simpl.zeros(num_peaks)
            analysis_data.getSinFreq(simplsms_freqs)
            analysis_data.getSinAmp(simplsms_amps)
            analysis_data.getSinPhase(simplsms_phases)
            for i in range(num_peaks):
                if simplsms_amps[i]:
                    p = simpl.Peak()
                    # convert amplitude back to linear
                    p.amplitude = 10**(simplsms_amps[i]/20.0)
                    p.frequency = simplsms_freqs[i]
                    p.phase = simplsms_phases[i]
                    frame_peaks.append(p)
            peaks1.append(frame_peaks)
            pysms.sms_freeFrame(analysis_data)
            current_frame += 1

        simplsms.sms_freeAnalysis(analysis_params)
        simplsms.sms_free()

        # Second run
        audio, sampling_rate = self.get_audio()
        simplsms.sms_init()
        analysis_params = self.simplsms_analysis_params(sampling_rate)
        analysis_params.iMaxDelayFrames = self.num_frames + 1
        if simplsms.sms_initAnalysis(analysis_params) != 0:
            raise Exception("Error allocating memory for analysis_params")
        analysis_params.nFrames = self.num_frames
        sms_header = simplsms.SMS_Header()
        simplsms.sms_fillHeader(sms_header, analysis_params, "simplsms")

        sample_offset = 0
        size_new_data = 0
        current_frame = 0
        peaks2 = []

        while current_frame < self.num_frames:
            sample_offset += size_new_data
            size_new_data = analysis_params.sizeNextRead
            frame = audio[sample_offset:sample_offset + size_new_data]
            analysis_data = simplsms.SMS_Data()
            simplsms.sms_allocFrameH(sms_header, analysis_data)
            status = simplsms.sms_analyze(frame, analysis_data, analysis_params)  
            # as the no. of frames of delay is > num_frames, sms_analyze should
            # never get around to performing partial tracking, and so the return
            # value should be 0
            assert status == 0
            num_peaks = analysis_data.nTracks
            frame_peaks = []
            simplsms_freqs = simpl.zeros(num_peaks)
            simplsms_amps = simpl.zeros(num_peaks)
            simplsms_phases = simpl.zeros(num_peaks)
            analysis_data.getSinFreq(simplsms_freqs)
            analysis_data.getSinAmp(simplsms_amps)
            analysis_data.getSinPhase(simplsms_phases)
            for i in range(num_peaks):
                if simplsms_amps[i]:
                    p = simpl.Peak()
                    # convert amplitude back to linear
                    p.amplitude = 10**(simplsms_amps[i]/20.0)
                    p.frequency = simplsms_freqs[i]
                    p.phase = simplsms_phases[i]
                    frame_peaks.append(p)
            peaks2.append(frame_peaks)
            pysms.sms_freeFrame(analysis_data)
            current_frame += 1

        simplsms.sms_freeAnalysis(analysis_params)
        simplsms.sms_free()

        # make sure we have the same number of frames in each run
        assert len(peaks1) == len(peaks2)
        for f in range(len(peaks1)):
            # in each frame, make sure that we have the same number of peaks
            assert len(peaks1[f]) == len(peaks2[f])
            # make sure that each peak has the same value
            for p in range(len(peaks1[f])):
                assert_almost_equals(peaks1[f][p].frequency, 
                                     peaks2[f][p].frequency,
                                     self.FLOAT_PRECISION)
                assert_almost_equals(peaks1[f][p].amplitude, 
                                     peaks2[f][p].amplitude,
                                     self.FLOAT_PRECISION)
                assert_almost_equals(peaks1[f][p].phase, 
                                     peaks2[f][p].phase,
                                     self.FLOAT_PRECISION)

    def test_multi_simpl_peak_detection(self): 
        """test_multi_simpl_peak_detection
        Test that running the simpl peak detection process twice in a row
        produces the same results each time. This makes sure that results
        are independent, and also helps to highlight any memory errors."""
        audio, sampling_rate = self.get_audio()
        pd = simpl.SMSPeakDetection()
        pd.max_peaks = self.max_peaks
        pd.hop_size = self.hop_size 
        frames1 = pd.find_peaks(audio)[0:self.num_frames]
        del pd
        # second run
        audio, sampling_rate = self.get_audio()
        pd = simpl.SMSPeakDetection()
        pd.max_peaks = self.max_peaks
        pd.hop_size = self.hop_size 
        frames2 = pd.find_peaks(audio)[0:self.num_frames]

        # make sure we have the same number of frames in each run
        assert len(frames1) == len(frames2)
        for f in range(len(frames1)):
            # in each frame, make sure that we have the same number of peaks
            assert len(frames1[f].peaks) == len(frames2[f].peaks)
            # make sure that each peak has the same value
            for p in range(len(frames1[f].peaks)):
                assert_almost_equals(frames1[f].peaks[p].frequency, 
                                     frames2[f].peaks[p].frequency,
                                     self.FLOAT_PRECISION)
                assert_almost_equals(frames1[f].peaks[p].amplitude, 
                                     frames2[f].peaks[p].amplitude,
                                     self.FLOAT_PRECISION)
                assert_almost_equals(frames1[f].peaks[p].phase, 
                                     frames2[f].peaks[p].phase,
                                     self.FLOAT_PRECISION)

    def test_peak_detection(self): 
        """test_peak_detection
        Compare simplsms Peaks with SMS peaks. Exact peak
        information cannot be retrieved using libsms. Basic peak detection
        is performed by sms_detectPeaks, but this is called multiple times
        with different frame sizes by sms_analyze. This peak data cannot
        be returned from sms_analyze without modifying it, so here
        we compare the peaks to a slightly modified version of sms_analyze 
        from simplsms. The peak values should be the same as those found by 
        the simplsms find_peaks function. Analyses have to be performed
        separately due to libsms implementation issues."""
        audio, sampling_rate = self.get_audio()
        simplsms.sms_init()
        analysis_params = self.simplsms_analysis_params(sampling_rate)
        analysis_params.iMaxDelayFrames = self.num_frames + 1
        if simplsms.sms_initAnalysis(analysis_params) != 0:
            raise Exception("Error allocating memory for analysis_params")
        analysis_params.nFrames = self.num_frames
        sms_header = simplsms.SMS_Header()
        simplsms.sms_fillHeader(sms_header, analysis_params, "simplsms")

        sample_offset = 0
        size_new_data = 0
        current_frame = 0
        sms_peaks = []

        while current_frame < self.num_frames:
            sample_offset += size_new_data
            size_new_data = analysis_params.sizeNextRead
            frame = audio[sample_offset:sample_offset + size_new_data]
            if len(frame) < size_new_data:
                frame = np.hstack((frame, simpl.zeros(size_new_data - len(frame))))
            analysis_data = simplsms.SMS_Data()
            simplsms.sms_allocFrameH(sms_header, analysis_data)
            status = simplsms.sms_analyze(frame, analysis_data, analysis_params)  
            # as the no. of frames of delay is > num_frames, sms_analyze should
            # never get around to performing partial tracking, and so the return
            # value should be 0
            assert status == 0
            num_peaks = analysis_data.nTracks
            frame_peaks = []
            simplsms_freqs = simpl.zeros(num_peaks)
            simplsms_amps = simpl.zeros(num_peaks)
            simplsms_phases = simpl.zeros(num_peaks)
            analysis_data.getSinFreq(simplsms_freqs)
            analysis_data.getSinAmp(simplsms_amps)
            analysis_data.getSinPhase(simplsms_phases)
            for i in range(num_peaks):
                if simplsms_amps[i]:
                    p = simpl.Peak()
                    # convert amplitude back to linear
                    p.amplitude = simplsms_amps[i]
                    p.frequency = simplsms_freqs[i]
                    p.phase = simplsms_phases[i]
                    frame_peaks.append(p)
            sms_peaks.append(frame_peaks)
            pysms.sms_freeFrame(analysis_data)
            current_frame += 1

        simplsms.sms_freeAnalysis(analysis_params)
        simplsms.sms_free()

        # get simpl peaks
        pd = simpl.SMSPeakDetection()
        pd.hop_size = self.hop_size 
        pd.max_peaks = self.max_peaks
        current_frame = 0
        sample_offset = 0
        simpl_peaks = []

        while current_frame < self.num_frames:
            pd.frame_size = pd.get_next_frame_size()
            frame = simpl.Frame()
            frame.size = pd.frame_size
            frame.audio = audio[sample_offset:sample_offset + pd.frame_size]
            if len(frame.audio) < pd.frame_size:
                frame.audio = np.hstack((frame.audio, simpl.zeros(pd.frame_size - len(frame.audio))))
            simpl_peaks.append(pd.find_peaks_in_frame(frame))
            sample_offset += pd.frame_size
            current_frame += 1

        # make sure we have the same number of frames
        assert len(sms_peaks) == len(simpl_peaks)

        # compare data for each frame
        for frame_number in range(len(sms_peaks)):
            sms_frame = sms_peaks[frame_number]
            simpl_frame = simpl_peaks[frame_number]
            # make sure we have the same number of peaks in each frame
            assert len(sms_frame) == len(simpl_frame)
            # check peak values
            for peak_number in range(len(sms_frame)):
                sms_peak = sms_frame[peak_number]
                simpl_peak = simpl_frame[peak_number]
                assert_almost_equals(sms_peak.amplitude, simpl_peak.amplitude,
                                     self.FLOAT_PRECISION)
                assert_almost_equals(sms_peak.frequency, simpl_peak.frequency,
                                     self.FLOAT_PRECISION)
                assert_almost_equals(sms_peak.phase, simpl_peak.phase,
                                     self.FLOAT_PRECISION)  

    def test_multi_pysms_analyze(self): 
        """test_multi_pysms_analyze
        Test that running the pysms sms_analyze function twice in a row
        produces the same results each time. This makes sure that results
        are independent, and also helps to highlight any memory errors."""
        audio, sampling_rate = self.get_audio()
        pysms.sms_init()
        snd_header = pysms.SMS_SndHeader()
        # Try to open the input file to fill snd_header
        if(pysms.sms_openSF(self.input_file, snd_header)):
            raise NameError("error opening sound file: " + pysms.sms_errorString())
        analysis_params = self.pysms_analysis_params(sampling_rate)
        if pysms.sms_initAnalysis(analysis_params, snd_header) != 0:
            raise Exception("Error allocating memory for analysis_params")
        analysis_params.iSizeSound = self.num_samples
        sms_header = pysms.SMS_Header()
        pysms.sms_fillHeader(sms_header, analysis_params, "pysms")

        sample_offset = 0
        size_new_data = 0
        current_frame = 0
        freqs1 = []
        amps1 = []
        phases1 = []
        do_analysis = True

        while do_analysis and (current_frame < self.num_frames):
            sample_offset += size_new_data
            size_new_data = analysis_params.sizeNextRead
            # convert frame to floats for libsms
            frame = audio[sample_offset:sample_offset + size_new_data]
            frame = np.array(frame, dtype=np.float32)
            analysis_data = pysms.SMS_Data()
            pysms.sms_allocFrameH(sms_header, analysis_data)
            status = pysms.sms_analyze(frame, analysis_data, analysis_params)  
            if status == 1:
                num_partials = analysis_data.nTracks
                freqs = np.zeros(num_partials, dtype=np.float32)
                amps = np.zeros(num_partials, dtype=np.float32)
                phases = np.zeros(num_partials, dtype=np.float32)
                analysis_data.getSinFreq(freqs)
                analysis_data.getSinAmp(amps)
                analysis_data.getSinPhase(phases)
                amps1.append(amps)
                freqs1.append(freqs)
                phases1.append(phases)
            elif status == -1:
                do_analysis = False
            pysms.sms_freeFrame(analysis_data)
            current_frame += 1

        pysms.sms_freeAnalysis(analysis_params)
        pysms.sms_closeSF()
        pysms.sms_free()

        # second run
        audio, sampling_rate = self.get_audio()
        pysms.sms_init()
        snd_header = pysms.SMS_SndHeader()
        # Try to open the input file to fill snd_header
        if(pysms.sms_openSF(self.input_file, snd_header)):
            raise NameError("error opening sound file: " + pysms.sms_errorString())
        analysis_params = self.pysms_analysis_params(sampling_rate)
        if pysms.sms_initAnalysis(analysis_params, snd_header) != 0:
            raise Exception("Error allocating memory for analysis_params")
        analysis_params.iSizeSound = self.num_samples
        sms_header = pysms.SMS_Header()
        pysms.sms_fillHeader(sms_header, analysis_params, "pysms")

        sample_offset = 0
        size_new_data = 0
        current_frame = 0
        freqs2 = []
        amps2 = []
        phases2 = []
        do_analysis = True

        while do_analysis and (current_frame < self.num_frames):
            sample_offset += size_new_data
            size_new_data = analysis_params.sizeNextRead
            # convert frame to floats for libsms
            frame = audio[sample_offset:sample_offset + size_new_data]
            frame = np.array(frame, dtype=np.float32)
            analysis_data = pysms.SMS_Data()
            pysms.sms_allocFrameH(sms_header, analysis_data)
            status = pysms.sms_analyze(frame, analysis_data, analysis_params)  
            if status == 1:
                num_partials = analysis_data.nTracks
                freqs = np.zeros(num_partials, dtype=np.float32)
                amps = np.zeros(num_partials, dtype=np.float32)
                phases = np.zeros(num_partials, dtype=np.float32)
                analysis_data.getSinFreq(freqs)
                analysis_data.getSinAmp(amps)
                analysis_data.getSinPhase(phases)
                amps2.append(amps)
                freqs2.append(freqs)
                phases2.append(phases)
            elif status == -1:
                do_analysis = False
            pysms.sms_freeFrame(analysis_data)
            current_frame += 1

        pysms.sms_freeAnalysis(analysis_params)
        pysms.sms_closeSF()
        pysms.sms_free()

        # make sure we have the same number of results in each run
        assert len(freqs1) == len(freqs2)
        assert len(amps1) == len(amps2)
        assert len(phases1) == len(phases2)

        for r in range(len(freqs1)):
           # in each result, make sure that we have the same number amps, freqs and phases
           assert len(freqs1[r]) == len(freqs2[r])
           assert len(amps1[r]) == len(amps2[r])
           assert len(phases1[r]) == len(phases2[r])
           # make sure that each partial has the same value
           for p in range(len(freqs1[r])):
               assert_almost_equals(freqs1[r][p], freqs2[r][p], self.FLOAT_PRECISION)
               assert_almost_equals(amps1[r][p], amps2[r][p], self.FLOAT_PRECISION)
               assert_almost_equals(phases1[r][p], phases2[r][p], self.FLOAT_PRECISION)

    def test_multi_simpl_partial_tracking(self): 
        """test_multi_simpl_partial_tracking
        Test that running the simpl peak detection process twice in a row
        produces the same results each time. This makes sure that results
        are independent, and also helps to highlight any memory errors."""
        audio, sampling_rate = self.get_audio()
        pd = simpl.SMSPeakDetection()
        pd.max_peaks = self.max_peaks
        pd.hop_size = self.hop_size 
        peaks = pd.find_peaks(audio)[0:self.num_frames]
        pt = simpl.SMSPartialTracking()
        pt.max_partials = self.max_peaks
        frames1 = pt.find_partials(peaks)
        del pd
        del pt
        # second run
        audio, sampling_rate = self.get_audio()
        pd = simpl.SMSPeakDetection()
        pd.max_peaks = self.max_peaks
        pd.hop_size = self.hop_size 
        peaks = pd.find_peaks(audio)[0:self.num_frames]
        pt = simpl.SMSPartialTracking()
        pt.max_partials = self.max_peaks
        frames2 = pt.find_partials(peaks)

        # make sure we have the same number of partials in each run
        assert len(frames1) == len(frames2)
        for i in range(len(frames1)):
            # make sure each partial is the same length
            assert len(frames1[i].partials) == len(frames2[i].partials)
            # make sure that the peaks in each partial have the same values
            for p in range(len(frames1[i].partials)):
                assert_almost_equals(frames1[i].partials[p].frequency, 
                                     frames2[i].partials[p].frequency, 
                                     self.FLOAT_PRECISION)
                assert_almost_equals(frames1[i].partials[p].amplitude, 
                                     frames2[i].partials[p].amplitude, 
                                     self.FLOAT_PRECISION)
                assert_almost_equals(frames1[i].partials[p].phase, 
                                     frames2[i].partials[p].phase, 
                                     self.FLOAT_PRECISION)

    def test_partial_tracking(self):
        """test_partial_tracking
        Compare pysms Partials with SMS partials.""" 
        audio, sampling_rate = self.get_audio()
        pysms.sms_init()
        snd_header = pysms.SMS_SndHeader()
        # Try to open the input file to fill snd_header
        if(pysms.sms_openSF(self.input_file, snd_header)):
            raise NameError("error opening sound file: " + pysms.sms_errorString())
        analysis_params = self.pysms_analysis_params(sampling_rate)
        if pysms.sms_initAnalysis(analysis_params, snd_header) != 0:
            raise Exception("Error allocating memory for analysis_params")
        analysis_params.iSizeSound = self.num_samples
        analysis_params.nFrames = self.num_frames
        sms_header = pysms.SMS_Header()
        pysms.sms_fillHeader(sms_header, analysis_params, "pysms")

        sample_offset = 0
        size_new_data = 0
        current_frame = 0
        sms_frames = []
        do_analysis = True

        while do_analysis and (current_frame < self.num_frames):
            sample_offset += size_new_data
            size_new_data = analysis_params.sizeNextRead
            # convert frame to floats for libsms
            frame = simpl.Frame()
            frame.size = size_new_data
            frame.audio = np.array(audio[sample_offset:sample_offset + size_new_data],
                                   dtype=np.float32)
            analysis_data = pysms.SMS_Data()
            pysms.sms_allocFrameH(sms_header, analysis_data)
            num_partials = analysis_data.nTracks
            peaks = []
            status = pysms.sms_analyze(frame.audio, analysis_data, analysis_params)  

            if status == 1:
                sms_freqs = np.zeros(num_partials, dtype=np.float32)
                sms_amps = np.zeros(num_partials, dtype=np.float32)
                sms_phases = np.zeros(num_partials, dtype=np.float32)
                analysis_data.getSinFreq(sms_freqs)
                analysis_data.getSinAmp(sms_amps)
                analysis_data.getSinPhase(sms_phases)
                for i in range(num_partials):
                    p = simpl.Peak()
                    p.amplitude = sms_amps[i]
                    p.frequency = sms_freqs[i]
                    p.phase = sms_phases[i]
                    peaks.append(p)
                frame.partials = peaks
                sms_frames.append(frame)
                current_frame += 1

            if status == -1:
                do_analysis = False

            pysms.sms_freeFrame(analysis_data)

        # first frame is blank
        sms_frames = sms_frames[1:]

        # free sms memory
        pysms.sms_freeAnalysis(analysis_params)
        pysms.sms_closeSF()
        pysms.sms_free()

        pd = simpl.SMSPeakDetection()
        pd.max_peaks = self.max_peaks
        pd.hop_size = self.hop_size
        peaks = pd.find_peaks(audio)
        pt = simpl.SMSPartialTracking()
        pt.max_partials = self.max_partials
        simpl_frames = pt.find_partials(peaks)

        # make sure both have the same number of partials
        assert len(sms_frames) == len(simpl_frames)

        # make sure each partial is the same
        for i in range(len(sms_frames)):
            assert len(sms_frames[i].partials) == len(simpl_frames[i].partials)
            for p in range(len(sms_frames[i].partials)):
                assert_almost_equals(sms_frames[i].partials[p].amplitude,
                                     simpl_frames[i].partials[p].amplitude,
                                     self.FLOAT_PRECISION)
                assert_almost_equals(sms_frames[i].partials[p].frequency,
                                     simpl_frames[i].partials[p].frequency,
                                     self.FLOAT_PRECISION)
                assert_almost_equals(sms_frames[i].partials[p].phase,
                                     simpl_frames[i].partials[p].phase,
                                     self.FLOAT_PRECISION)

    def test_sms_interpolate_frames(self):
        """test_sms_interpolate_frames
        Make sure that sms_interpolateFrames returns the expected values
        with interpolation factors of 0 and 1."""
        audio, sampling_rate = self.get_audio()
        pysms.sms_init()
        snd_header = pysms.SMS_SndHeader()
        # Try to open the input file to fill snd_header
        if(pysms.sms_openSF(self.input_file, snd_header)):
            raise NameError("error opening sound file: " + pysms.sms_errorString())
        analysis_params = self.pysms_analysis_params(sampling_rate)
        analysis_params.nFrames = self.num_frames
        if pysms.sms_initAnalysis(analysis_params, snd_header) != 0:
            raise Exception("Error allocating memory for analysis_params")
        analysis_params.iSizeSound = self.num_samples
        sms_header = pysms.SMS_Header()
        pysms.sms_fillHeader(sms_header, analysis_params, "pysms")

        interp_frame = pysms.SMS_Data()
        pysms.sms_allocFrameH(sms_header, interp_frame)

        sample_offset = 0
        size_new_data = 0
        current_frame = 0
        analysis_frames = []
        do_analysis = True

        while do_analysis and (current_frame < self.num_frames):
            sample_offset += size_new_data
            size_new_data = analysis_params.sizeNextRead
            frame = audio[sample_offset:sample_offset + size_new_data]
            # convert frame to floats for libsms
            frame = np.array(frame, dtype=np.float32)
            analysis_data = pysms.SMS_Data()
            pysms.sms_allocFrameH(sms_header, analysis_data)
            status = pysms.sms_analyze(frame, analysis_data, analysis_params)  

            if status == 1:
                analysis_frames.append(analysis_data)
                # test interpolateFrames on the last two analysis frames
                if current_frame == self.num_frames - 1:
                    left_frame = analysis_frames[-2]
                    right_frame = analysis_frames[-1]
                    pysms.sms_interpolateFrames(left_frame, right_frame, interp_frame, 0)
                    # make sure that interp_frame == left_frame
                    # interpolateFrames doesn't interpolate phases so ignore
                    left_amps = np.zeros(self.max_partials, dtype=np.float32)
                    left_freqs = np.zeros(self.max_partials, dtype=np.float32)
                    left_frame.getSinAmp(left_amps)
                    left_frame.getSinFreq(left_freqs)
                    right_amps = np.zeros(self.max_partials, dtype=np.float32)
                    right_freqs = np.zeros(self.max_partials, dtype=np.float32)
                    right_frame.getSinAmp(right_amps)
                    right_frame.getSinFreq(right_freqs)
                    interp_amps = np.zeros(self.max_partials, dtype=np.float32)
                    interp_freqs = np.zeros(self.max_partials, dtype=np.float32)
                    interp_frame.getSinAmp(interp_amps)
                    interp_frame.getSinFreq(interp_freqs)
                    for i in range(self.max_partials):
                        assert_almost_equals(left_amps[i], interp_amps[i],
                                             self.FLOAT_PRECISION)
                        if left_freqs[i] != 0:
                            assert_almost_equals(left_freqs[i], interp_freqs[i],
                                                 self.FLOAT_PRECISION)
                        else:
                            assert_almost_equals(right_freqs[i], interp_freqs[i],
                                                 self.FLOAT_PRECISION)
                    pysms.sms_interpolateFrames(left_frame, right_frame, interp_frame, 1)
                    interp_amps = np.zeros(self.max_partials, dtype=np.float32)
                    interp_freqs = np.zeros(self.max_partials, dtype=np.float32)
                    interp_frame.getSinAmp(interp_amps)
                    interp_frame.getSinFreq(interp_freqs)
                    for i in range(self.max_partials):
                        assert_almost_equals(right_amps[i], interp_amps[i],
                                             self.FLOAT_PRECISION)
                        if right_freqs[i] != 0:
                            assert_almost_equals(right_freqs[i], interp_freqs[i],
                                                 self.FLOAT_PRECISION)
                        else:
                            assert_almost_equals(left_freqs[i], interp_freqs[i],
                                                 self.FLOAT_PRECISION)
            elif status == -1:
                raise Exception("AnalysisStoppedEarly")
            else:
                pysms.sms_freeFrame(analysis_data)
            current_frame += 1

        for frame in analysis_frames:
            pysms.sms_freeFrame(frame)
        pysms.sms_freeFrame(interp_frame)
        pysms.sms_freeAnalysis(analysis_params)
        pysms.sms_closeSF()
        pysms.sms_free()

    def test_simplsms_interpolate_frames(self):
        """test_simplsms_interpolate_frames
        Make sure that sms_interpolateFrames returns the expected values
        with interpolation factors of 0 and 1."""
        audio, sampling_rate = self.get_audio()
        simplsms.sms_init()
        analysis_params = self.simplsms_analysis_params(sampling_rate)
        analysis_params.nFrames = self.num_frames
        if simplsms.sms_initAnalysis(analysis_params) != 0:
            raise Exception("Error allocating memory for analysis_params")
        analysis_params.iSizeSound = self.num_samples
        sms_header = simplsms.SMS_Header()
        simplsms.sms_fillHeader(sms_header, analysis_params, "simplsms")

        interp_frame = simplsms.SMS_Data()
        simplsms.sms_allocFrameH(sms_header, interp_frame)

        sample_offset = 0
        size_new_data = 0
        current_frame = 0
        analysis_frames = []
        do_analysis = True

        while do_analysis and (current_frame < self.num_frames):
            sample_offset += size_new_data
            size_new_data = analysis_params.sizeNextRead
            frame = audio[sample_offset:sample_offset + size_new_data]
            analysis_data = simplsms.SMS_Data()
            simplsms.sms_allocFrameH(sms_header, analysis_data)
            status = simplsms.sms_analyze(frame, analysis_data, analysis_params)  

            if status == 1:
                analysis_frames.append(analysis_data)
                # test interpolateFrames on the last two analysis frames
                if current_frame == self.num_frames - 1:
                    left_frame = analysis_frames[-2]
                    right_frame = analysis_frames[-1]
                    simplsms.sms_interpolateFrames(left_frame, right_frame, interp_frame, 0)
                    # make sure that interp_frame == left_frame
                    # interpolateFrames doesn't interpolate phases so ignore
                    left_amps = simpl.zeros(self.max_partials)
                    left_freqs = simpl.zeros(self.max_partials)
                    left_frame.getSinAmp(left_amps)
                    left_frame.getSinFreq(left_freqs)
                    right_amps = simpl.zeros(self.max_partials)
                    right_freqs = simpl.zeros(self.max_partials)
                    right_frame.getSinAmp(right_amps)
                    right_frame.getSinFreq(right_freqs)
                    interp_amps = simpl.zeros(self.max_partials)
                    interp_freqs = simpl.zeros(self.max_partials)
                    interp_frame.getSinAmp(interp_amps)
                    interp_frame.getSinFreq(interp_freqs)
                    for i in range(self.max_partials):
                        assert_almost_equals(left_amps[i], interp_amps[i],
                                             self.FLOAT_PRECISION)
                        if left_freqs[i] != 0:
                            assert_almost_equals(left_freqs[i], interp_freqs[i],
                                                 self.FLOAT_PRECISION)
                        else:
                            assert_almost_equals(right_freqs[i], interp_freqs[i],
                                                 self.FLOAT_PRECISION)
                    simplsms.sms_interpolateFrames(left_frame, right_frame, interp_frame, 1)
                    interp_amps = simpl.zeros(self.max_partials)
                    interp_freqs = simpl.zeros(self.max_partials)
                    interp_frame.getSinAmp(interp_amps)
                    interp_frame.getSinFreq(interp_freqs)
                    for i in range(self.max_partials):
                        assert_almost_equals(right_amps[i], interp_amps[i],
                                             self.FLOAT_PRECISION)
                        if right_freqs[i] != 0:
                            assert_almost_equals(right_freqs[i], interp_freqs[i],
                                                 self.FLOAT_PRECISION)
                        else:
                            assert_almost_equals(left_freqs[i], interp_freqs[i],
                                                 self.FLOAT_PRECISION)
            elif status == -1:
                raise Exception("AnalysisStoppedEarly")
            else:
                simplsms.sms_freeFrame(analysis_data)
            current_frame += 1

        for frame in analysis_frames:
            simplsms.sms_freeFrame(frame)
        simplsms.sms_freeFrame(interp_frame)
        simplsms.sms_freeAnalysis(analysis_params)
        simplsms.sms_free()

    def test_harmonic_synthesis(self):
        """test_harmonic_synthesis
        Compare pysms synthesised harmonic component with SMS synthesised 
        harmonic component."""
        audio, sampling_rate = self.get_audio()
        pysms.sms_init()
        snd_header = pysms.SMS_SndHeader()
        # Try to open the input file to fill snd_header
        if(pysms.sms_openSF(self.input_file, snd_header)):
            raise NameError("error opening sound file: " + pysms.sms_errorString())
        analysis_params = self.pysms_analysis_params(sampling_rate)
        analysis_params.nFrames = self.num_frames
        if pysms.sms_initAnalysis(analysis_params, snd_header) != 0:
            raise Exception("Error allocating memory for analysis_params")
        analysis_params.iSizeSound = self.num_samples
        sms_header = pysms.SMS_Header()
        pysms.sms_fillHeader(sms_header, analysis_params, "pysms")

        sample_offset = 0
        size_new_data = 0
        current_frame = 0
        analysis_frames = []
        do_analysis = True

        while do_analysis and (current_frame < self.num_frames):
            sample_offset += size_new_data
            size_new_data = analysis_params.sizeNextRead
            frame = audio[sample_offset:sample_offset + size_new_data]
            # convert frame to floats for libsms
            frame = np.array(frame, dtype=np.float32)
            analysis_data = pysms.SMS_Data()
            pysms.sms_allocFrameH(sms_header, analysis_data)
            status = pysms.sms_analyze(frame, analysis_data, analysis_params)  
            if status == 1:
                analysis_frames.append(analysis_data)
                current_frame += 1
            elif status == 0:
                pysms.sms_freeFrame(analysis_data)
            elif status == -1:
                do_analysis = False
                pysms.sms_freeFrame(analysis_data)

        # remove the first frame, it's blank
        blank_frame = analysis_frames[0]
        analysis_frames = analysis_frames[1:]
        pysms.sms_freeFrame(blank_frame)

        synth_params = self.pysms_synthesis_params(sampling_rate)
        pysms.sms_initSynth(sms_header, synth_params)

        synth_samples = np.zeros(synth_params.sizeHop, dtype=np.float32)
        sms_audio = np.array([], dtype=np.float32)
        current_frame = 0

        while current_frame < len(analysis_frames):
            pysms.sms_synthesize(analysis_frames[current_frame], synth_samples, synth_params)
            sms_audio = np.hstack((sms_audio, synth_samples))
            current_frame += 1

        for frame in analysis_frames:
            pysms.sms_freeFrame(frame)
        pysms.sms_freeAnalysis(analysis_params)
        pysms.sms_closeSF()
        pysms.sms_freeSynth(synth_params)
        pysms.sms_free()

        pd = simpl.SMSPeakDetection()
        pd.max_peaks = self.max_peaks
        pd.hop_size = self.hop_size 
        peaks = pd.find_peaks(audio)
        pt = simpl.SMSPartialTracking()
        pt.max_partials = self.max_partials
        partials = pt.find_partials(peaks)
        synth = simpl.SMSSynthesis()
        synth.hop_size = self.hop_size
        synth.max_partials = self.max_partials
        synth.det_synthesis_type = simplsms.SMS_DET_IFFT
        simpl_audio = synth.synth(partials)

        assert len(sms_audio) == len(simpl_audio)
        for i in range(simpl_audio.size):
            assert_almost_equals(sms_audio[i], simpl_audio[i], self.FLOAT_PRECISION)

    def test_harmonic_synthesis_sin(self):
        """test_harmonic_synthesis_sin
        Compare pysms synthesised harmonic component with SMS synthesised 
        harmonic component."""
        audio, sampling_rate = self.get_audio()
        pysms.sms_init()
        snd_header = pysms.SMS_SndHeader()
        # Try to open the input file to fill snd_header
        if(pysms.sms_openSF(self.input_file, snd_header)):
            raise NameError("error opening sound file: " + pysms.sms_errorString())
        analysis_params = self.pysms_analysis_params(sampling_rate)
        if pysms.sms_initAnalysis(analysis_params, snd_header) != 0:
            raise Exception("Error allocating memory for analysis_params")
        analysis_params.iSizeSound = self.num_samples
        analysis_params.nFrames = self.num_frames
        sms_header = pysms.SMS_Header()
        pysms.sms_fillHeader(sms_header, analysis_params, "pysms")

        sample_offset = 0
        size_new_data = 0
        current_frame = 0
        analysis_frames = []
        do_analysis = True

        while do_analysis and (current_frame < self.num_frames):
            sample_offset += size_new_data
            size_new_data = analysis_params.sizeNextRead
            frame = audio[sample_offset:sample_offset + size_new_data]
            # convert frame to floats for libsms
            frame = np.array(frame, dtype=np.float32)
            if len(frame) < size_new_data:
                frame = np.hstack((frame, np.zeros(size_new_data - len(frame),
                                                   dtype=np.float32)))
            analysis_data = pysms.SMS_Data()
            pysms.sms_allocFrameH(sms_header, analysis_data)
            status = pysms.sms_analyze(frame, analysis_data, analysis_params)  
            if status == 1:
                analysis_frames.append(analysis_data)
                current_frame += 1
            elif status == 0:
                pysms.sms_freeFrame(analysis_data)
            elif status == -1:
                do_analysis = False
                pysms.sms_freeFrame(analysis_data)

        # remove the first frame, it's blank
        blank_frame = analysis_frames[0]
        analysis_frames = analysis_frames[1:]
        pysms.sms_freeFrame(blank_frame)

        synth_params = self.pysms_synthesis_params(sampling_rate)
        synth_params.iDetSynthType = pysms.SMS_DET_SIN
        pysms.sms_initSynth(sms_header, synth_params)

        synth_samples = np.zeros(synth_params.sizeHop, dtype=np.float32)
        sms_audio = np.array([], dtype=np.float32)
        current_frame = 0

        while current_frame < len(analysis_frames):
            pysms.sms_synthesize(analysis_frames[current_frame], synth_samples, synth_params)
            sms_audio = np.hstack((sms_audio, synth_samples))
            current_frame += 1

        for frame in analysis_frames:
            pysms.sms_freeFrame(frame)
        pysms.sms_freeAnalysis(analysis_params)
        pysms.sms_closeSF()
        pysms.sms_freeSynth(synth_params)
        pysms.sms_free()

        pd = simpl.SMSPeakDetection()
        pd.max_peaks = self.max_peaks
        pd.hop_size = self.hop_size 
        peaks = pd.find_peaks(audio)
        pt = simpl.SMSPartialTracking()
        pt.max_partials = self.max_partials
        partials = pt.find_partials(peaks)
        synth = simpl.SMSSynthesis()
        synth.hop_size = self.hop_size
        synth.max_partials = self.max_partials
        synth.det_synthesis_type = simplsms.SMS_DET_SIN
        simpl_audio = synth.synth(partials)

        assert len(sms_audio) == len(simpl_audio)
        for i in range(simpl_audio.size):
            assert_almost_equals(sms_audio[i], simpl_audio[i], self.FLOAT_PRECISION)

    def test_residual_synthesis(self):
        """test_residual_synthesis
        Compare pysms residual signal with SMS residual""" 

        # -------------------------------------------
        # This test is not finished yet. Skip for now
        from nose.plugins.skip import SkipTest
        raise SkipTest
        # -------------------------------------------

        audio, sampling_rate = self.get_audio()
        pysms.sms_init()
        snd_header = pysms.SMS_SndHeader()
        # Try to open the input file to fill snd_header
        if(pysms.sms_openSF(self.input_file, snd_header)):
            raise NameError("error opening sound file: " + pysms.sms_errorString())
        analysis_params = self.pysms_analysis_params(sampling_rate)
        analysis_params.nFrames = self.num_frames
        analysis_params.nStochasticCoeff = 128
        analysis_params.iStochasticType = pysms.SMS_STOC_APPROX
        if pysms.sms_initAnalysis(analysis_params, snd_header) != 0:
            raise Exception("Error allocating memory for analysis_params")
        analysis_params.iSizeSound = self.num_samples
        sms_header = pysms.SMS_Header()
        pysms.sms_fillHeader(sms_header, analysis_params, "pysms")

        sample_offset = 0
        size_new_data = 0
        current_frame = 0
        analysis_frames = []
        do_analysis = True

        while do_analysis and (current_frame < self.num_frames):
            sample_offset += size_new_data
            size_new_data = analysis_params.sizeNextRead
            # convert frame to floats for libsms
            frame = audio[sample_offset:sample_offset + size_new_data]
            frame = np.array(frame, dtype=np.float32)
            analysis_data = pysms.SMS_Data()
            pysms.sms_allocFrameH(sms_header, analysis_data)
            status = pysms.sms_analyze(frame, analysis_data, analysis_params)  
            analysis_frames.append(analysis_data)
            if status == -1:
              do_analysis = False
            current_frame += 1

        sms_header.nFrames = len(analysis_frames)
        synth_params = self.pysms_synthesis_params(sampling_rate)
        synth_params.iStochasticType = pysms.SMS_STOC_APPROX
        synth_params.iSynthesisType = pysms.SMS_STYPE_STOC
        pysms.sms_initSynth(sms_header, synth_params)
        synth_samples = np.zeros(synth_params.sizeHop, dtype=np.float32)
        sms_residual = np.array([], dtype=np.float32)
        current_frame = 0

        while current_frame < len(analysis_frames):
            pysms.sms_synthesize(analysis_frames[current_frame], synth_samples, synth_params)
            sms_residual = np.hstack((sms_residual, synth_samples))
            current_frame += 1

        for frame in analysis_frames:
            pysms.sms_freeFrame(frame)
        pysms.sms_freeAnalysis(analysis_params)
        pysms.sms_closeSF()
        pysms.sms_freeSynth(synth_params)
        pysms.sms_free()

        pd = simpl.SMSPeakDetection()
        pd.max_peaks = self.max_peaks
        pd.hop_size = self.hop_size
        peaks = pd.find_peaks(audio)[0:self.num_frames]
        pt = simpl.SMSPartialTracking()
        pt.max_partials = self.max_partials
        partials = pt.find_partials(peaks)
        synth = simpl.SMSSynthesis()
        synth.hop_size = self.hop_size
        synth.max_partials = self.max_partials
        simpl_harmonic = synth.synth(partials)
        res = simpl.SMSResidual()
        simpl_residual = res.synth(simpl_harmonic, audio[0:simpl_harmonic.size])

        assert len(simpl_residual) == len(sms_residual)
        for i in range(len(simpl_residual)):
            assert_almost_equals(simpl_residual[i], sms_residual[i], 
                                 self.FLOAT_PRECISION)


if __name__ == "__main__":
    # run individual tests programatically
    # useful for debugging, particularly with GDB
    import nose
    argv = [__file__, 
            "--nocapture",
            #__file__ + ":TestSimplSMS.test_residual_synthesis"]
            __file__ + ":TestSimplSMS.test_harmonic_synthesis_sin"]
    nose.run(argv=argv)