apeproperties.h
Go to the documentation of this file.
00001 /***************************************************************************
00002     copyright            : (C) 2010 by Alex Novichkov
00003     email                : novichko@atnet.ru
00004 
00005     copyright            : (C) 2006 by Lukáš Lalinský
00006     email                : lalinsky@gmail.com
00007                            (original WavPack implementation)
00008  ***************************************************************************/
00009 
00010 /***************************************************************************
00011  *   This library is free software; you can redistribute it and/or modify  *
00012  *   it under the terms of the GNU Lesser General Public License version   *
00013  *   2.1 as published by the Free Software Foundation.                     *
00014  *                                                                         *
00015  *   This library is distributed in the hope that it will be useful, but   *
00016  *   WITHOUT ANY WARRANTY; without even the implied warranty of            *
00017  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU     *
00018  *   Lesser General Public License for more details.                       *
00019  *                                                                         *
00020  *   You should have received a copy of the GNU Lesser General Public      *
00021  *   License along with this library; if not, write to the Free Software   *
00022  *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA         *
00023  *   02110-1301  USA                                                       *
00024  *                                                                         *
00025  *   Alternatively, this file is available under the Mozilla Public        *
00026  *   License Version 1.1.  You may obtain a copy of the License at         *
00027  *   http://www.mozilla.org/MPL/                                           *
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:
00056       Properties(File *f, ReadStyle style = Average);
00057 
00061       virtual ~Properties();
00062 
00063       // Reimplementations.
00064 
00065       virtual int length() const;
00066       virtual int bitrate() const;
00067       virtual int sampleRate() const;
00068       virtual int channels() const;
00069 
00073       int bitsPerSample() const;
00074       uint sampleFrames() const;
00075 
00079       int version() const;
00080 
00081     private:
00082       Properties(const Properties &);
00083       Properties &operator=(const Properties &);
00084 
00085       void read();
00086 
00087       long findDescriptor();
00088       long findID3v2();
00089 
00090       void analyzeCurrent();
00091       void analyzeOld();
00092 
00093       class PropertiesPrivate;
00094       PropertiesPrivate *d;
00095     };
00096   }
00097 }
00098 
00099 #endif