aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2024-10-30 15:35:43 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2024-10-30 15:35:43 +0100
commitf5214c20ae7fdbd4e00599c01bfb1321930fc805 (patch)
treea2550d2c30f2eb97bb567ef304d30e17df427ac2 /src
parent15833dc0f2e599dc7d28457ea5c740c51b8562b0 (diff)
downloaddabmod-f5214c20ae7fdbd4e00599c01bfb1321930fc805.tar.gz
dabmod-f5214c20ae7fdbd4e00599c01bfb1321930fc805.tar.bz2
dabmod-f5214c20ae7fdbd4e00599c01bfb1321930fc805.zip
Change fixed point from fp12.6 to fp2.14
Diffstat (limited to 'src')
-rw-r--r--src/Buffer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Buffer.h b/src/Buffer.h
index bf3b5f4..d5aa802 100644
--- a/src/Buffer.h
+++ b/src/Buffer.h
@@ -38,7 +38,7 @@
typedef std::complex<float> complexf;
-using fixed_16 = fpm::fixed<std::int16_t, std::int32_t, 6>;
+using fixed_16 = fpm::fixed<std::int16_t, std::int32_t, 14>;
typedef std::complex<fixed_16> complexfix;
typedef std::complex<fpm::fixed_16_16> complexfix_wide;