Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030 #ifndef TAGLIB_APEPROPERTIES_H
00031 #define TAGLIB_APEPROPERTIES_H
00032
00033 #include "taglib_export.h"
00034 #include "audioproperties.h"
00035
00036 namespace TagLib {
00037
00038 namespace APE {
00039
00040 class File;
00041
00043
00049 class TAGLIB_EXPORT Properties : public AudioProperties
00050 {
00051 public:
00058 Properties(File *file, ReadStyle style = Average);
00059
00064 Properties(File *file, long streamLength, ReadStyle style = Average);
00065
00069 virtual ~Properties();
00070
00079 virtual int length() const;
00080
00087
00088 int lengthInSeconds() const;
00089
00095
00096 int lengthInMilliseconds() const;
00097
00101 virtual int bitrate() const;
00102
00106 virtual int sampleRate() const;
00107
00111 virtual int channels() const;
00112
00116 int bitsPerSample() const;
00117
00121 uint sampleFrames() const;
00122
00126 int version() const;
00127
00128 private:
00129 Properties(const Properties &);
00130 Properties &operator=(const Properties &);
00131
00132 void read(File *file, long streamLength);
00133
00134 void analyzeCurrent(File *file);
00135 void analyzeOld(File *file);
00136
00137 class PropertiesPrivate;
00138 PropertiesPrivate *d;
00139 };
00140 }
00141 }
00142
00143 #endif