Changeset bcf38fe


Ignore:
Timestamp:
Nov 24, 2007, 9:08:04 PM (16 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:
32d6958
Parents:
2d8cffa
Message:

src/: move tempo files to src/tempo, continue moving pitch and onset files

Location:
src
Files:
2 edited
10 moved

Legend:

Unmodified
Added
Removed
  • src/Makefile.am

    r2d8cffa rbcf38fe  
    1111        scale.h \
    1212        resample.h \
    13         onset/onsetdetection.h \
    1413        tss.h \
    15         peakpick.h \
    1614        biquad.h \
    17         pitchdetection.h \
     15        pitch/pitchdetection.h \
    1816        pitch/pitchmcomb.h \
    1917        pitch/pitchyin.h \
     
    2119        pitch/pitchfcomb.h \
    2220        pitch/pitchyinfft.h \
    23         beattracking.h \
    24         onset.h \
    25         tempo.h \
     21        onset/onset.h \
     22        onset/onsetdetection.h \
     23        onset/peakpick.h \
     24        tempo/tempo.h \
     25        tempo/beattracking.h \
    2626        filter.h \
    2727        filterbank.h \
     
    4949        resample.c \
    5050        resample.h \
    51         onset/onsetdetection.c \
    52         onset/onsetdetection.h \
    5351        tss.c \
    5452        tss.h \
    55         peakpick.c \
    56         peakpick.h \
    5753        biquad.c \
    5854        biquad.h \
    59         pitchdetection.c \
    60         pitchdetection.h \
     55        pitch/pitchdetection.c \
     56        pitch/pitchdetection.h \
    6157        pitch/pitchmcomb.c \
    6258        pitch/pitchmcomb.h \
     
    6965        pitch/pitchyinfft.c \
    7066        pitch/pitchyinfft.h \
    71         beattracking.c \
    72         beattracking.h \
    73         onset.c \
    74         onset.h \
    75         tempo.c \
    76         tempo.h \
     67        onset/onset.c \
     68        onset/onset.h \
     69        onset/onsetdetection.c \
     70        onset/onsetdetection.h \
     71        onset/peakpick.c \
     72        onset/peakpick.h \
     73        tempo/tempo.c \
     74        tempo/tempo.h \
     75        tempo/beattracking.c \
     76        tempo/beattracking.h \
    7777        filter.c \
    7878        filter.h \
  • src/aubio.h

    r2d8cffa rbcf38fe  
    6767#include "tss.h"
    6868#include "resample.h"
    69 #include "peakpick.h"
    7069#include "biquad.h"
    7170#include "filter.h"
    72 #include "pitchdetection.h"
     71#include "pitch/pitchdetection.h"
    7372#include "pitch/pitchmcomb.h"
    7473#include "pitch/pitchyin.h"
     
    7675#include "pitch/pitchschmitt.h"
    7776#include "pitch/pitchfcomb.h"
    78 #include "beattracking.h"
    79 #include "onset/detection.h"
    80 #include "onset.h"
    81 #include "tempo.h"
     77#include "onset/onsetdetection.h"
     78#include "onset/onset.h"
     79#include "onset/peakpick.h"
     80#include "tempo/beattracking.h"
     81#include "tempo/tempo.h"
    8282#include "filterbank.h"
    8383#include "mfcc.h"
  • src/onset/onset.c

    r2d8cffa rbcf38fe  
    2020#include "aubio_priv.h"
    2121#include "sample.h"
    22 #include "onset/detection.h"
     22#include "onset/onsetdetection.h"
    2323#include "phasevoc.h"
    2424#include "peakpick.h"
  • src/tempo/tempo.c

    r2d8cffa rbcf38fe  
    2020#include "aubio_priv.h"
    2121#include "sample.h"
    22 #include "onset/detection.h"
    23 #include "beattracking.h"
     22#include "onset/onsetdetection.h"
     23#include "tempo/beattracking.h"
    2424#include "phasevoc.h"
    25 #include "peakpick.h"
     25#include "onset/peakpick.h"
    2626#include "mathutils.h"
    2727#include "tempo.h"
Note: See TracChangeset for help on using the changeset viewer.