Browse Source

Merge pull request #63 from valentindavid/master

Fix sample_move_d24_sS when using SSE4.1
tags/v1.9.10
Stéphane Letz 11 years ago
parent
commit
4813f1b5c3
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      common/memops.c

+ 1
- 1
common/memops.c View File

@@ -445,12 +445,12 @@ void sample_move_d24_sS (char *dst, jack_default_audio_sample_t *src, unsigned l
_mm_store_ss((float*)z+1, (__m128)shuffled1);
_mm_store_ss((float*)z+2, (__m128)shuffled2);
_mm_store_ss((float*)z+3, (__m128)shuffled3);
#endif

for (i = 0; i != 4; ++i) {
memcpy (dst, z+i, 3);
dst += dst_skip;
}
#endif

nsamples -= 4;
src += 4;


Loading…
Cancel
Save