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

aflibAiffFile.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 
00030 #ifndef _AFLIBAIFFFILE_H
00031 #define _AFLIBAIFFFILE_H
00032 
00033 #include "aflibFile.h"
00034 #include <audiofile.h>
00035 
00036 class aflibAiffFile : public aflibFile {
00037 
00038 public:
00039 
00040    aflibAiffFile();
00041 
00042    ~aflibAiffFile();
00043 
00044    aflibStatus
00045    afopen(
00046       const char * file,
00047       aflibConfig* cfg);
00048 
00049    aflibStatus
00050    afcreate(
00051       const char * file,
00052       const aflibConfig& cfg);
00053 
00054    aflibStatus
00055    afread(
00056       aflibData& data,
00057       long long position = -1);
00058 
00059    aflibStatus
00060    afwrite(
00061       aflibData& data,
00062       long long position = -1);
00063 
00064    bool
00065    isDataSizeSupported(aflib_data_size size);
00066 
00067    bool
00068    isEndianSupported(aflib_data_endian end);
00069 
00070    bool
00071    isSampleRateSupported(int& rate);
00072 
00073 private:
00074 
00075 AFfilehandle  _handle;
00076 long long     _total_samples;
00077 };
00078 
00079 
00080 #endif

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