-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathenginebuffer.h
450 lines (372 loc) · 15.3 KB
/
enginebuffer.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
#pragma once
#include <gtest/gtest_prod.h>
#include <QAtomicInt>
#include <QMutex>
#include <cfloat>
#include <initializer_list>
#include "audio/frame.h"
#include "control/controlvalue.h"
#include "engine/bufferscalers/enginebufferscalerubberband.h"
#include "engine/cachingreader/cachingreader.h"
#include "engine/engineobject.h"
#include "engine/sync/syncable.h"
#include "preferences/usersettings.h"
#include "track/bpm.h"
#include "track/track_decl.h"
#include "util/rotary.h"
#include "util/types.h"
//for the writer
#ifdef __SCALER_DEBUG__
#include <QFile>
#include <QTextStream>
#endif
class EngineChannel;
class EngineControl;
class BpmControl;
class KeyControl;
class RateControl;
class SyncControl;
class VinylControlControl;
class LoopingControl;
class ClockControl;
class CueControl;
class ReadAheadManager;
class ControlObject;
class ControlProxy;
class ControlPushButton;
class ControlPotmeter;
class EngineBufferScale;
class EngineBufferScaleLinear;
class EngineBufferScaleST;
class EngineBufferScaleRubberBand;
class EngineSync;
class EngineWorkerScheduler;
class VisualPlayPosition;
class EngineMaster;
class EngineBuffer : public EngineObject {
Q_OBJECT
private:
enum SyncRequestQueued {
SYNC_REQUEST_NONE,
SYNC_REQUEST_ENABLE,
SYNC_REQUEST_DISABLE,
SYNC_REQUEST_ENABLEDISABLE,
};
public:
enum SeekRequest {
SEEK_NONE = 0u,
/// Force an in-phase seek
SEEK_PHASE = 1u,
/// Bypass Quantization
SEEK_EXACT = 2u,
/// This is an artificial state that happens if an exact seek and a
/// phase seek are scheduled at the same time.
SEEK_EXACT_PHASE = SEEK_PHASE | SEEK_EXACT,
/// #SEEK_PHASE if Quantize enables, otherwise SEEK_EXACT
SEEK_STANDARD = 4u,
/// This is an artificial state that happens if a standard seek and a
/// phase seek are scheduled at the same time.
SEEK_STANDARD_PHASE = SEEK_STANDARD | SEEK_PHASE,
};
Q_DECLARE_FLAGS(SeekRequests, SeekRequest);
// This enum is also used in mixxx.cfg
// Don't remove or swap values to keep backward compatibility
enum class KeylockEngine {
SoundTouch = 0,
RubberBandFaster = 1,
RubberBandFiner = 2,
};
// intended for iteration over the KeylockEngine enum
constexpr static std::initializer_list<KeylockEngine> kKeylockEngines = {
KeylockEngine::SoundTouch,
KeylockEngine::RubberBandFaster,
KeylockEngine::RubberBandFiner};
EngineBuffer(const QString& group, UserSettingsPointer pConfig,
EngineChannel* pChannel, EngineMaster* pMixingEngine);
virtual ~EngineBuffer();
void bindWorkers(EngineWorkerScheduler* pWorkerScheduler);
QString getGroup() const;
// Return the current rate (not thread-safe)
double getSpeed() const;
bool getScratching() const;
bool isReverse() const;
/// Returns current bpm value (not thread-safe)
mixxx::Bpm getBpm() const;
/// Returns the BPM of the loaded track around the current position (not thread-safe)
mixxx::Bpm getLocalBpm() const;
/// Sets a beatloop for the loaded track (not thread safe)
void setBeatLoop(mixxx::audio::FramePos startPosition, bool enabled);
/// Sets a loop for the loaded track (not thread safe)
void setLoop(mixxx::audio::FramePos startPosition,
mixxx::audio::FramePos endPositon,
bool enabled);
// Sets pointer to other engine buffer/channel
void setEngineMaster(EngineMaster*);
// Queues a new seek position. Use SEEK_EXACT or SEEK_STANDARD as seekType
void queueNewPlaypos(mixxx::audio::FramePos newpos, enum SeekRequest seekType);
void requestSyncPhase();
void requestEnableSync(bool enabled);
void requestSyncMode(SyncMode mode);
void requestClonePosition(EngineChannel* pChannel);
// The process methods all run in the audio callback.
void process(CSAMPLE* pOut, const int iBufferSize) override;
void processSlip(int iBufferSize);
void postProcess(const int iBufferSize);
/// Returns the seek position iff a seek is currently queued but not yet
/// processed. If no seek was queued, and invalid frame position is returned.
mixxx::audio::FramePos queuedSeekPosition() const;
bool isTrackLoaded() const;
TrackPointer getLoadedTrack() const;
void ejectTrack();
mixxx::audio::FramePos getExactPlayPos() const;
double getVisualPlayPos() const;
mixxx::audio::FramePos getTrackEndPosition() const;
void setTrackEndPosition(mixxx::audio::FramePos position);
double getUserOffset() const;
double getRateRatio() const;
void collectFeatures(GroupFeatureState* pGroupFeatures) const override;
// For dependency injection of scalers.
void setScalerForTest(
EngineBufferScale* pScaleVinyl,
EngineBufferScale* pScaleKeylock);
// For injection of fake tracks.
void loadFakeTrack(TrackPointer pTrack, bool bPlay);
static QString getKeylockEngineName(KeylockEngine engine) {
switch (engine) {
case KeylockEngine::SoundTouch:
return tr("Soundtouch (faster)");
case KeylockEngine::RubberBandFaster:
return tr("Rubberband (better)");
case KeylockEngine::RubberBandFiner:
if (EngineBufferScaleRubberBand::isEngineFinerAvailable()) {
return tr("Rubberband R3 (near-hi-fi quality)");
}
[[fallthrough]];
default:
return tr("Unknown, using Rubberband (better)");
}
}
static bool isKeylockEngineAvailable(KeylockEngine engine) {
switch (engine) {
case KeylockEngine::SoundTouch:
return true;
case KeylockEngine::RubberBandFaster:
return true;
case KeylockEngine::RubberBandFiner:
return EngineBufferScaleRubberBand::isEngineFinerAvailable();
default:
return false;
}
}
constexpr static KeylockEngine defaultKeylockEngine() {
return KeylockEngine::RubberBandFaster;
}
// Request that the EngineBuffer load a track. Since the process is
// asynchronous, EngineBuffer will emit a trackLoaded signal when the load
// has completed.
void loadTrack(TrackPointer pTrack, bool play);
void setChannelIndex(int channelIndex) {
m_channelIndex = channelIndex;
}
void seekAbs(mixxx::audio::FramePos);
void seekExact(mixxx::audio::FramePos);
public slots:
void slotControlPlayRequest(double);
void slotControlPlayFromStart(double);
void slotControlJumpToStartAndStop(double);
void slotControlStop(double);
void slotControlStart(double);
void slotControlEnd(double);
void slotControlSeek(double);
void slotKeylockEngineChanged(double);
signals:
void trackLoaded(TrackPointer pNewTrack, TrackPointer pOldTrack);
void trackLoadFailed(TrackPointer pTrack, const QString& reason);
private slots:
void slotTrackLoading();
void slotTrackLoaded(TrackPointer pTrack,
int iSampleRate, int iNumSamples);
void slotTrackLoadFailed(TrackPointer pTrack,
const QString& reason);
// Fired when passthrough mode is enabled or disabled.
void slotPassthroughChanged(double v);
void slotUpdatedTrackBeats();
private:
struct QueuedSeek {
mixxx::audio::FramePos position;
enum SeekRequest seekType;
};
// Add an engine control to the EngineBuffer
// must not be called outside the Constructor
void addControl(EngineControl* pControl);
void enableIndependentPitchTempoScaling(bool bEnable,
const int iBufferSize);
void updateIndicators(double rate, int iBufferSize);
void hintReader(const double rate);
double fractionalPlayposFromAbsolute(mixxx::audio::FramePos position);
void doSeekFractional(double fractionalPos, enum SeekRequest seekType);
void doSeekPlayPos(mixxx::audio::FramePos position, enum SeekRequest seekType);
// Read one buffer from the current scaler into the crossfade buffer. Used
// for transitioning from one scaler to another, or reseeking a scaler
// to prevent pops.
void readToCrossfadeBuffer(const int iBufferSize);
// Copy the play position from the given buffer
void seekCloneBuffer(EngineBuffer* pOtherBuffer);
// Reset buffer playpos and set file playpos.
void setNewPlaypos(mixxx::audio::FramePos playpos);
void processSyncRequests();
void processSeek(bool paused);
// For debugging / testing -- returns true if the previous buffer call resulted in a seek.
FRIEND_TEST(EngineSyncTest, FollowerUserTweakPreservedInSyncDisable);
bool previousBufferSeek() const {
return m_previousBufferSeek;
}
bool updateIndicatorsAndModifyPlay(bool newPlay, bool oldPlay);
void verifyPlay();
void notifyTrackLoaded(TrackPointer pNewTrack, TrackPointer pOldTrack);
void processTrackLocked(CSAMPLE* pOutput,
const int iBufferSize,
mixxx::audio::SampleRate sampleRate);
// Holds the name of the control group
const QString m_group;
int m_channelIndex;
UserSettingsPointer m_pConfig;
friend class CueControlTest;
friend class HotcueControlTest;
friend class LoopingControlTest;
LoopingControl* m_pLoopingControl; // used for tests
FRIEND_TEST(LoopingControlTest, LoopScale_HalvesLoop);
FRIEND_TEST(SyncControlTest, TestDetermineBpmMultiplier);
FRIEND_TEST(EngineSyncTest, HalfDoubleBpmTest);
FRIEND_TEST(EngineSyncTest, HalfDoubleThenPlay);
FRIEND_TEST(EngineSyncTest, UserTweakBeatDistance);
FRIEND_TEST(EngineSyncTest, UserTweakPreservedInSeek);
FRIEND_TEST(EngineSyncTest, FollowerUserTweakPreservedInLeaderChange);
FRIEND_TEST(EngineSyncTest, BeatMapQuantizePlay);
FRIEND_TEST(EngineBufferTest, ScalerNoTransport);
EngineSync* m_pEngineSync;
SyncControl* m_pSyncControl;
VinylControlControl* m_pVinylControlControl;
RateControl* m_pRateControl;
BpmControl* m_pBpmControl;
KeyControl* m_pKeyControl;
ClockControl* m_pClockControl;
FRIEND_TEST(CueControlTest, SeekOnSetCueCDJ);
FRIEND_TEST(CueControlTest, SeekOnSetCuePlay);
CueControl* m_pCueControl;
QList<EngineControl*> m_engineControls;
// The read ahead manager for EngineBufferScale's that need to read ahead
ReadAheadManager* m_pReadAheadManager;
// The reader used to read audio files
CachingReader* m_pReader;
// List of hints to provide to the CachingReader
HintVector m_hintList;
// The current sample to play in the file.
mixxx::audio::FramePos m_playPosition;
// The previous callback's speed. Used to check if the scaler parameters
// need updating.
double m_speed_old;
// The previous callback's tempo ratio.
double m_tempo_ratio_old;
// True if the previous callback was scratching.
bool m_scratching_old;
// True if the previous callback was reverse.
bool m_reverse_old;
// The previous callback's pitch. Used to check if the scaler parameters
// need updating.
double m_pitch_old;
// The previous callback's baserate. Used to check if the scaler parameters
// need updating.
double m_baserate_old;
// Copy of rate_exchange, used to check if rate needs to be updated
double m_rate_old;
// Copy of length of file
mixxx::audio::FramePos m_trackEndPositionOld;
// Copy of file sample rate
mixxx::audio::SampleRate m_trackSampleRateOld;
// Mutex controlling whether the process function is in pause mode. This happens
// during seek and loading of a new track
QMutex m_pause;
// Used in update of playpos slider
int m_iSamplesSinceLastIndicatorUpdate;
// The location where the track would have been had slip not been engaged
mixxx::audio::FramePos m_slipPosition;
// Saved value of rate for slip mode
double m_dSlipRate;
// m_bSlipEnabledProcessing is only used by the engine processing thread.
bool m_bSlipEnabledProcessing;
ControlObject* m_pTrackSamples;
ControlObject* m_pTrackSampleRate;
ControlPushButton* m_playButton;
ControlPushButton* m_playStartButton;
ControlPushButton* m_stopStartButton;
ControlPushButton* m_stopButton;
ControlObject* m_fwdButton;
ControlObject* m_backButton;
ControlPushButton* m_pSlipButton;
ControlObject* m_pQuantize;
ControlObject* m_pMasterRate;
ControlPotmeter* m_playposSlider;
ControlProxy* m_pSampleRate;
ControlProxy* m_pKeylockEngine;
ControlPushButton* m_pKeylock;
// This ControlProxys is created as parent to this and deleted by
// the Qt object tree. This helps that they are deleted by the creating
// thread, which is required to avoid segfaults.
ControlProxy* m_pPassthroughEnabled;
ControlObject* m_pTrackLoaded;
// Whether or not to repeat the track when at the end
ControlPushButton* m_pRepeat;
// Fwd and back controls, start and end of track control
ControlPushButton* m_startButton;
ControlPushButton* m_endButton;
// Object used to perform waveform scaling (sample rate conversion). These
// three pointers may be reassigned depending on configuration and tests.
EngineBufferScale* m_pScale;
FRIEND_TEST(EngineBufferTest, SlowRubberBand);
FRIEND_TEST(EngineBufferTest, ResetPitchAdjustUsesLinear);
FRIEND_TEST(EngineBufferTest, VinylScalerRampZero);
FRIEND_TEST(EngineBufferTest, ReadFadeOut);
FRIEND_TEST(EngineBufferTest, RateTempTest);
FRIEND_TEST(EngineBufferTest, RatePermTest);
EngineBufferScale* m_pScaleVinyl;
// The keylock engine is configurable, so it could flip flop between
// ScaleST and ScaleRB during a single callback.
EngineBufferScale* volatile m_pScaleKeylock;
// Object used for vinyl-style interpolation scaling of the audio
EngineBufferScaleLinear* m_pScaleLinear;
// Objects used for pitch-indep time stretch (key lock) scaling of the audio
EngineBufferScaleST* m_pScaleST;
EngineBufferScaleRubberBand* m_pScaleRB;
// Indicates whether the scaler has changed since the last process()
bool m_bScalerChanged;
// Indicates that dependency injection has taken place.
bool m_bScalerOverride;
QAtomicInt m_iSeekPhaseQueued;
QAtomicInt m_iEnableSyncQueued;
QAtomicInt m_iSyncModeQueued;
ControlValueAtomic<QueuedSeek> m_queuedSeek;
bool m_previousBufferSeek = false;
/// Indicates that no seek is queued
static constexpr QueuedSeek kNoQueuedSeek = {mixxx::audio::kInvalidFramePos, SEEK_NONE};
QAtomicPointer<EngineChannel> m_pChannelToCloneFrom;
// Is true if the previous buffer was silent due to pausing
QAtomicInt m_iTrackLoading;
bool m_bPlayAfterLoading;
// Records the sample rate so we can detect when it changes. Initialized to
// 0 to guarantee we see a change on the first callback.
mixxx::audio::SampleRate m_sampleRate;
TrackPointer m_pCurrentTrack;
#ifdef __SCALER_DEBUG__
QFile df;
QTextStream writer;
#endif
// Certain operations like seeks and engine changes need to be crossfaded
// to eliminate clicks and pops.
CSAMPLE* m_pCrossfadeBuffer;
bool m_bCrossfadeReady;
int m_iLastBufferSize;
QSharedPointer<VisualPlayPosition> m_visualPlayPos;
};
Q_DECLARE_METATYPE(EngineBuffer::KeylockEngine)
Q_DECLARE_OPERATORS_FOR_FLAGS(EngineBuffer::SeekRequests)