From: Paul Brossier Date: Mon, 8 Apr 2013 16:51:45 +0000 (-0500) Subject: python/tests/test_pitch.py: more tests X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=0e755894192da355b20c4494aaba445fa4adff28;p=aubio.git python/tests/test_pitch.py: more tests --- diff --git a/python/tests/test_pitch.py b/python/tests/test_pitch.py index 76442ca7..7c67e137 100755 --- a/python/tests/test_pitch.py +++ b/python/tests/test_pitch.py @@ -72,9 +72,12 @@ class aubio_pitch_Sinusoid(TestCase): #print 'len(pitches), cut:', len(pitches), cut #print 'mean errors: ', mean(errors), 'mean pitches: ', mean(pitches) -pitch_algorithms = [ "default", "yinfft", "yin", "schmitt", "mcomb", "fcomb" ] +pitch_algorithms = [ "default", "yinfft", "yin", "schmitt", "mcomb", "fcomb" , "specacf" ] signal_modes = [ + ( 4096, 512, 44100, 2.*882. ), + ( 4096, 512, 44100, 882. ), + ( 4096, 512, 44100, 440. ), ( 2048, 512, 44100, 440. ), ( 2048, 1024, 44100, 440. ), ( 2048, 1024, 44100, 440. ),