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 #ifndef TAGLIB_MP4PROPERTIES_H
00027 #define TAGLIB_MP4PROPERTIES_H
00028
00029 #include "taglib_export.h"
00030 #include "audioproperties.h"
00031
00032 namespace TagLib {
00033
00034 namespace MP4 {
00035
00036 class Atoms;
00037 class File;
00038
00040 class TAGLIB_EXPORT Properties : public AudioProperties
00041 {
00042 public:
00043 enum Codec {
00044 Unknown = 0,
00045 AAC,
00046 ALAC
00047 };
00048
00049 Properties(File *file, Atoms *atoms, ReadStyle style = Average);
00050 virtual ~Properties();
00051
00060 virtual int length() const;
00061
00068
00069 int lengthInSeconds() const;
00070
00076
00077 int lengthInMilliseconds() const;
00078
00082 virtual int bitrate() const;
00083
00087 virtual int sampleRate() const;
00088
00092 virtual int channels() const;
00093
00097 virtual int bitsPerSample() const;
00098
00102 bool isEncrypted() const;
00103
00107 Codec codec() const;
00108
00109 private:
00110 void read(File *file, Atoms *atoms);
00111
00112 class PropertiesPrivate;
00113 PropertiesPrivate *d;
00114 };
00115
00116 }
00117
00118 }
00119
00120 #endif