From 4d3d7e4160debcb3fcb1f87083a22f3e63b65eb7 Mon Sep 17 00:00:00 2001 From: c vw Date: Tue, 14 Sep 2021 14:50:50 +0200 Subject: [PATCH] Corrected the "shifting" of the waterfall when the VFO frequency changes --- waterfall.c | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/waterfall.c b/waterfall.c index cb6850f..f7bcb81 100644 --- a/waterfall.c +++ b/waterfall.c @@ -124,6 +124,7 @@ void waterfall_update(RECEIVER *rx) { int i; float *samples; + long long vfofreq=vfo[rx->id].frequency; // access only once to be thread-safe if(rx->pixbuf) { unsigned char *pixels = gdk_pixbuf_get_pixels (rx->pixbuf); @@ -134,39 +135,40 @@ void waterfall_update(RECEIVER *rx) { hz_per_pixel=(double)rx->sample_rate/(double)display_width; if(rx->waterfall_frequency!=0 && (rx->sample_rate==rx->waterfall_sample_rate)) { - if(rx->waterfall_frequency!=vfo[rx->id].frequency) { + if(rx->waterfall_frequency!=vfofreq) { // scrolled or band change long long half=(long long)(rx->sample_rate/2); - if(rx->waterfall_frequency<(vfo[rx->id].frequency-half) || rx->waterfall_frequency>(vfo[rx->id].frequency+half)) { + if(rx->waterfall_frequency<(vfofreq-half) || rx->waterfall_frequency>(vfofreq+half)) { // outside of the range - blank waterfall -//fprintf(stderr,"waterfall_update: clear waterfall from %lld to %lld\n",rx->waterfall_frequency,vfo[rx->id].frequency); +//fprintf(stderr,"waterfall_update: clear waterfall from %lld to %lld\n",rx->waterfall_frequency,vfofreq); memset(pixels, 0, display_width*display_height*3); + rx->waterfall_frequency=vfofreq; } else { // rotate waterfall - int rotate_pixels=(int)((double)(rx->waterfall_frequency-vfo[rx->id].frequency)/hz_per_pixel); -//fprintf(stderr,"waterfall_update: rotate waterfall from %lld to %lld pixels=%d\n",rx->waterfall_frequency,vfo[rx->id].frequency,rotate_pixels); + int rotate_pixels=(int)((double)(rx->waterfall_frequency-vfofreq)/hz_per_pixel); +//fprintf(stderr,"waterfall_update: rotate waterfall from %lld to %lld pixels=%d\n",rx->waterfall_frequency,vfofreq,rotate_pixels); if(rotate_pixels<0) { memmove(pixels,&pixels[-rotate_pixels*3],((display_width*display_height)+rotate_pixels)*3); //now clear the right hand side for(i=0;i 0) { memmove(&pixels[rotate_pixels*3],pixels,((display_width*display_height)-rotate_pixels)*3); //now clear the left hand side for(i=0;iwaterfall_frequency -= rotate_pixels*hz_per_pixel; } } } else { memset(pixels, 0, display_width*display_height*3); + rx->waterfall_frequency=vfofreq; + rx->waterfall_sample_rate=rx->sample_rate; } - rx->waterfall_frequency=vfo[rx->id].frequency; - rx->waterfall_sample_rate=rx->sample_rate; - memmove(&pixels[rowstride],pixels,(height-1)*rowstride); float sample; -- 2.45.2