]> git.sesse.net Git - c64tapwav/commitdiff
Add an RC highpass filter, which seemingly does a good job of emulating the one in...
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Thu, 12 Mar 2015 19:04:27 +0000 (20:04 +0100)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Thu, 12 Mar 2015 19:04:27 +0000 (20:04 +0100)
decode.cpp
filter.cpp
filter.h

index 7d5fe4338f5f38586d9ec428d273d3fb34fa2115..b2878feb0e0a993c4ce37dc616c7f4453f8bbf73 100644 (file)
@@ -11,6 +11,7 @@
 #include "interpolate.h"
 #include "level.h"
 #include "tap.h"
 #include "interpolate.h"
 #include "level.h"
 #include "tap.h"
+#include "filter.h"
 
 #define BUFSIZE 4096
 #define C64_FREQUENCY 985248
 
 #define BUFSIZE 4096
 #define C64_FREQUENCY 985248
 static float hysteresis_limit = 3000.0 / 32768.0;
 static bool do_calibrate = true;
 static bool output_cycles_plot = false;
 static float hysteresis_limit = 3000.0 / 32768.0;
 static bool do_calibrate = true;
 static bool output_cycles_plot = false;
-static bool use_filter = false;
 static bool do_crop = false;
 static float crop_start = 0.0f, crop_end = HUGE_VAL;
 static bool do_crop = false;
 static float crop_start = 0.0f, crop_end = HUGE_VAL;
+
+static bool use_fir_filter = false;
 static float filter_coeff[NUM_FILTER_COEFF] = { 1.0f };  // The rest is filled with 0.
 static float filter_coeff[NUM_FILTER_COEFF] = { 1.0f };  // The rest is filled with 0.
+static bool use_rc_filter = false;
+static float rc_filter_freq;
 static bool output_filtered = false;
 static bool output_filtered = false;
+
 static bool quiet = false;
 static bool do_auto_level = false;
 static bool output_leveled = false;
 static bool quiet = false;
 static bool do_auto_level = false;
 static bool output_leveled = false;
@@ -175,6 +180,7 @@ static struct option long_options[] = {
        {"plot-cycles",      0,                 0, 'p' },
        {"hysteresis-limit", required_argument, 0, 'l' },
        {"filter",           required_argument, 0, 'f' },
        {"plot-cycles",      0,                 0, 'p' },
        {"hysteresis-limit", required_argument, 0, 'l' },
        {"filter",           required_argument, 0, 'f' },
+       {"rc-filter",        required_argument, 0, 'r' },
        {"output-filtered",  0,                 0, 'F' },
        {"crop",             required_argument, 0, 'c' },
        {"quiet",            0,                 0, 'q' },
        {"output-filtered",  0,                 0, 'F' },
        {"crop",             required_argument, 0, 'c' },
        {"quiet",            0,                 0, 'q' },
@@ -193,6 +199,7 @@ void help()
        fprintf(stderr, "  -p, --plot-cycles            output debugging info to cycles.plot\n");
        fprintf(stderr, "  -l, --hysteresis-limit VAL   change amplitude threshold for ignoring pulses (0..32768)\n");
        fprintf(stderr, "  -f, --filter C1:C2:C3:...    specify FIR filter (up to %d coefficients)\n", NUM_FILTER_COEFF);
        fprintf(stderr, "  -p, --plot-cycles            output debugging info to cycles.plot\n");
        fprintf(stderr, "  -l, --hysteresis-limit VAL   change amplitude threshold for ignoring pulses (0..32768)\n");
        fprintf(stderr, "  -f, --filter C1:C2:C3:...    specify FIR filter (up to %d coefficients)\n", NUM_FILTER_COEFF);
+       fprintf(stderr, "  -r, --rc-filter FREQ         send signal through a highpass RC filter with given frequency (in Hertz)\n");
        fprintf(stderr, "  -F, --output-filtered        output filtered waveform to filtered.raw\n");
        fprintf(stderr, "  -c, --crop START[:END]       use only the given part of the file\n");
        fprintf(stderr, "  -t, --train LEN1:LEN2:...    train a filter for detecting any of the given number of cycles\n");
        fprintf(stderr, "  -F, --output-filtered        output filtered waveform to filtered.raw\n");
        fprintf(stderr, "  -c, --crop START[:END]       use only the given part of the file\n");
        fprintf(stderr, "  -t, --train LEN1:LEN2:...    train a filter for detecting any of the given number of cycles\n");
@@ -206,7 +213,7 @@ void parse_options(int argc, char **argv)
 {
        for ( ;; ) {
                int option_index = 0;
 {
        for ( ;; ) {
                int option_index = 0;
-               int c = getopt_long(argc, argv, "aAm:spl:f:Fc:t:qh", long_options, &option_index);
+               int c = getopt_long(argc, argv, "aAm:spl:f:r:Fc:t:qh", long_options, &option_index);
                if (c == -1)
                        break;
 
                if (c == -1)
                        break;
 
@@ -242,10 +249,15 @@ void parse_options(int argc, char **argv)
                                filter_coeff[coeff_index++] = atof(coeffstr);
                                coeffstr = strtok(NULL, ": ");
                        }
                                filter_coeff[coeff_index++] = atof(coeffstr);
                                coeffstr = strtok(NULL, ": ");
                        }
-                       use_filter = true;
+                       use_fir_filter = true;
                        break;
                }
 
                        break;
                }
 
+               case 'r':
+                       use_rc_filter = true;
+                       rc_filter_freq = atof(optarg);
+                       break;
+
                case 'F':
                        output_filtered = true;
                        break;
                case 'F':
                        output_filtered = true;
                        break;
@@ -302,7 +314,7 @@ std::vector<float> crop(const std::vector<float>& pcm, float crop_start, float c
 }
 
 // TODO: Support AVX here.
 }
 
 // TODO: Support AVX here.
