diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2024-10-30 15:35:43 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2024-10-30 15:35:43 +0100 |
commit | f5214c20ae7fdbd4e00599c01bfb1321930fc805 (patch) | |
tree | a2550d2c30f2eb97bb567ef304d30e17df427ac2 | |
parent | 15833dc0f2e599dc7d28457ea5c740c51b8562b0 (diff) | |
download | dabmod-f5214c20ae7fdbd4e00599c01bfb1321930fc805.tar.gz dabmod-f5214c20ae7fdbd4e00599c01bfb1321930fc805.tar.bz2 dabmod-f5214c20ae7fdbd4e00599c01bfb1321930fc805.zip |
Change fixed point from fp12.6 to fp2.14
-rw-r--r-- | src/Buffer.h | 2 |
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; |