float *samples;
long long vfofreq=vfo[rx->id].frequency; // access only once to be thread-safe
- int rotate_pixels=0; // used to suppress drawing just after rotating
+ int freq_changed=0; // flag whether we have just "rotated"
+ int pan=rx->pan;
+ int zoom=rx->zoom;
+#ifdef CLIENT_SERVER
+ if(radio_is_remote) {
+ pan=0;
+ zoom=1;
+ }
+#endif
+
if(rx->pixbuf) {
unsigned char *pixels = gdk_pixbuf_get_pixels (rx->pixbuf);
hz_per_pixel=(double)rx->sample_rate/((double)display_width*rx->zoom);
- if(rx->waterfall_frequency!=0 && (rx->sample_rate==rx->waterfall_sample_rate)) {
+ if(rx->waterfall_frequency!=0 && (rx->sample_rate==rx->waterfall_sample_rate) && (rx->zoom == rx->waterfall_zoom)) {
+ //
+ // correct nominal waterfall frequency by change in pan value
+ //
+ rx->waterfall_frequency += (rx->waterfall_pan - pan)*hz_per_pixel;
+ rx->waterfall_pan = pan;
if(rx->waterfall_frequency!=vfofreq) {
// scrolled or band change
long long half=(long long)(rx->sample_rate/2);
//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;
+ rx->waterfall_pan=pan;
+ rx->waterfall_zoom=zoom;
} else {
// rotate waterfall
- rotate_pixels=(int)((double)(rx->waterfall_frequency-vfofreq)/hz_per_pixel);
+ 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);
for(i=0;i<display_height;i++) {
memset(&pixels[((i*display_width)+(width+rotate_pixels))*3], 0, -rotate_pixels*3);
}
+ freq_changed=1;
} else if (rotate_pixels > 0) {
memmove(&pixels[rotate_pixels*3],pixels,((display_width*display_height)-rotate_pixels)*3);
//now clear the left hand side
for(i=0;i<display_height;i++) {
memset(&pixels[(i*display_width)*3], 0, rotate_pixels*3);
}
+ freq_changed=1;
}
rx->waterfall_frequency -= rotate_pixels*hz_per_pixel;
}
} else {
memset(pixels, 0, display_width*display_height*3);
rx->waterfall_frequency=vfofreq;
+ rx->waterfall_pan=pan;
+ rx->waterfall_zoom=zoom;
rx->waterfall_sample_rate=rx->sample_rate;
}
// stabilized. This will not remove the artifacts in any case but is a big
// improvement.
//
- if (rotate_pixels != 0) return;
+ if (!freq_changed) {
- memmove(&pixels[rowstride],pixels,(height-1)*rowstride);
+ memmove(&pixels[rowstride],pixels,(height-1)*rowstride);
- float sample;
- int average=0;
- unsigned char *p;
- p=pixels;
- samples=rx->pixel_samples;
- int pan=rx->pan;
-#ifdef CLIENT_SERVER
- if(radio_is_remote) {
- pan=0;
- }
-#endif
+ float sample;
+ int average=0;
+ unsigned char *p;
+ p=pixels;
+ samples=rx->pixel_samples;
- for(i=0;i<width;i++) {
+ for(i=0;i<width;i++) {
if(have_rx_gain) {
sample=samples[i+pan]+(float)(rx_gain_calibration-adc[rx->adc].gain);
} else {
}
}
- }
+ }
- if(rx->waterfall_automatic) {
- rx->waterfall_low=average/width;
- rx->waterfall_high=rx->waterfall_low+50;
+ if(rx->waterfall_automatic) {
+ rx->waterfall_low=average/width;
+ rx->waterfall_high=rx->waterfall_low+50;
+ }
}
gtk_widget_queue_draw (rx->waterfall);