Changeset dddf1f5 for src/spectral


Ignore:
Timestamp:
Nov 29, 2007, 5:34:18 PM (17 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, pitchshift, sampler, timestretch, yinfft+
Children:
212da72
Parents:
66a1b955 (diff), 6c7d49b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

merge with main branch

Location:
src/spectral
Files:
5 added
7 moved

Legend:

Unmodified
Added
Removed
  • TabularUnified src/spectral/fft.c

    r66a1b955 rdddf1f5  
    2222#include "cvec.h"
    2323#include "mathutils.h"
    24 #include "fft.h"
     24#include "spectral/fft.h"
    2525
    2626#if FFTW3F_SUPPORT
  • TabularUnified src/spectral/phasevoc.c

    r66a1b955 rdddf1f5  
    2121#include "fvec.h"
    2222#include "cvec.h"
    23 #include "fft.h"
    2423#include "mathutils.h"
    25 #include "phasevoc.h"
     24#include "spectral/fft.h"
     25#include "spectral/phasevoc.h"
    2626
    2727/** phasevocoder internal object */
  • TabularUnified src/spectral/spectral_centroid.h

    r66a1b955 rdddf1f5  
    11/*
    2    Copyright (C) 2003-2007 Paul Brossier <piem@piem.org>
     2   Copyright (C) 2007 Paul Brossier
    33
    44   This program is free software; you can redistribute it and/or modify
     
    1818*/
    1919
    20 #ifndef _SAMPLE_H
    21 #define _SAMPLE_H
     20/** @file
     21 * compute spectrum centroid of a cvec object
     22 */
    2223
    23 #include "fvec.h"
    24 #include "cvec.h"
    25 
    26 #endif /* _SAMPLE_H */
     24/**
     25 * spectrum centroid computed on a cvec
     26 */
     27smpl_t aubio_spectral_centroid(cvec_t * input, smpl_t samplerate);
  • TabularUnified src/spectral/tss.c

    r66a1b955 rdddf1f5  
    2121
    2222#include "aubio_priv.h"
    23 #include "sample.h"
     23#include "fvec.h"
     24#include "cvec.h"
    2425#include "mathutils.h"
    25 #include "tss.h"
     26#include "spectral/tss.h"
    2627
    2728struct _aubio_tss_t
Note: See TracChangeset for help on using the changeset viewer.