-std::vector<float> do_filter(const std::vector<float>& pcm, const float* filter)
+std::vector<float> do_fir_filter(const std::vector<float>& pcm, const float* filter)
 {
        std::vector<float> filtered_pcm;
        filtered_pcm.reserve(pcm.size());
 {
        std::vector<float> filtered_pcm;
        filtered_pcm.reserve(pcm.size());
@@ -323,6 +335,24 @@ std::vector<float> do_filter(const std::vector<float>& pcm, const float* filter)
        return filtered_pcm;
 }
 
        return filtered_pcm;
 }
 
+std::vector<float> do_rc_filter(const std::vector<float>& pcm, float freq, int sample_rate)
+{
+       std::vector<float> filtered_pcm;
+       filtered_pcm.resize(pcm.size());
+       Filter filter = Filter::hpf(M_PI * freq / sample_rate);
+       for (unsigned i = 0; i < pcm.size(); ++i) {
+               filtered_pcm[i] = filter.update(pcm[i]);
+       }
+
+       if (output_filtered) {
+               FILE *fp = fopen("filtered.raw", "wb");
+               fwrite(filtered_pcm.data(), filtered_pcm.size() * sizeof(filtered_pcm[0]), 1, fp);
+               fclose(fp);
+       }
+
+       return filtered_pcm;
+}
+
 std::vector<pulse> detect_pulses(const std::vector<float> &pcm, int sample_rate)
 {
        std::vector<pulse> pulses;
 std::vector<pulse> detect_pulses(const std::vector<float> &pcm, int sample_rate)
 {
        std::vector<pulse> pulses;
@@ -472,8 +502,8 @@ void spsa_train(const std::vector<float> &pcm, int sample_rate)
                        filter2[i] = std::max(std::min(filter[i] + c * p[i], 1.0f), -1.0f);
                }
 
                        filter2[i] = std::max(std::min(filter[i] + c * p[i], 1.0f), -1.0f);
                }
 
-               std::vector<pulse> pulses1 = detect_pulses(do_filter(pcm, filter1), sample_rate);
-               std::vector<pulse> pulses2 = detect_pulses(do_filter(pcm, filter2), sample_rate);
+               std::vector<pulse> pulses1 = detect_pulses(do_fir_filter(pcm, filter1), sample_rate);
+               std::vector<pulse> pulses2 = detect_pulses(do_fir_filter(pcm, filter2), sample_rate);
                float badness1 = eval_badness(pulses1, 1.0);
                float badness2 = eval_badness(pulses2, 1.0);
 
                float badness1 = eval_badness(pulses1, 1.0);
                float badness2 = eval_badness(pulses2, 1.0);
 
@@ -523,8 +553,12 @@ int main(int argc, char **argv)
                pcm = crop(pcm, crop_start, crop_end, sample_rate);
        }
 
                pcm = crop(pcm, crop_start, crop_end, sample_rate);
        }
 
-       if (use_filter) {
-               pcm = do_filter(pcm, filter_coeff);
+       if (use_fir_filter) {
+               pcm = do_fir_filter(pcm, filter_coeff);
+       }
+
+       if (use_rc_filter) {
+               pcm = do_rc_filter(pcm, rc_filter_freq, sample_rate);
        }
 
        if (do_auto_level) {
        }
 
        if (do_auto_level) {
index d8f97010f2670dd2f4566fa5153f01223640672f..ecd45025cc2441476243feb89b58c88d94fa617f 100644 (file)
@@ -23,3 +23,20 @@ Filter Filter::lpf(float cutoff_radians)
 
        return Filter(a0, a1, a2, b0, b1, b2);
 }
 
        return Filter(a0, a1, a2, b0, b1, b2);
 }
+
+Filter Filter::hpf(float cutoff_radians)
+{
+       float resonance = 1.0f / sqrt(2.0f);
+       float sn = sin(cutoff_radians), cs = cos(cutoff_radians);
+       float alpha = float(sn / (2 * resonance));
+
+       // coefficients for highpass filter
+       float a0 = 1 + alpha;
+       float b0 = (1 + cs) * 0.5f;
+       float b1 = -(1 + cs);
+       float b2 = b0;
+       float a1 = -2 * cs;
+       float a2 = 1 - alpha;
+
+       return Filter(a0, a1, a2, b0, b1, b2);
+}
index a67f98a7f4a63bcc641a8cda72a9857b454cfc71..916d9ccab96210ea088ba466513513699c28ef3e 100644 (file)
--- a/filter.h
+++ b/filter.h
@@ -17,6 +17,7 @@ public:
        void reset();
 
        static Filter lpf(float cutoff_radians);
        void reset();
 
        static Filter lpf(float cutoff_radians);
+       static Filter hpf(float cutoff_radians);
 
 private:
        float a1, a2, b0, b1, b2;
 
 private:
        float a1, a2, b0, b1, b2;