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