aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/convert/convert_with_orc.cpp
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2013-08-28 17:07:07 -0700
committerJosh Blum <josh@joshknows.com>2013-08-28 17:07:07 -0700
commit9f993843e52b1da877fd579de499e492f602ce81 (patch)
tree7a8e28f0f7f84ae22da44712ea3b76507cc0a1b6 /host/lib/convert/convert_with_orc.cpp
parent96e50aebb7a4b3f98aac3c11aa1a3f06c14c0849 (diff)
downloaduhd-9f993843e52b1da877fd579de499e492f602ce81.tar.gz
uhd-9f993843e52b1da877fd579de499e492f602ce81.tar.bz2
uhd-9f993843e52b1da877fd579de499e492f602ce81.zip
convert: sc8 swap for vita compliance
Diffstat (limited to 'host/lib/convert/convert_with_orc.cpp')
-rw-r--r--host/lib/convert/convert_with_orc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/convert/convert_with_orc.cpp b/host/lib/convert/convert_with_orc.cpp
index e44c8ca73..19755fa44 100644
--- a/host/lib/convert/convert_with_orc.cpp
+++ b/host/lib/convert/convert_with_orc.cpp
@@ -1,5 +1,5 @@
//
-// Copyright 2011 Ettus Research LLC
+// Copyright 2011-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
@@ -57,9 +57,9 @@ 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 + 1)/2);
}
DECLARE_CONVERTER(fc32, 1, sc8_item32_le, 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 + 1)/2);
}