X-Git-Url: https://git.sesse.net/?p=pitch;a=blobdiff_plain;f=glpitch.cpp;h=4aea821ef3dde34acb33980d3094fac993e02b4f;hp=e40f8ce83c7c4138224b5fca209601257cc5a709;hb=8603ad0d114005cee0dab2f7facd4faebae57f5d;hpb=f09f984c17ef3163de0296aa415828a5249a095b diff --git a/glpitch.cpp b/glpitch.cpp index e40f8ce..4aea821 100644 --- a/glpitch.cpp +++ b/glpitch.cpp @@ -9,11 +9,46 @@ #define MIN_X -40 #define MAX_X 5 -double find_pos(double freq) +double find_linear_pos(double freq) { return 12.0 * log2(freq / BASE_PITCH) - 3.0; } +#if COMPRESS_PITCH_DISPLAY +// bend the scale a bit to get more precision around the interesting points +double magnifying_glass(double x) +{ + double sigma = PITCH_COMPRESSION_SIGMA; + double div = 1.0 / sqrt(2.0 * sigma * sigma); + return + erf((x - find_linear_pos(notes[0].freq)) * div) + + erf((x - find_linear_pos(notes[1].freq)) * div) + + erf((x - find_linear_pos(notes[2].freq)) * div) + + erf((x - find_linear_pos(notes[3].freq)) * div) + + erf((x - find_linear_pos(notes[4].freq)) * div) + + erf((x - find_linear_pos(notes[5].freq)) * div); +} + +// like nonlinear_func, but f(MIN_X) = MIN_X and f(MAX_X) = MAX_X +double normalized_magnifying_glass(double x) +{ + double y = magnifying_glass(x); + double min_y = magnifying_glass(MIN_X); + double max_y = magnifying_glass(MAX_X); + return (y - min_y) * (MAX_X - MIN_X) / (max_y - min_y) + MIN_X; +} +#endif /* COMPRESS_PITCH_DISPLAY */ + +double find_display_pos(double freq) +{ + double linear_pos = find_linear_pos(freq); +#if COMPRESS_PITCH_DISPLAY + return normalized_magnifying_glass(linear_pos); +#else + return linear_pos; +#endif +} + int main(void) { PitchDetector pd(SAMPLE_RATE, FFT_LENGTH, PAD_FACTOR, OVERLAP); @@ -27,6 +62,19 @@ int main(void) glClear(GL_COLOR_BUFFER_BIT); for ( ;; ) { + SDL_Event event; + while (SDL_PollEvent(&event)) { + switch (event.type) { + case SDL_KEYUP: + if (event.key.keysym.sym == SDLK_ESCAPE) { + exit(0); + } + break; + case SDL_QUIT: + exit(0); + } + } + short buf[FFT_LENGTH / PAD_FACTOR / OVERLAP]; read_chunk(fd, buf, FFT_LENGTH / PAD_FACTOR / OVERLAP); std::pair peak = pd.detect_pitch(buf); @@ -50,7 +98,7 @@ int main(void) glEnd(); if (peak.second - log10(FFT_LENGTH) >= 0.0) { - double peak_pos = find_pos(peak.first); + double peak_pos = find_display_pos(peak.first); glBlendFunc(GL_SRC_ALPHA, GL_ONE); glBegin(GL_QUADS); @@ -66,7 +114,7 @@ int main(void) glBegin(GL_LINES); for (int i = 0; i < 6; ++i) { - double pos = find_pos(notes[i].freq); + double pos = find_display_pos(notes[i].freq); glVertex2f(pos, 0.0f); glVertex2f(pos, 1.0f); }