Changeset a6b5bf1


Ignore:
Timestamp:
Oct 1, 2017, 3:28:17 PM (6 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:
95f5c83
Parents:
81b3910
Message:

src/aubio_priv.h: include ipp headers from here

Location:
src
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • src/aubio_priv.h

    r81b3910 ra6b5bf1  
    124124#endif /* HAVE_ATLAS */
    125125
    126 #if !defined(HAVE_MEMCPY_HACKS) && !defined(HAVE_ACCELERATE) && !defined(HAVE_ATLAS)
     126#if defined HAVE_INTEL_IPP
     127#include <ippcore.h>
     128#include <ippvm.h>
     129#include <ipps.h>
     130#endif
     131
     132#if !defined(HAVE_MEMCPY_HACKS) && !defined(HAVE_ACCELERATE) && !defined(HAVE_ATLAS) && !defined(HAVE_INTEL_IPP)
    127133#define HAVE_NOOPT 1
    128134#else
  • src/cvec.c

    r81b3910 ra6b5bf1  
    2121#include "aubio_priv.h"
    2222#include "cvec.h"
    23 
    24 #if defined HAVE_INTEL_IPP
    25 #include <ippcore.h>
    26 #include <ippvm.h>
    27 #include <ipps.h>
    28 #endif
    2923
    3024cvec_t * new_cvec(uint_t length) {
  • src/fvec.c

    r81b3910 ra6b5bf1  
    2121#include "aubio_priv.h"
    2222#include "fvec.h"
    23 
    24 #if defined HAVE_INTEL_IPP
    25 #include <ippcore.h>
    26 #include <ippvm.h>
    27 #include <ipps.h>
    28 #endif
    2923
    3024fvec_t * new_fvec(uint_t length) {
  • src/mathutils.c

    r81b3910 ra6b5bf1  
    2525#include "mathutils.h"
    2626#include "musicutils.h"
    27 
    28 #if defined HAVE_INTEL_IPP
    29 #include <ippcore.h>
    30 #include <ippvm.h>
    31 #include <ipps.h>
    32 #endif
    3327
    3428/** Window types */
Note: See TracChangeset for help on using the changeset viewer.