annotate projects/heavy/envelopeTrigger/SignalRPole.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 "SignalRPole.h"
chris@162 18
chris@162 19 hv_size_t sRPole_init(SignalRPole *o) {
chris@162 20 #if HV_SIMD_AVX
chris@162 21 sDel1_init(&o->sDel1_fxiLN);
chris@162 22 sDel1_init(&o->sDel1_kjkpV);
chris@162 23 sDel1_init(&o->sDel1_dkIWc);
chris@162 24 sDel1_init(&o->sDel1_bVeoW);
chris@162 25 sDel1_init(&o->sDel1_PulZn);
chris@162 26 sDel1_init(&o->sDel1_yTFig);
chris@162 27 sDel1_init(&o->sDel1_Is9Qf);
chris@162 28 sDel1_init(&o->sDel1_LIyNt);
chris@162 29 sDel1_init(&o->sDel1_VqpU3);
chris@162 30 sDel1_init(&o->sDel1_ZVYeg);
chris@162 31 sDel1_init(&o->sDel1_IVAZh);
chris@162 32 sDel1_init(&o->sDel1_F8WrY);
chris@162 33 sDel1_init(&o->sDel1_rkFMy);
chris@162 34 sDel1_init(&o->sDel1_BeqSK);
chris@162 35 __hv_zero_f(&o->ym);
chris@162 36 #elif HV_SIMD_SSE || HV_SIMD_NEON
chris@162 37 sDel1_init(&o->sDel1_i8Twk);
chris@162 38 sDel1_init(&o->sDel1_KYibU);
chris@162 39 sDel1_init(&o->sDel1_spa5V);
chris@162 40 sDel1_init(&o->sDel1_3HXdb);
chris@162 41 sDel1_init(&o->sDel1_Aj1oK);
chris@162 42 sDel1_init(&o->sDel1_jNX1g);
chris@162 43 __hv_zero_f(&o->ym);
chris@162 44 #else
chris@162 45 o->ym = 0.0f;
chris@162 46 #endif
chris@162 47 return 0;
chris@162 48 }
chris@162 49
chris@162 50 void sRPole_onMessage(HvBase *_c, SignalRPole *o, int letIn, const HvMessage *m) {
chris@162 51 // TODO
chris@162 52 }