diff options
| author | Ben Hilburn <ben.hilburn@ettus.com> | 2013-12-13 15:06:46 -0800 | 
|---|---|---|
| committer | Ben Hilburn <ben.hilburn@ettus.com> | 2013-12-13 15:06:46 -0800 | 
| commit | d80a5b6bea659607b16cd3ece8d248dd8cd788ee (patch) | |
| tree | d3f5a27108fd987e60e7bd83098cd2eb8b0c7ec4 /host/lib/convert | |
| parent | 03a1828944aebea34114634f885fdd46471cd211 (diff) | |
| parent | 92b0b7ab6b8fcc795612054a07064351aa969e3a (diff) | |
| download | uhd-003_006_002_rc2.tar.gz uhd-003_006_002_rc2.tar.bz2 uhd-003_006_002_rc2.zip | |
Merge branch 'master' into next003_006_002_rc2
Diffstat (limited to 'host/lib/convert')
| -rw-r--r-- | host/lib/convert/sse2_fc32_to_sc16.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/host/lib/convert/sse2_fc32_to_sc16.cpp b/host/lib/convert/sse2_fc32_to_sc16.cpp index a83e9b46c..69786d7ce 100644 --- a/host/lib/convert/sse2_fc32_to_sc16.cpp +++ b/host/lib/convert/sse2_fc32_to_sc16.cpp @@ -103,6 +103,7 @@ DECLARE_CONVERTER(fc32, 1, sc16_item32_be, 1, PRIORITY_SIMD){      case 0x0:          // the data is 16-byte aligned, so do the fast processing of the bulk of the samples          convert_fc32_1_to_item32_1_bswap_guts(_) +        break;      case 0x8:          // the first value is 8-byte aligned - process it and prepare the bulk of the data for fast conversion          xx_to_item32_sc16<uhd::htonx>(input, output, 1, scale_factor); @@ -110,7 +111,6 @@ DECLARE_CONVERTER(fc32, 1, sc16_item32_be, 1, PRIORITY_SIMD){          // do faster processing of the remaining samples now that we are 16-byte aligned          convert_fc32_1_to_item32_1_bswap_guts(_)          break; -        break;      default:          // we are not 8 or 16-byte aligned, so do fast processing with the unaligned load          convert_fc32_1_to_item32_1_bswap_guts(u_) | 
