Added TagLib (with AUTORS and COPYING files)
[someplayer] / src / taglib / wavpack / wavpackproperties.h
1 /***************************************************************************
2     copyright            : (C) 2006 by Lukáš Lalinský
3     email                : lalinsky@gmail.com
4
5     copyright            : (C) 2004 by Allan Sandfeld Jensen
6     email                : kde@carewolf.org
7                            (original MPC implementation)
8  ***************************************************************************/
9
10 /***************************************************************************
11  *   This library is free software; you can redistribute it and/or modify  *
12  *   it under the terms of the GNU Lesser General Public License version   *
13  *   2.1 as published by the Free Software Foundation.                     *
14  *                                                                         *
15  *   This library is distributed in the hope that it will be useful, but   *
16  *   WITHOUT ANY WARRANTY; without even the implied warranty of            *
17  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU     *
18  *   Lesser General Public License for more details.                       *
19  *                                                                         *
20  *   You should have received a copy of the GNU Lesser General Public      *
21  *   License along with this library; if not, write to the Free Software   *
22  *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  *
23  *   USA                                                                   *
24  *                                                                         *
25  *   Alternatively, this file is available under the Mozilla Public        *
26  *   License Version 1.1.  You may obtain a copy of the License at         *
27  *   http://www.mozilla.org/MPL/                                           *
28  ***************************************************************************/
29
30 #ifndef TAGLIB_WVPROPERTIES_H
31 #define TAGLIB_WVPROPERTIES_H
32
33 #include "taglib_export.h"
34 #include "audioproperties.h"
35
36 namespace TagLib {
37
38   namespace WavPack {
39
40     class File;
41
42     static const uint HeaderSize = 32;
43
44     //! An implementation of audio property reading for WavPack
45
46     /*!
47      * This reads the data from an WavPack stream found in the AudioProperties
48      * API.
49      */
50
51     class TAGLIB_EXPORT Properties : public AudioProperties
52     {
53     public:
54       /*!
55        * Create an instance of WavPack::Properties with the data read from the
56        * ByteVector \a data.
57        */
58       Properties(const ByteVector &data, long streamLength, ReadStyle style = Average);
59
60       /*!
61        * Destroys this WavPack::Properties instance.
62        */
63       virtual ~Properties();
64
65       // Reimplementations.
66
67       virtual int length() const;
68       virtual int bitrate() const;
69       virtual int sampleRate() const;
70       virtual int channels() const;
71
72       /*!
73        * Returns number of bits per sample.
74        */
75       int bitsPerSample() const;
76
77       /*!
78        * Returns WavPack version.
79        */
80       int version() const;
81
82     private:
83       Properties(const Properties &);
84       Properties &operator=(const Properties &);
85
86       void read();
87
88       class PropertiesPrivate;
89       PropertiesPrivate *d;
90     };
91   }
92 }
93
94 #endif