Changeset b65230a for src/mathutils.c


Ignore:
Timestamp:
Oct 1, 2017, 3:41:41 PM (7 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master
Children:
9720945
Parents:
3f90b7a
Message:

src/aubio_priv.h: fix for double precision mode

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/mathutils.c

    r3f90b7a rb65230a  
    161161  smpl_t tmp = 0.0;
    162162#if defined(HAVE_INTEL_IPP)
    163   aubio_ippsMean(s->data, (int)s->length, &tmp, ippAlgHintFast);
     163  aubio_ippsMean(s->data, (int)s->length, &tmp);
    164164  return tmp;
    165165#elif defined(HAVE_ACCELERATE)
     
    180180  smpl_t tmp = 0.0;
    181181#if defined(HAVE_INTEL_IPP)
    182   aubio_ippsSum(s->data, (int)s->length, &tmp, ippAlgHintFast);
     182  aubio_ippsSum(s->data, (int)s->length, &tmp);
    183183#elif defined(HAVE_ACCELERATE)
    184184  aubio_vDSP_sve(s->data, 1, &tmp, s->length);
Note: See TracChangeset for help on using the changeset viewer.