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

Generated on Sat Feb 23 13:56:37 2008 for Open Source Audio Library Project by  doxygen 1.5.1