2009-08-09 21:16:39 +00:00
|
|
|
/*
|
|
|
|
* $Id$
|
|
|
|
*
|
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/SRC/AUD_SRCResampleReader.cpp
|
|
|
|
* \ingroup audsrc
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2009-08-09 21:16:39 +00:00
|
|
|
#include "AUD_SRCResampleReader.h"
|
|
|
|
|
2010-01-01 05:09:30 +00:00
|
|
|
#include <cmath>
|
2009-08-09 21:16:39 +00:00
|
|
|
#include <cstring>
|
2010-01-01 05:09:30 +00:00
|
|
|
#include <cstdio>
|
2009-08-09 21:16:39 +00:00
|
|
|
|
|
|
|
static long src_callback(void *cb_data, float **data)
|
|
|
|
{
|
|
|
|
return ((AUD_SRCResampleReader*)cb_data)->doCallback(data);
|
|
|
|
}
|
|
|
|
|
2010-08-03 08:07:21 +00:00
|
|
|
static const char* state_error = "AUD_SRCResampleReader: SRC State couldn't be "
|
|
|
|
"created.";
|
|
|
|
|
2011-06-03 23:28:57 +00:00
|
|
|
AUD_SRCResampleReader::AUD_SRCResampleReader(AUD_Reference<AUD_IReader> reader,
|
2009-08-09 21:16:39 +00:00
|
|
|
AUD_Specs specs) :
|
2011-06-21 20:29:02 +00:00
|
|
|
AUD_ResampleReader(reader, specs.rate),
|
2011-06-21 20:25:48 +00:00
|
|
|
m_channels(reader->getSpecs().channels),
|
2010-07-28 09:36:03 +00:00
|
|
|
m_position(0)
|
2009-08-09 21:16:39 +00:00
|
|
|
{
|
|
|
|
int error;
|
|
|
|
m_src = src_callback_new(src_callback,
|
|
|
|
SRC_SINC_MEDIUM_QUALITY,
|
2011-06-21 20:25:48 +00:00
|
|
|
m_channels,
|
2009-08-09 21:16:39 +00:00
|
|
|
&error,
|
|
|
|
this);
|
|
|
|
|
|
|
|
if(!m_src)
|
|
|
|
{
|
|
|
|
// XXX printf("%s\n", src_strerror(error));
|
2010-08-03 08:07:21 +00:00
|
|
|
AUD_THROW(AUD_ERROR_SRC, state_error);
|
2009-08-09 21:16:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
AUD_SRCResampleReader::~AUD_SRCResampleReader()
|
|
|
|
{
|
|
|
|
src_delete(m_src);
|
|
|
|
}
|
|
|
|
|
|
|
|
long AUD_SRCResampleReader::doCallback(float** data)
|
|
|
|
{
|
2011-06-21 20:25:48 +00:00
|
|
|
AUD_Specs specs;
|
|
|
|
specs.channels = m_channels;
|
|
|
|
specs.rate = m_rate;
|
|
|
|
|
|
|
|
int length = m_buffer.getSize() / AUD_SAMPLE_SIZE(specs);
|
2009-08-09 21:16:39 +00:00
|
|
|
|
2011-06-14 12:13:19 +00:00
|
|
|
*data = m_buffer.getBuffer();
|
2011-06-21 20:14:53 +00:00
|
|
|
m_reader->read(length, m_eos, *data);
|
2009-08-09 21:16:39 +00:00
|
|
|
|
|
|
|
return length;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AUD_SRCResampleReader::seek(int position)
|
|
|
|
{
|
2011-06-21 20:25:48 +00:00
|
|
|
AUD_Specs specs = m_reader->getSpecs();
|
|
|
|
double factor = double(m_rate) / double(specs.rate);
|
|
|
|
m_reader->seek(position / factor);
|
2009-08-09 21:16:39 +00:00
|
|
|
src_reset(m_src);
|
2010-02-08 14:43:44 +00:00
|
|
|
m_position = position;
|
2009-08-09 21:16:39 +00:00
|
|
|
}
|
|
|
|
|
2010-07-28 09:36:03 +00:00
|
|
|
int AUD_SRCResampleReader::getLength() const
|
2009-08-09 21:16:39 +00:00
|
|
|
{
|
2011-06-21 20:25:48 +00:00
|
|
|
AUD_Specs specs = m_reader->getSpecs();
|
|
|
|
double factor = double(m_rate) / double(specs.rate);
|
|
|
|
return m_reader->getLength() * factor;
|
2009-08-09 21:16:39 +00:00
|
|
|
}
|
|
|
|
|
2010-07-28 09:36:03 +00:00
|
|
|
int AUD_SRCResampleReader::getPosition() const
|
2009-08-09 21:16:39 +00:00
|
|
|
{
|
2010-02-08 14:43:44 +00:00
|
|
|
return m_position;
|
2009-08-09 21:16:39 +00:00
|
|
|
}
|
|
|
|
|
2010-07-28 09:36:03 +00:00
|
|
|
AUD_Specs AUD_SRCResampleReader::getSpecs() const
|
2009-08-09 21:16:39 +00:00
|
|
|
{
|
2011-06-21 20:25:48 +00:00
|
|
|
AUD_Specs specs = m_reader->getSpecs();
|
|
|
|
specs.rate = m_rate;
|
|
|
|
return specs;
|
2009-08-09 21:16:39 +00:00
|
|
|
}
|
|
|
|
|
2011-06-21 20:14:53 +00:00
|
|
|
void AUD_SRCResampleReader::read(int& length, bool& eos, sample_t* buffer)
|
2009-08-09 21:16:39 +00:00
|
|
|
{
|
2011-06-21 20:25:48 +00:00
|
|
|
AUD_Specs specs = m_reader->getSpecs();
|
|
|
|
|
|
|
|
double factor = double(m_rate) / double(specs.rate);
|
|
|
|
|
|
|
|
specs.rate = m_rate;
|
|
|
|
|
2011-06-21 20:14:53 +00:00
|
|
|
int size = length;
|
2010-01-01 05:09:30 +00:00
|
|
|
|
2011-06-21 20:25:48 +00:00
|
|
|
m_buffer.assureSize(length * AUD_SAMPLE_SIZE(specs));
|
|
|
|
|
|
|
|
if(specs.channels != m_channels)
|
|
|
|
{
|
|
|
|
src_delete(m_src);
|
|
|
|
|
|
|
|
m_channels = specs.channels;
|
|
|
|
|
|
|
|
int error;
|
|
|
|
m_src = src_callback_new(src_callback,
|
|
|
|
SRC_SINC_MEDIUM_QUALITY,
|
|
|
|
m_channels,
|
|
|
|
&error,
|
|
|
|
this);
|
|
|
|
|
|
|
|
if(!m_src)
|
|
|
|
{
|
|
|
|
// XXX printf("%s\n", src_strerror(error));
|
|
|
|
AUD_THROW(AUD_ERROR_SRC, state_error);
|
|
|
|
}
|
|
|
|
}
|
2011-06-21 20:14:53 +00:00
|
|
|
|
|
|
|
m_eos = false;
|
2009-08-09 21:16:39 +00:00
|
|
|
|
2011-06-21 20:25:48 +00:00
|
|
|
length = src_callback_read(m_src, factor, length, buffer);
|
2010-02-08 14:43:44 +00:00
|
|
|
|
|
|
|
m_position += length;
|
2011-06-21 20:14:53 +00:00
|
|
|
|
|
|
|
eos = m_eos && (length < size);
|
2009-08-09 21:16:39 +00:00
|
|
|
}
|