2022-04-22 03:04:30 +00:00
|
|
|
// SPDX-License-Identifier: GPLv3-or-later WITH Appstore-exception
|
|
|
|
// Copyright (C) 2017 Xenakios
|
|
|
|
// Copyright (C) 2020 Jesse Chappell
|
2017-11-13 15:06:08 +00:00
|
|
|
|
|
|
|
|
2018-05-01 12:11:45 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "../JuceLibraryCode/JuceHeader.h"
|
2017-11-13 15:06:08 +00:00
|
|
|
|
2018-05-01 12:11:45 +00:00
|
|
|
class JUCE_API MyBufferingAudioSource : public PositionableAudioSource,
|
2017-11-13 15:06:08 +00:00
|
|
|
private TimeSliceClient
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
//==============================================================================
|
|
|
|
/** Creates a BufferingAudioSource.
|
|
|
|
|
|
|
|
@param source the input source to read from
|
|
|
|
@param backgroundThread a background thread that will be used for the
|
|
|
|
background read-ahead. This object must not be deleted
|
|
|
|
until after any BufferingAudioSources that are using it
|
|
|
|
have been deleted!
|
|
|
|
@param deleteSourceWhenDeleted if true, then the input source object will
|
|
|
|
be deleted when this object is deleted
|
|
|
|
@param numberOfSamplesToBuffer the size of buffer to use for reading ahead
|
|
|
|
@param numberOfChannels the number of channels that will be played
|
|
|
|
@param prefillBufferOnPrepareToPlay if true, then calling prepareToPlay on this object will
|
|
|
|
block until the buffer has been filled
|
|
|
|
*/
|
|
|
|
MyBufferingAudioSource(PositionableAudioSource* source,
|
|
|
|
TimeSliceThread& backgroundThread,
|
|
|
|
bool deleteSourceWhenDeleted,
|
|
|
|
int numberOfSamplesToBuffer,
|
|
|
|
int numberOfChannels = 2,
|
|
|
|
bool prefillBufferOnPrepareToPlay = true);
|
|
|
|
|
|
|
|
~MyBufferingAudioSource();
|
|
|
|
|
|
|
|
void prepareToPlay (int samplesPerBlockExpected, double sampleRate) override;
|
|
|
|
|
|
|
|
void releaseResources() override;
|
|
|
|
|
|
|
|
void getNextAudioBlock (const AudioSourceChannelInfo&) override;
|
|
|
|
|
|
|
|
void setNextReadPosition (int64 newPosition) override;
|
|
|
|
|
|
|
|
int64 getNextReadPosition() const override;
|
|
|
|
|
|
|
|
int64 getTotalLength() const override { return source->getTotalLength(); }
|
|
|
|
|
|
|
|
bool isLooping() const override { return source->isLooping(); }
|
|
|
|
|
|
|
|
bool waitForNextAudioBlockReady (const AudioSourceChannelInfo& info, const uint32 timeout);
|
2018-10-15 16:21:11 +00:00
|
|
|
[[nodiscard]] double getPercentReady() const;
|
2017-11-13 15:06:08 +00:00
|
|
|
int getNumberOfChannels() { return numberOfChannels; }
|
|
|
|
private:
|
|
|
|
//==============================================================================
|
|
|
|
OptionalScopedPointer<PositionableAudioSource> source;
|
|
|
|
TimeSliceThread& backgroundThread;
|
|
|
|
int numberOfSamplesToBuffer, numberOfChannels;
|
|
|
|
AudioBuffer<float> buffer;
|
|
|
|
CriticalSection bufferStartPosLock;
|
|
|
|
WaitableEvent bufferReadyEvent;
|
2018-05-01 12:11:45 +00:00
|
|
|
std::atomic<int64> bufferValidStart { 0 }, bufferValidEnd { 0 }, nextPlayPos { 0 };
|
|
|
|
double sampleRate = 0;
|
|
|
|
bool wasSourceLooping = false, isPrepared = false, prefillBuffer;
|
2017-11-13 15:06:08 +00:00
|
|
|
|
|
|
|
bool readNextBufferChunk();
|
|
|
|
void readBufferSection (int64 start, int length, int bufferOffset);
|
|
|
|
int useTimeSlice() override;
|
|
|
|
|
|
|
|
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (MyBufferingAudioSource)
|
|
|
|
};
|
|
|
|
|
|
|
|
|