Main Page   Class Hierarchy   Compound List   File List   Compound Members   File Members  

aflibWavFile.h

Go to the documentation of this file.
00001 /*
00002  * Copyright: (C) 2000-2001 Bruce W. Forsberg
00003  *
00004  *   This library is free software; you can redistribute it and/or
00005  *   modify it under the terms of the GNU Lesser General Public
00006  *   License as published by the Free Software Foundation; either
00007  *   version 2.1 of the License, or any later version.
00008  *
00009  *   This library is distributed in the hope that it will be useful,
00010  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
00011  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00012  *   Lesser General Public License for more details.
00013  *
00014  *   You should have received a copy of the GNU Lesser General Public
00015  *   License along with this library; if not, write to the Free Software
00016  *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA
00017  *
00018  *   Bruce Forsberg  forsberg@tns.net
00019  *
00020  */
00021 
00031 #ifndef _AFLIBWAVFILE_H
00032 #define _AFLIBWAVFILE_H
00033 
00034 #include "aflibFile.h"
00035 #include <audiofile.h>
00036 
00037 class aflibWavFile : public aflibFile {
00038 
00039 public:
00040 
00041    aflibWavFile();
00042 
00043    ~aflibWavFile();
00044 
00045    aflibStatus
00046    afopen(
00047       const char * file,
00048       aflibConfig* cfg);
00049 
00050    aflibStatus
00051    afcreate(
00052       const char * file,
00053       const aflibConfig& cfg);
00054 
00055    aflibStatus
00056    afread(
00057       aflibData& data,
00058       long long position = -1);
00059 
00060    aflibStatus
00061    afwrite(
00062       aflibData& data,
00063       long long position = -1);
00064 
00065    bool
00066    isDataSizeSupported(aflib_data_size size);
00067 
00068    bool
00069    isEndianSupported(aflib_data_endian end);
00070 
00071    bool
00072    isSampleRateSupported(int& rate);
00073 
00074 
00075 private:
00076 
00077 AFfilehandle  _handle;
00078 long long     _total_samples;
00079 
00080 };
00081 
00082 
00083 #endif

Generated at Tue Aug 7 22:18:06 2001 for Open Source Audio Library Project by doxygen1.2.6 written by Dimitri van Heesch, © 1997-2001