00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00033 #ifndef _AFLIBBLADEFILE_H
00034 #define _AFLIBBLADEFILE_H
00035
00036 #ifdef HAVE_CONFIG_H
00037 #include <config.h>
00038 #endif
00039
00040 #include "aflibFile.h"
00041 #include "stdio.h"
00042 #include "stdlib.h"
00043
00044
00045 class aflibBladeFile : public aflibFile {
00046
00047 public:
00048
00049 aflibBladeFile();
00050
00051 ~aflibBladeFile();
00052
00053 aflibStatus
00054 afopen(
00055 const char * file,
00056 aflibConfig* cfg);
00057
00058 aflibStatus
00059 afcreate(
00060 const char * file,
00061 const aflibConfig& cfg);
00062
00063 aflibStatus
00064 afread(
00065 aflibData& data,
00066 long long position = -1);
00067
00068 aflibStatus
00069 afwrite(
00070 aflibData& data,
00071 long long position = -1);
00072
00073 bool
00074 isDataSizeSupported(aflib_data_size size);
00075
00076 bool
00077 isEndianSupported(aflib_data_endian end);
00078
00079 bool
00080 isSampleRateSupported(int& rate);
00081
00082 private:
00083
00084 FILE* _fd;
00085 long _length_value;
00086
00087 };
00088
00089
00090 #endif