diff options
author | Josh Blum <josh@joshknows.com> | 2013-08-28 17:07:07 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2013-08-28 17:07:07 -0700 |
commit | 9f993843e52b1da877fd579de499e492f602ce81 (patch) | |
tree | 7a8e28f0f7f84ae22da44712ea3b76507cc0a1b6 /host/lib/convert/sse2_sc8_to_fc32.cpp | |
parent | 96e50aebb7a4b3f98aac3c11aa1a3f06c14c0849 (diff) | |
download | uhd-9f993843e52b1da877fd579de499e492f602ce81.tar.gz uhd-9f993843e52b1da877fd579de499e492f602ce81.tar.bz2 uhd-9f993843e52b1da877fd579de499e492f602ce81.zip |
convert: sc8 swap for vita compliance
Diffstat (limited to 'host/lib/convert/sse2_sc8_to_fc32.cpp')
-rw-r--r-- | host/lib/convert/sse2_sc8_to_fc32.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/host/lib/convert/sse2_sc8_to_fc32.cpp b/host/lib/convert/sse2_sc8_to_fc32.cpp index c0e561814..724af0225 100644 --- a/host/lib/convert/sse2_sc8_to_fc32.cpp +++ b/host/lib/convert/sse2_sc8_to_fc32.cpp @@ -1,5 +1,5 @@ // -// Copyright 2012 Ettus Research LLC +// Copyright 2012-2013 Ettus Research LLC // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -48,7 +48,7 @@ DECLARE_CONVERTER(sc8_item32_be, 1, fc32, 1, PRIORITY_SIMD){ fc32_t *output = reinterpret_cast<fc32_t *>(outputs[0]); const __m128 scalar = _mm_set_ps1(float(scale_factor)/(1 << 24)); - const int shuf = _MM_SHUFFLE(1, 0, 3, 2); + const int shuf = _MM_SHUFFLE(3, 2, 1, 0); size_t i = 0, j = 0; fc32_t dummy; @@ -92,7 +92,7 @@ DECLARE_CONVERTER(sc8_item32_le, 1, fc32, 1, PRIORITY_SIMD){ fc32_t *output = reinterpret_cast<fc32_t *>(outputs[0]); const __m128 scalar = _mm_set_ps1(float(scale_factor)/(1 << 24)); - const int shuf = _MM_SHUFFLE(2, 3, 0, 1); + const int shuf = _MM_SHUFFLE(0, 1, 2, 3); size_t i = 0, j = 0; fc32_t dummy; |