comparison audio/TimeStretchWrapper.h @ 746:771ec060c1d2

Merge from branch audio-source-refactor. Pull out auditioning effect wrapper and time stretch wrapper from play source; corresponding changes to plugin memory management etc.
author Chris Cannam
date Fri, 03 Apr 2020 12:14:05 +0100
parents 846970dbef17
children
comparison
equal deleted inserted replaced
743:7b1d30af4b38 746:771ec060c1d2
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
2
3 /*
4 Sonic Visualiser
5 An audio file viewer and annotation editor.
6 Centre for Digital Music, Queen Mary, University of London.
7
8 This program is free software; you can redistribute it and/or
9 modify it under the terms of the GNU General Public License as
10 published by the Free Software Foundation; either version 2 of the
11 License, or (at your option) any later version. See the file
12 COPYING included with this distribution for more information.
13 */
14
15 #ifndef SV_TIME_STRETCH_WRAPPER_H
16 #define SV_TIME_STRETCH_WRAPPER_H
17
18 #include "bqaudioio/ApplicationPlaybackSource.h"
19
20 #include "base/BaseTypes.h"
21
22 #include <vector>
23 #include <mutex>
24
25 namespace RubberBand {
26 class RubberBandStretcher;
27 }
28
29 /**
30 * A breakfastquay::ApplicationPlaybackSource wrapper that implements
31 * time-stretching using Rubber Band. Note that the stretcher is
32 * bypassed entirely when a ratio of 1.0 is set; this means it's
33 * (almost) free to use one of these wrappers normally, but it also
34 * means you can't switch from 1.0 to another ratio (or back again)
35 * without some audible artifacts.
36 *
37 * This is real-time safe while the ratio is fixed, and may perform
38 * reallocations when the ratio changes.
39 */
40 class TimeStretchWrapper : public breakfastquay::ApplicationPlaybackSource
41 {
42 public:
43 /**
44 * Create a wrapper around the given ApplicationPlaybackSource,
45 * implementing another ApplicationPlaybackSource interface that
46 * draws from the same source data but with a time-stretcher
47 * optionally applied.
48 *
49 * The wrapper does not take ownership of the wrapped
50 * ApplicationPlaybackSource, whose lifespan must exceed that of
51 * this object.
52 */
53 TimeStretchWrapper(ApplicationPlaybackSource *source);
54 ~TimeStretchWrapper();
55
56 /**
57 * Set a time stretch factor, i.e. playback speed, where 1.0 is
58 * normal speed
59 */
60 void setTimeStretchRatio(double ratio);
61
62 /**
63 * Clear stretcher buffers.
64 */
65 void reset();
66
67 // These functions are passed through to the wrapped
68 // ApplicationPlaybackSource
69
70 std::string getClientName() const override;
71 int getApplicationSampleRate() const override;
72 int getApplicationChannelCount() const override;
73
74 void setSystemPlaybackBlockSize(int) override;
75 void setSystemPlaybackSampleRate(int) override;
76 void setSystemPlaybackChannelCount(int) override;
77 void setSystemPlaybackLatency(int) override;
78
79 void setOutputLevels(float peakLeft, float peakRight) override;
80 void audioProcessingOverload() override;
81
82 /**
83 * Request some samples from the wrapped
84 * ApplicationPlaybackSource, time-stretch if appropriate, and
85 * return them to the target
86 */
87 int getSourceSamples(float *const *samples, int nchannels, int nframes)
88 override;
89
90 private:
91 ApplicationPlaybackSource *m_source;
92 RubberBand::RubberBandStretcher *m_stretcher;
93 double m_timeRatio;
94 std::vector<std::vector<float>> m_inputs;
95 std::mutex m_mutex;
96 int m_stretcherInputSize;
97 int m_channelCount;
98 sv_samplerate_t m_sampleRate;
99
100 void checkStretcher(); // call without m_mutex held
101
102 TimeStretchWrapper(const TimeStretchWrapper &)=delete;
103 TimeStretchWrapper &operator=(const TimeStretchWrapper &)=delete;
104 };
105
106 #endif
107
108