diff options
author | Josh Blum <josh@joshknows.com> | 2012-04-27 18:49:33 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2012-05-09 23:54:03 -0700 |
commit | 4fa889c4f972120d56fdc1308ba5928fb692a305 (patch) | |
tree | 02fb911508d17f6c870cbc83ccb21cccacd8c812 /host/lib/convert/convert_with_neon.cpp | |
parent | 4c244c78a75646ad4040fb328fa64bb752852512 (diff) | |
download | uhd-4fa889c4f972120d56fdc1308ba5928fb692a305.tar.gz uhd-4fa889c4f972120d56fdc1308ba5928fb692a305.tar.bz2 uhd-4fa889c4f972120d56fdc1308ba5928fb692a305.zip |
convert: some platform specific fixes
neon: missing header
windows: shuffle needs to be deemed "constant expression",
fixed with a template parameter.
Diffstat (limited to 'host/lib/convert/convert_with_neon.cpp')
-rw-r--r-- | host/lib/convert/convert_with_neon.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/host/lib/convert/convert_with_neon.cpp b/host/lib/convert/convert_with_neon.cpp index ad184e1b6..e994d97a6 100644 --- a/host/lib/convert/convert_with_neon.cpp +++ b/host/lib/convert/convert_with_neon.cpp @@ -16,6 +16,7 @@ // #include "convert_common.hpp" +#include <uhd/utils/byteswap.hpp> #include <arm_neon.h> using namespace uhd::convert; |