blender/intern/audaspace/sndfile/AUD_SndFileReader.cpp

172 lines
3.9 KiB
C++
Raw Normal View History

2009-08-21 19:39:28 +00:00
/*
* ***** BEGIN GPL LICENSE BLOCK *****
2009-08-21 19:39:28 +00:00
*
* Copyright 2009-2011 Jörg Hermann Müller
2009-08-21 19:39:28 +00:00
*
* This file is part of AudaSpace.
*
* 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-21 19:39:28 +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
* GNU General Public License for more details.
2009-08-21 19:39:28 +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-21 19:39:28 +00:00
*
* ***** END GPL LICENSE BLOCK *****
2009-08-21 19:39:28 +00:00
*/
2011-02-25 10:21:56 +00:00
/** \file audaspace/sndfile/AUD_SndFileReader.cpp
* \ingroup audsndfile
*/
2009-08-21 19:39:28 +00:00
#include "AUD_SndFileReader.h"
#include <cstring>
sf_count_t AUD_SndFileReader::vio_get_filelen(void *user_data)
{
AUD_SndFileReader* reader = (AUD_SndFileReader*)user_data;
return reader->m_membuffer->getSize();
2009-08-21 19:39:28 +00:00
}
sf_count_t AUD_SndFileReader::vio_seek(sf_count_t offset, int whence,
void *user_data)
2009-08-21 19:39:28 +00:00
{
AUD_SndFileReader* reader = (AUD_SndFileReader*)user_data;
switch(whence)
{
case SEEK_SET:
reader->m_memoffset = offset;
break;
case SEEK_CUR:
reader->m_memoffset = reader->m_memoffset + offset;
break;
case SEEK_END:
reader->m_memoffset = reader->m_membuffer->getSize() + offset;
2009-08-21 19:39:28 +00:00
break;
}
return reader->m_memoffset;
}
sf_count_t AUD_SndFileReader::vio_read(void *ptr, sf_count_t count,
void *user_data)
2009-08-21 19:39:28 +00:00
{
AUD_SndFileReader* reader = (AUD_SndFileReader*)user_data;
if(reader->m_memoffset + count > reader->m_membuffer->getSize())
count = reader->m_membuffer->getSize() - reader->m_memoffset;
2009-08-21 19:39:28 +00:00
memcpy(ptr, ((data_t*)reader->m_membuffer->getBuffer()) +
reader->m_memoffset, count);
2009-08-21 19:39:28 +00:00
reader->m_memoffset += count;
return count;
}
sf_count_t AUD_SndFileReader::vio_tell(void *user_data)
{
AUD_SndFileReader* reader = (AUD_SndFileReader*)user_data;
return reader->m_memoffset;
}
static const char* fileopen_error = "AUD_SndFileReader: File couldn't be "
"read.";
AUD_SndFileReader::AUD_SndFileReader(std::string filename) :
m_position(0)
2009-08-21 19:39:28 +00:00
{
SF_INFO sfinfo;
sfinfo.format = 0;
m_sndfile = sf_open(filename.c_str(), SFM_READ, &sfinfo);
2009-08-21 19:39:28 +00:00
if(!m_sndfile)
AUD_THROW(AUD_ERROR_FILE, fileopen_error);
2009-08-21 19:39:28 +00:00
m_specs.channels = (AUD_Channels) sfinfo.channels;
m_specs.rate = (AUD_SampleRate) sfinfo.samplerate;
m_length = sfinfo.frames;
m_seekable = sfinfo.seekable;
}
AUD_SndFileReader::AUD_SndFileReader(AUD_Reference<AUD_Buffer> buffer) :
m_position(0),
m_membuffer(buffer),
m_memoffset(0)
2009-08-21 19:39:28 +00:00
{
m_vio.get_filelen = vio_get_filelen;
m_vio.read = vio_read;
m_vio.seek = vio_seek;
m_vio.tell = vio_tell;
m_vio.write = NULL;
SF_INFO sfinfo;
sfinfo.format = 0;
m_sndfile = sf_open_virtual(&m_vio, SFM_READ, &sfinfo, this);
if(!m_sndfile)
AUD_THROW(AUD_ERROR_FILE, fileopen_error);
2009-08-21 19:39:28 +00:00
m_specs.channels = (AUD_Channels) sfinfo.channels;
m_specs.rate = (AUD_SampleRate) sfinfo.samplerate;
m_length = sfinfo.frames;
m_seekable = sfinfo.seekable;
}
AUD_SndFileReader::~AUD_SndFileReader()
{
sf_close(m_sndfile);
}
bool AUD_SndFileReader::isSeekable() const
2009-08-21 19:39:28 +00:00
{
return m_seekable;
}
void AUD_SndFileReader::seek(int position)
{
if(m_seekable)
{
position = sf_seek(m_sndfile, position, SEEK_SET);
m_position = position;
}
}
int AUD_SndFileReader::getLength() const
2009-08-21 19:39:28 +00:00
{
return m_length;
}
int AUD_SndFileReader::getPosition() const
2009-08-21 19:39:28 +00:00
{
return m_position;
}
AUD_Specs AUD_SndFileReader::getSpecs() const
2009-08-21 19:39:28 +00:00
{
return m_specs;
}
2011-06-21 20:14:53 +00:00
void AUD_SndFileReader::read(int& length, bool& eos, sample_t* buffer)
2009-08-21 19:39:28 +00:00
{
2011-06-21 20:14:53 +00:00
int olen = length;
length = sf_readf_float(m_sndfile, buffer, length);
2009-08-21 19:39:28 +00:00
m_position += length;
2011-06-21 20:14:53 +00:00
eos = length < olen;
2009-08-21 19:39:28 +00:00
}