2009-08-09 21:16:39 +00:00
|
|
|
/*
|
2011-02-18 23:47:37 +00:00
|
|
|
* ***** BEGIN GPL LICENSE BLOCK *****
|
2009-08-09 21:16:39 +00:00
|
|
|
*
|
2011-02-18 23:47:37 +00:00
|
|
|
* Copyright 2009-2011 Jörg Hermann Müller
|
2009-08-09 21:16:39 +00:00
|
|
|
*
|
|
|
|
* This file is part of AudaSpace.
|
|
|
|
*
|
2011-02-18 23:47:37 +00:00
|
|
|
* Audaspace is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
2009-08-09 21:16:39 +00:00
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* AudaSpace 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
|
2011-02-18 23:47:37 +00:00
|
|
|
* GNU General Public License for more details.
|
2009-08-09 21:16:39 +00:00
|
|
|
*
|
2011-02-18 23:47:37 +00:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Audaspace; if not, write to the Free Software Foundation,
|
|
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2009-08-09 21:16:39 +00:00
|
|
|
*
|
2011-02-18 23:47:37 +00:00
|
|
|
* ***** END GPL LICENSE BLOCK *****
|
2009-08-09 21:16:39 +00:00
|
|
|
*/
|
|
|
|
|
2011-02-25 10:21:56 +00:00
|
|
|
/** \file audaspace/FX/AUD_DelayReader.cpp
|
|
|
|
* \ingroup audfx
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2009-08-09 21:16:39 +00:00
|
|
|
#include "AUD_DelayReader.h"
|
|
|
|
|
|
|
|
#include <cstring>
|
|
|
|
|
2012-11-05 14:24:35 +00:00
|
|
|
AUD_DelayReader::AUD_DelayReader(boost::shared_ptr<AUD_IReader> reader, float delay) :
|
2010-07-28 09:36:03 +00:00
|
|
|
AUD_EffectReader(reader),
|
2012-11-04 10:20:16 +00:00
|
|
|
m_delay(int((AUD_SampleRate)delay * reader->getSpecs().rate)),
|
|
|
|
m_remdelay(int((AUD_SampleRate)delay * reader->getSpecs().rate))
|
2009-08-09 21:16:39 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void AUD_DelayReader::seek(int position)
|
|
|
|
{
|
|
|
|
if(position < m_delay)
|
|
|
|
{
|
|
|
|
m_remdelay = m_delay - position;
|
|
|
|
m_reader->seek(0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_remdelay = 0;
|
|
|
|
m_reader->seek(position - m_delay);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-07-28 09:36:03 +00:00
|
|
|
int AUD_DelayReader::getLength() const
|
2009-08-09 21:16:39 +00:00
|
|
|
{
|
|
|
|
int len = m_reader->getLength();
|
|
|
|
if(len < 0)
|
|
|
|
return len;
|
2010-07-28 09:36:03 +00:00
|
|
|
return len + m_delay;
|
2009-08-09 21:16:39 +00:00
|
|
|
}
|
|
|
|
|
2010-07-28 09:36:03 +00:00
|
|
|
int AUD_DelayReader::getPosition() const
|
2009-08-09 21:16:39 +00:00
|
|
|
{
|
|
|
|
if(m_remdelay > 0)
|
2010-07-28 09:36:03 +00:00
|
|
|
return m_delay - m_remdelay;
|
2009-08-09 21:16:39 +00:00
|
|
|
return m_reader->getPosition() + m_delay;
|
|
|
|
}
|
|
|
|
|
2011-06-21 20:14:53 +00:00
|
|
|
void AUD_DelayReader::read(int& length, bool& eos, sample_t* buffer)
|
2009-08-09 21:16:39 +00:00
|
|
|
{
|
|
|
|
if(m_remdelay > 0)
|
|
|
|
{
|
2010-01-01 05:09:30 +00:00
|
|
|
AUD_Specs specs = m_reader->getSpecs();
|
|
|
|
int samplesize = AUD_SAMPLE_SIZE(specs);
|
2009-08-09 21:16:39 +00:00
|
|
|
|
|
|
|
if(length > m_remdelay)
|
|
|
|
{
|
2011-06-14 12:13:19 +00:00
|
|
|
memset(buffer, 0, m_remdelay * samplesize);
|
2010-07-28 09:36:03 +00:00
|
|
|
|
2009-08-09 21:16:39 +00:00
|
|
|
int len = length - m_remdelay;
|
2011-06-21 20:14:53 +00:00
|
|
|
m_reader->read(len, eos, buffer + m_remdelay * specs.channels);
|
2010-07-28 09:36:03 +00:00
|
|
|
|
2011-06-21 20:14:53 +00:00
|
|
|
length = m_remdelay + len;
|
2010-07-28 09:36:03 +00:00
|
|
|
|
2009-08-09 21:16:39 +00:00
|
|
|
m_remdelay = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-06-14 12:13:19 +00:00
|
|
|
memset(buffer, 0, length * samplesize);
|
2009-08-09 21:16:39 +00:00
|
|
|
m_remdelay -= length;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2011-06-21 20:14:53 +00:00
|
|
|
m_reader->read(length, eos, buffer);
|
2009-08-09 21:16:39 +00:00
|
|
|
}
|