mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-02-05 03:50:07 +00:00
(Added missing files from last check-in)
This commit is contained in:
parent
4d16424d9c
commit
158a17f08a
262 changed files with 119814 additions and 137 deletions
134
src/audio/audio_sources/juce_AudioFormatReaderSource.cpp
Normal file
134
src/audio/audio_sources/juce_AudioFormatReaderSource.cpp
Normal file
|
|
@ -0,0 +1,134 @@
|
|||
/*
|
||||
==============================================================================
|
||||
|
||||
This file is part of the JUCE library - "Jules' Utility Class Extensions"
|
||||
Copyright 2004-9 by Raw Material Software Ltd.
|
||||
|
||||
------------------------------------------------------------------------------
|
||||
|
||||
JUCE can be redistributed and/or modified under the terms of the GNU General
|
||||
Public License (Version 2), as published by the Free Software Foundation.
|
||||
A copy of the license is included in the JUCE distribution, or can be found
|
||||
online at www.gnu.org/licenses.
|
||||
|
||||
JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
||||
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||
|
||||
------------------------------------------------------------------------------
|
||||
|
||||
To release a closed-source product which uses JUCE, commercial licenses are
|
||||
available: visit www.rawmaterialsoftware.com/juce for more information.
|
||||
|
||||
==============================================================================
|
||||
*/
|
||||
|
||||
#include "../../core/juce_StandardHeader.h"
|
||||
|
||||
BEGIN_JUCE_NAMESPACE
|
||||
|
||||
#include "juce_AudioFormatReaderSource.h"
|
||||
#include "../../threads/juce_ScopedLock.h"
|
||||
|
||||
|
||||
//==============================================================================
|
||||
AudioFormatReaderSource::AudioFormatReaderSource (AudioFormatReader* const reader_,
|
||||
const bool deleteReaderWhenThisIsDeleted)
|
||||
: reader (reader_),
|
||||
deleteReader (deleteReaderWhenThisIsDeleted),
|
||||
nextPlayPos (0),
|
||||
looping (false)
|
||||
{
|
||||
jassert (reader != 0);
|
||||
}
|
||||
|
||||
AudioFormatReaderSource::~AudioFormatReaderSource()
|
||||
{
|
||||
releaseResources();
|
||||
|
||||
if (deleteReader)
|
||||
delete reader;
|
||||
}
|
||||
|
||||
void AudioFormatReaderSource::setNextReadPosition (int newPosition)
|
||||
{
|
||||
nextPlayPos = newPosition;
|
||||
}
|
||||
|
||||
void AudioFormatReaderSource::setLooping (const bool shouldLoop) throw()
|
||||
{
|
||||
looping = shouldLoop;
|
||||
}
|
||||
|
||||
int AudioFormatReaderSource::getNextReadPosition() const
|
||||
{
|
||||
return (looping) ? (nextPlayPos % (int) reader->lengthInSamples)
|
||||
: nextPlayPos;
|
||||
}
|
||||
|
||||
int AudioFormatReaderSource::getTotalLength() const
|
||||
{
|
||||
return (int) reader->lengthInSamples;
|
||||
}
|
||||
|
||||
void AudioFormatReaderSource::prepareToPlay (int /*samplesPerBlockExpected*/,
|
||||
double /*sampleRate*/)
|
||||
{
|
||||
}
|
||||
|
||||
void AudioFormatReaderSource::releaseResources()
|
||||
{
|
||||
}
|
||||
|
||||
void AudioFormatReaderSource::getNextAudioBlock (const AudioSourceChannelInfo& info)
|
||||
{
|
||||
if (info.numSamples > 0)
|
||||
{
|
||||
const int start = nextPlayPos;
|
||||
|
||||
if (looping)
|
||||
{
|
||||
const int newStart = start % (int) reader->lengthInSamples;
|
||||
const int newEnd = (start + info.numSamples) % (int) reader->lengthInSamples;
|
||||
|
||||
if (newEnd > newStart)
|
||||
{
|
||||
info.buffer->readFromAudioReader (reader,
|
||||
info.startSample,
|
||||
newEnd - newStart,
|
||||
newStart,
|
||||
true, true);
|
||||
}
|
||||
else
|
||||
{
|
||||
const int endSamps = (int) reader->lengthInSamples - newStart;
|
||||
|
||||
info.buffer->readFromAudioReader (reader,
|
||||
info.startSample,
|
||||
endSamps,
|
||||
newStart,
|
||||
true, true);
|
||||
|
||||
info.buffer->readFromAudioReader (reader,
|
||||
info.startSample + endSamps,
|
||||
newEnd,
|
||||
0,
|
||||
true, true);
|
||||
}
|
||||
|
||||
nextPlayPos = newEnd;
|
||||
}
|
||||
else
|
||||
{
|
||||
info.buffer->readFromAudioReader (reader,
|
||||
info.startSample,
|
||||
info.numSamples,
|
||||
start,
|
||||
true, true);
|
||||
|
||||
nextPlayPos += info.numSamples;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
END_JUCE_NAMESPACE
|
||||
Loading…
Add table
Add a link
Reference in a new issue