Changeset b701179


Ignore:
Timestamp:
Oct 1, 2017, 6:55:35 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:
f3f0d14
Parents:
14e300e
Message:

src/*.c, wscript: remove trailing spaces

Files:
5 edited

Legend:

Unmodified
Added
Removed
  • src/cvec.c

    r14e300e rb701179  
    117117#elif defined(HAVE_MEMCPY_HACKS)
    118118  memset(s->norm, 0, s->length * sizeof(smpl_t));
    119 #else 
     119#else
    120120  cvec_norm_set_all (s, 0.);
    121121#endif
  • src/fvec.c

    r14e300e rb701179  
    103103#if defined(HAVE_INTEL_IPP)
    104104  aubio_ippsMul(s->data, weight->data, s->data, (int)length);
    105 #elif defined(HAVE_ACCELERATE) 
     105#elif defined(HAVE_ACCELERATE)
    106106  aubio_vDSP_vmul( s->data, 1, weight->data, 1, s->data, 1, length );
    107107#else
     
    117117#if defined(HAVE_INTEL_IPP)
    118118  aubio_ippsMul(in->data, weight->data, out->data, (int)length);
    119 #elif defined(HAVE_ACCELERATE) 
     119#elif defined(HAVE_ACCELERATE)
    120120  aubio_vDSP_vmul(in->data, 1, weight->data, 1, out->data, 1, length);
    121121#else
  • src/mathutils.c

    r14e300e rb701179  
    589589aubio_power_of_two_order (uint_t a)
    590590{
    591   int order = 0; 
     591  int order = 0;
    592592  int temp = aubio_next_power_of_two(a);
    593593  while (temp >>= 1) {
  • src/spectral/fft.c

    r14e300e rb701179  
    157157  aubio_DSPSplitComplex spec;
    158158  smpl_t *in, *out;
    159  
     159
    160160#elif defined HAVE_INTEL_IPP  // using Intel IPP
    161161  smpl_t *in, *out;
     
    223223#elif defined HAVE_INTEL_IPP  // using Intel IPP
    224224  const IppHintAlgorithm qualityHint = ippAlgHintAccurate; // OR ippAlgHintFast;
    225   const int flags = IPP_FFT_NODIV_BY_ANY; // we're scaling manually afterwards 
     225  const int flags = IPP_FFT_NODIV_BY_ANY; // we're scaling manually afterwards
    226226  int order = aubio_power_of_two_order(winsize);
    227227  int sizeSpec, sizeInit, sizeBuffer;
  • wscript

    r14e300e rb701179  
    290290    else:
    291291        ctx.msg('Checking if complex.h is enabled', 'no')
    292    
     292
    293293    # check for Intel IPP
    294294    if (ctx.options.enable_intelipp != False):
     
    302302        else:
    303303            ctx.msg('Checking if Intel IPP is available', 'no')
    304    
     304
    305305    # check for fftw3
    306306    if (ctx.options.enable_fftw3 != False or ctx.options.enable_fftw3f != False):
Note: See TracChangeset for help on using the changeset viewer.