Filtering was moved to a separate source file in commit
c498c21fad35 ("refclock: split off median filter). It looks like
MedianFilter struct somehow survived the split. Remove it to reduce
confusion.
struct timespec sample_time;
};
-struct MedianFilter {
- int length;
- int index;
- int used;
- int last;
- int avg_var_n;
- double avg_var;
- double max_var;
- struct FilterSample *samples;
- int *selected;
- double *x_data;
- double *y_data;
- double *w_data;
-};
-
struct RCL_Instance_Record {
RefclockDriver *driver;
void *data;