diff options
Diffstat (limited to 'host/lib')
| -rw-r--r-- | host/lib/convert/sse2_sc16_to_fc32.cpp | 8 | 
1 files changed, 6 insertions, 2 deletions
| diff --git a/host/lib/convert/sse2_sc16_to_fc32.cpp b/host/lib/convert/sse2_sc16_to_fc32.cpp index c03e41585..7a9860970 100644 --- a/host/lib/convert/sse2_sc16_to_fc32.cpp +++ b/host/lib/convert/sse2_sc16_to_fc32.cpp @@ -53,7 +53,9 @@ DECLARE_CONVERTER(sc16_item32_le, 1, fc32, 1, PRIORITY_SIMD){      //dispatch according to alignment      switch (size_t(output) & 0xf){      case 0x8: -        item32_sc16_to_xx<uhd::htowx>(input, output, 1, scale_factor); i++; +        item32_sc16_to_xx<uhd::htowx>(input, output, 1, scale_factor); +        i++; +        break;      case 0x0:          convert_item32_1_to_fc32_1_nswap_guts(_)          break; @@ -95,7 +97,9 @@ DECLARE_CONVERTER(sc16_item32_be, 1, fc32, 1, PRIORITY_SIMD){      //dispatch according to alignment      switch (size_t(output) & 0xf){      case 0x8: -        item32_sc16_to_xx<uhd::htonx>(input, output, 1, scale_factor); i++; +        item32_sc16_to_xx<uhd::htonx>(input, output, 1, scale_factor); +        i++; +        break;      case 0x0:          convert_item32_1_to_fc32_1_bswap_guts(_)          break; | 
