X-Git-Url: https://git.sesse.net/?p=c64tapwav;a=blobdiff_plain;f=decode.cpp;h=ca0c675e411fbddfca3037cddbbd7fc1e69083e7;hp=e3ec6775161edf854b2522c99dd9eb724e60af27;hb=af205db54703906ad67adb6393a9df97c96357e8;hpb=2dcc74e788a0d2bda5cb9b2a62dc11fbef99fb5d diff --git a/decode.cpp b/decode.cpp index e3ec677..ca0c675 100644 --- a/decode.cpp +++ b/decode.cpp @@ -6,7 +6,8 @@ #include #include -#define LANCZOS_RADIUS 30 +#include "interpolate.h" + #define BUFSIZE 4096 #define HYSTERESIS_LIMIT 3000 #define SAMPLE_RATE 44100 @@ -15,7 +16,7 @@ #define SYNC_PULSE_START 1000 #define SYNC_PULSE_END 15000 -#define SYNC_PULSE_LENGTH 380.0 +#define SYNC_PULSE_LENGTH 378.0 #define SYNC_TEST_TOLERANCE 1.10 struct tap_header { @@ -25,45 +26,6 @@ struct tap_header { unsigned int data_len; }; -double sinc(double x) -{ - if (fabs(x) < 1e-6) { - return 1.0f - fabs(x); - } else { - return sin(x) / x; - } -} - -#if 0 -double weight(double x) -{ - if (fabs(x) > LANCZOS_RADIUS) { - return 0.0f; - } - return sinc(M_PI * x) * sinc(M_PI * x / LANCZOS_RADIUS); -} -#else -double weight(double x) -{ - if (fabs(x) > 1.0f) { - return 0.0f; - } - return 1.0f - fabs(x); -} -#endif - -double interpolate(const std::vector &pcm, double i) -{ - int lower = std::max(ceil(i - LANCZOS_RADIUS), 0); - int upper = std::min(floor(i + LANCZOS_RADIUS), pcm.size() - 1); - double sum = 0.0f; - - for (int x = lower; x <= upper; ++x) { - sum += pcm[x] * weight(i - x); - } - return sum; -} - // between [x,x+1] double find_zerocrossing(const std::vector &pcm, int x) { @@ -81,7 +43,7 @@ double find_zerocrossing(const std::vector &pcm, int x) double upper = x + 1; while (upper - lower > 1e-6) { double mid = 0.5f * (upper + lower); - if (interpolate(pcm, mid) > 0) { + if (lanczos_interpolate(pcm, mid) > 0) { upper = mid; } else { lower = mid; @@ -174,8 +136,8 @@ int main(int argc, char **argv) } double mean_length = C64_FREQUENCY * sum / (SYNC_PULSE_END - SYNC_PULSE_START); calibration_factor = SYNC_PULSE_LENGTH / mean_length; - fprintf(stderr, "Calibrated sync pulse length: %.2f -> 380.0 (change %+.2f%%)\n", - mean_length, 100.0 * (calibration_factor - 1.0)); + fprintf(stderr, "Calibrated sync pulse length: %.2f -> %.2f (change %+.2f%%)\n", + mean_length, SYNC_PULSE_LENGTH, 100.0 * (calibration_factor - 1.0)); // Check for pulses outside +/- 10% (sign of misdetection). for (int i = SYNC_PULSE_START; i < SYNC_PULSE_END; ++i) {