annotate projects/heavy/envelopeTrigger/SignalDel1.c @ 162:c3e8226a5651 heavy-updated

- added additional flags to C rules (-DNDEBUG, -mfpu=neon) - sample-accurate envelope triggering pd/heavy example
author chnrx <chris.heinrichs@gmail.com>
date Thu, 12 Nov 2015 14:59:46 +0000
parents
children
rev   line source
chris@162 1 /**
chris@162 2 * Copyright (c) 2014, 2015, Enzien Audio Ltd.
chris@162 3 *
chris@162 4 * Permission to use, copy, modify, and/or distribute this software for any
chris@162 5 * purpose with or without fee is hereby granted, provided that the above
chris@162 6 * copyright notice and this permission notice appear in all copies.
chris@162 7 *
chris@162 8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
chris@162 9 * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
chris@162 10 * AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
chris@162 11 * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
chris@162 12 * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
chris@162 13 * OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
chris@162 14 * PERFORMANCE OF THIS SOFTWARE.
chris@162 15 */
chris@162 16
chris@162 17 #include "SignalDel1.h"
chris@162 18
chris@162 19 hv_size_t sDel1_init(SignalDel1 *o) {
chris@162 20 #if HV_SIMD_AVX
chris@162 21 o->x = _mm256_setzero_ps();
chris@162 22 #elif HV_SIMD_SSE
chris@162 23 o->x = _mm_setzero_ps();
chris@162 24 #elif HV_SIMD_NEON
chris@162 25 o->x = vdupq_n_f32(0.0f);
chris@162 26 #else
chris@162 27 o->x = 0.0f;
chris@162 28 #endif
chris@162 29 return 0;
chris@162 30 }
chris@162 31
chris@162 32 void sDel1_onMessage(HvBase *_c, SignalDel1 *o, int letIn, const HvMessage *m) {
chris@162 33 if (letIn == 2) {
chris@162 34 if (msg_compareSymbol(m, 0, "clear")) {
chris@162 35 #if HV_SIMD_AVX
chris@162 36 o->x = _mm256_setzero_ps();
chris@162 37 #elif HV_SIMD_SSE
chris@162 38 o->x = _mm_setzero_ps();
chris@162 39 #elif HV_SIMD_NEON
chris@162 40 o->x = vdupq_n_f32(0.0f);
chris@162 41 #else
chris@162 42 o->x = 0.0f;
chris@162 43 #endif
chris@162 44 }
chris@162 45 }
chris@162 46 }