2008-02-17 00:12:23 +01:00
|
|
|
|
|
|
|
/*******************************************************************************/
|
|
|
|
/* Copyright (C) 2008 Jonathan Moore Liles */
|
|
|
|
/* */
|
|
|
|
/* This program 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 (at your */
|
|
|
|
/* option) any later version. */
|
|
|
|
/* */
|
|
|
|
/* This program 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. */
|
|
|
|
/* */
|
|
|
|
/* You should have received a copy of the GNU General Public License along */
|
|
|
|
/* with This program; see the file COPYING. If not,write to the Free Software */
|
|
|
|
/* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
|
|
|
/*******************************************************************************/
|
|
|
|
|
2008-02-22 09:19:20 +01:00
|
|
|
#include "Audio_File.H"
|
|
|
|
#include "Audio_File_SF.H"
|
2008-05-21 02:46:02 +02:00
|
|
|
#include "Audio_File_Dummy.H"
|
2008-02-17 00:12:23 +01:00
|
|
|
|
2008-05-22 09:05:49 +02:00
|
|
|
#include "util/debug.h"
|
2008-05-10 19:02:21 +02:00
|
|
|
|
2008-06-16 02:19:44 +02:00
|
|
|
#include <string.h>
|
|
|
|
|
2008-04-18 22:18:07 +02:00
|
|
|
std::map <std::string, Audio_File*> Audio_File::_open_files;
|
2008-02-28 13:35:19 +01:00
|
|
|
|
2008-04-16 20:08:00 +02:00
|
|
|
Audio_File::~Audio_File ( )
|
|
|
|
{
|
2008-04-18 22:18:07 +02:00
|
|
|
_open_files[ std::string( _filename ) ] = NULL;
|
2008-05-21 02:46:02 +02:00
|
|
|
if ( _filename )
|
|
|
|
free( _filename );
|
2008-04-16 20:08:00 +02:00
|
|
|
}
|
|
|
|
|
2008-06-16 02:19:44 +02:00
|
|
|
const Audio_File::format_desc *
|
|
|
|
Audio_File::find_format ( const format_desc *fd, const char *name )
|
|
|
|
{
|
|
|
|
for ( ; fd->name; ++fd )
|
|
|
|
if ( ! strcmp( fd->name, name ) )
|
|
|
|
return fd;
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-04-26 07:33:04 +02:00
|
|
|
void
|
|
|
|
Audio_File::all_supported_formats ( std::list <const char *> &formats )
|
|
|
|
{
|
|
|
|
const format_desc *fd;
|
|
|
|
|
|
|
|
fd = Audio_File_SF::supported_formats;
|
|
|
|
|
|
|
|
for ( ; fd->name; ++fd )
|
|
|
|
formats.push_back( fd->name );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-22 09:19:20 +01:00
|
|
|
/** attmpet to open any supported filetype */
|
|
|
|
Audio_File *
|
|
|
|
Audio_File::from_file ( const char * filename )
|
2008-02-17 00:12:23 +01:00
|
|
|
{
|
|
|
|
|
2008-02-22 09:19:20 +01:00
|
|
|
Audio_File *a;
|
2008-02-17 00:12:23 +01:00
|
|
|
|
2008-04-18 22:18:07 +02:00
|
|
|
if ( ( a = _open_files[ std::string( filename ) ] ) )
|
2008-02-28 13:35:19 +01:00
|
|
|
return a;
|
|
|
|
|
2008-02-22 09:19:20 +01:00
|
|
|
if ( ( a = Audio_File_SF::from_file( filename ) ) )
|
|
|
|
goto done;
|
2008-02-18 04:37:26 +01:00
|
|
|
|
2008-02-22 09:19:20 +01:00
|
|
|
// TODO: other formats
|
2008-02-17 00:12:23 +01:00
|
|
|
|
2008-05-21 02:46:02 +02:00
|
|
|
DWARNING( "creating dummy source for \"%s\"", filename );
|
2008-02-17 23:03:31 +01:00
|
|
|
|
2008-05-21 02:46:02 +02:00
|
|
|
/* FIXME: wrong place for this? */
|
|
|
|
if ( ( a = Audio_File_Dummy::from_file( filename ) ) )
|
|
|
|
goto done;
|
2008-02-17 23:03:31 +01:00
|
|
|
|
2008-05-21 02:46:02 +02:00
|
|
|
return NULL;
|
2008-02-28 13:35:19 +01:00
|
|
|
|
2008-05-21 02:46:02 +02:00
|
|
|
done:
|
2008-02-22 19:40:51 +01:00
|
|
|
|
2008-04-18 22:18:07 +02:00
|
|
|
_open_files[ std::string( filename ) ] = a;
|
2008-02-28 13:35:19 +01:00
|
|
|
|
2008-02-22 09:19:20 +01:00
|
|
|
return a;
|
|
|
|
}
|
2008-03-28 06:19:26 +01:00
|
|
|
|
|
|
|
|
|
|
|
bool
|
|
|
|
Audio_File::read_peaks( float fpp, nframes_t start, nframes_t end, int *peaks, Peak **pbuf, int *channels )
|
|
|
|
{
|
2008-05-10 19:02:21 +02:00
|
|
|
// Peaks pk;
|
2008-03-28 06:19:26 +01:00
|
|
|
|
2008-05-21 02:46:02 +02:00
|
|
|
if ( dummy() )
|
|
|
|
{
|
|
|
|
*peaks = (end - start) / fpp;
|
|
|
|
*channels = 0;
|
|
|
|
*pbuf = NULL;
|
2008-03-28 06:19:26 +01:00
|
|
|
|
2008-05-21 02:46:02 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*peaks = 0;
|
|
|
|
*channels = 0;
|
|
|
|
*pbuf = NULL;
|
2008-03-28 06:19:26 +01:00
|
|
|
|
2008-05-21 02:46:02 +02:00
|
|
|
*peaks = _peaks.fill_buffer( fpp, start, end );
|
2008-03-28 06:19:26 +01:00
|
|
|
|
2008-05-21 02:46:02 +02:00
|
|
|
*channels = this->channels();
|
2008-03-28 06:19:26 +01:00
|
|
|
|
2008-05-21 02:46:02 +02:00
|
|
|
*pbuf = _peaks.peakbuf();
|
2008-03-28 06:19:26 +01:00
|
|
|
|
2008-05-21 02:46:02 +02:00
|
|
|
return true;
|
|
|
|
}
|
2008-03-28 06:19:26 +01:00
|
|
|
}
|