Update includes so they don't require include path to be set

This commit is contained in:
Chris Cannam
2021-10-04 12:21:39 +01:00
parent c8ff7c3b2b
commit 61f7b5f8e6
24 changed files with 41 additions and 43 deletions

View File

@@ -23,7 +23,7 @@
#include "CompoundAudioCurve.h"
#include "dsp/MovingMedian.h"
#include "../dsp/MovingMedian.h"
#include <iostream>

View File

@@ -24,10 +24,9 @@
#ifndef RUBBERBAND_COMPOUND_AUDIO_CURVE_H
#define RUBBERBAND_COMPOUND_AUDIO_CURVE_H
#include "dsp/AudioCurveCalculator.h"
#include "PercussiveAudioCurve.h"
#include "HighFrequencyAudioCurve.h"
#include "dsp/SampleFilter.h"
#include "../dsp/SampleFilter.h"
namespace RubberBand
{

View File

@@ -24,7 +24,7 @@
#ifndef RUBBERBAND_CONSTANT_AUDIO_CURVE_H
#define RUBBERBAND_CONSTANT_AUDIO_CURVE_H
#include "dsp/AudioCurveCalculator.h"
#include "../dsp/AudioCurveCalculator.h"
namespace RubberBand
{

View File

@@ -24,7 +24,7 @@
#ifndef RUBBERBAND_HIGHFREQUENCY_AUDIO_CURVE_H
#define RUBBERBAND_HIGHFREQUENCY_AUDIO_CURVE_H
#include "dsp/AudioCurveCalculator.h"
#include "../dsp/AudioCurveCalculator.h"
namespace RubberBand
{

View File

@@ -23,8 +23,8 @@
#include "PercussiveAudioCurve.h"
#include "system/Allocators.h"
#include "system/VectorOps.h"
#include "../system/Allocators.h"
#include "../system/VectorOps.h"
#include <cmath>
#include <iostream>

View File

@@ -24,7 +24,7 @@
#ifndef RUBBERBAND_PERCUSSIVE_AUDIO_CURVE_H
#define RUBBERBAND_PERCUSSIVE_AUDIO_CURVE_H
#include "dsp/AudioCurveCalculator.h"
#include "../dsp/AudioCurveCalculator.h"
namespace RubberBand
{

View File

@@ -24,7 +24,7 @@
#ifndef RUBBERBAND_SILENT_AUDIO_CURVE_H
#define RUBBERBAND_SILENT_AUDIO_CURVE_H
#include "dsp/AudioCurveCalculator.h"
#include "../dsp/AudioCurveCalculator.h"
namespace RubberBand
{

View File

@@ -23,8 +23,8 @@
#include "SpectralDifferenceAudioCurve.h"
#include "system/Allocators.h"
#include "system/VectorOps.h"
#include "../system/Allocators.h"
#include "../system/VectorOps.h"
namespace RubberBand
{

View File

@@ -24,8 +24,8 @@
#ifndef RUBBERBAND_SPECTRALDIFFERENCE_AUDIO_CURVE_H
#define RUBBERBAND_SPECTRALDIFFERENCE_AUDIO_CURVE_H
#include "dsp/AudioCurveCalculator.h"
#include "dsp/Window.h"
#include "../dsp/AudioCurveCalculator.h"
#include "../dsp/Window.h"
namespace RubberBand
{