summaryrefslogtreecommitdiffstats
path: root/host/lib/convert
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2012-02-09 16:54:08 -0800
committerJosh Blum <josh@joshknows.com>2012-02-09 16:54:08 -0800
commit4044a9eeb6fb195b8e64cd1879b0d40973dc27cb (patch)
tree40cd031d86753dbfa383644832d55bd8c49b5268 /host/lib/convert
parent10a4d951a1548a99cfd7ac8c015e0bb18ce5e343 (diff)
downloaduhd-4044a9eeb6fb195b8e64cd1879b0d40973dc27cb.tar.gz
uhd-4044a9eeb6fb195b8e64cd1879b0d40973dc27cb.tar.bz2
uhd-4044a9eeb6fb195b8e64cd1879b0d40973dc27cb.zip
uhd: fixed orc conversion fc32 to sc8_item32_be
Diffstat (limited to 'host/lib/convert')
-rw-r--r--host/lib/convert/convert_with_orc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/convert/convert_with_orc.cpp b/host/lib/convert/convert_with_orc.cpp
index 630554564..e44c8ca73 100644
--- a/host/lib/convert/convert_with_orc.cpp
+++ b/host/lib/convert/convert_with_orc.cpp
@@ -57,7 +57,7 @@ DECLARE_CONVERTER(sc16_item32_le, 1, sc16, 1, PRIORITY_LIBORC){
DECLARE_CONVERTER(fc32, 1, sc8_item32_be, 1, PRIORITY_LIBORC){
_convert_fc32_1_to_sc8_1_nswap_orc(outputs[0], inputs[0], scale_factor, nsamps);
- _convert_swap_byte_pairs_orc(outputs[0], outputs[0], nsamps);
+ _convert_swap_byte_pairs_orc(outputs[0], outputs[0], (nsamps + 1)/2);
}
DECLARE_CONVERTER(fc32, 1, sc8_item32_le, 1, PRIORITY_LIBORC){