00001 00002 /****************** <SYN heading BEGIN do not edit this line> ***************** 00003 * 00004 * subsynth - modular audio synthesizer 00005 * subsynth is (C) Copyright 2001-2002 by Kevin Meinert 00006 * 00007 * Original Author: Kevin Meinert 00008 * 00009 * This library is free software; you can redistribute it and/or 00010 * modify it under the terms of the GNU Library General Public 00011 * License as published by the Free Software Foundation; either 00012 * version 2 of the License, or (at your option) any later version. 00013 * 00014 * This library is distributed in the hope that it will be useful, 00015 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00016 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00017 * Library General Public License for more details. 00018 * 00019 * You should have received a copy of the GNU Library General Public 00020 * License along with this library; if not, write to the 00021 * Free Software Foundation, Inc., 59 Temple Place - Suite 330, 00022 * Boston, MA 02111-1307, USA. 00023 * 00024 * ----------------------------------------------------------------- 00025 * File: $RCSfile: AudioIStream.h,v $ 00026 * Date modified: $Date: 2002/02/16 19:24:16 $ 00027 * Version: $Revision: 1.15 $ 00028 * ----------------------------------------------------------------- 00029 * 00030 ****************** <SYN heading END do not edit this line> ******************/ 00031 #ifndef SUBSYNTH_INPUT_AUDIO_STREAM 00032 #define SUBSYNTH_INPUT_AUDIO_STREAM 00033 00034 #include "syn/Util/AudioFormat.h" 00035 00036 namespace syn 00037 { 00038 class AudioIStream 00039 { 00040 public: 00041 virtual ~AudioIStream(){} 00042 00043 enum Operation {COPY, MUL, ADD, SUB}; 00044 00045 // open the stream 00046 // specify the audio format you would like returned 00047 // (independant of file attributes) 00048 virtual bool open( const syn::AudioFormat& fmt, Operation op = COPY ) = 0; 00049 00050 // read data out of the stream in the format you specified. 00051 // returns this->gcount(); 00052 // samples are in terms of [channels * bytes_per_samp] 00053 virtual void read( void* data, unsigned int samples ) = 0; 00054 00055 // close the stream... 00056 virtual bool close() = 0; 00057 00058 00059 virtual bool isOpen() const = 0; 00060 virtual void seek( int sampleNum ) {} 00061 virtual bool eof() const { return true; } 00062 virtual bool good() const { return false; } 00063 virtual bool bad() const { return false; } 00064 00065 virtual const AudioFormat& format() const = 0; 00066 00067 // returns num samples actually read by the last read() 00068 // samples are in terms of [channels * bytes_per_samp] 00069 virtual int gcount() const = 0; 00070 00071 protected: 00072 Operation mState; 00073 }; 00074 } 00075 00076 #endif