asfproperties.h
Go to the documentation of this file.
1/**************************************************************************
2 copyright : (C) 2005-2007 by Lukáš Lalinský
3 email : lalinsky@gmail.com
4 **************************************************************************/
5
6/***************************************************************************
7 * This library is free software; you can redistribute it and/or modify *
8 * it under the terms of the GNU Lesser General Public License version *
9 * 2.1 as published by the Free Software Foundation. *
10 * *
11 * This library is distributed in the hope that it will be useful, but *
12 * WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
14 * Lesser General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU Lesser General Public *
17 * License along with this library; if not, write to the Free Software *
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA *
19 * 02110-1301 USA *
20 * *
21 * Alternatively, this file is available under the Mozilla Public *
22 * License Version 1.1. You may obtain a copy of the License at *
23 * http://www.mozilla.org/MPL/ *
24 ***************************************************************************/
25
26#ifndef TAGLIB_ASFPROPERTIES_H
27#define TAGLIB_ASFPROPERTIES_H
28
29#include "audioproperties.h"
30#include "tstring.h"
31#include "taglib_export.h"
32
33namespace TagLib {
34
35 namespace ASF {
36
39 {
40 public:
41
45 enum Codec
46 {
50 Unknown = 0,
51
56
61
66
71 };
72
77
81 virtual ~Properties();
82
91 virtual int length() const;
92
99 // BIC: make virtual
100 int lengthInSeconds() const;
101
107 // BIC: make virtual
109
113 virtual int bitrate() const;
114
118 virtual int sampleRate() const;
119
123 virtual int channels() const;
124
128 int bitsPerSample() const;
129
136 Codec codec() const;
137
146
156
160 bool isEncrypted() const;
161
162#ifndef DO_NOT_DOCUMENT
163 // deprecated
164 void setLength(int value);
165
166 void setLengthInMilliseconds(int value);
167 void setBitrate(int value);
168 void setSampleRate(int value);
169 void setChannels(int value);
170 void setBitsPerSample(int value);
171 void setCodec(int value);
172 void setCodecName(const String &value);
173 void setCodecDescription(const String &value);
174 void setEncrypted(bool value);
175#endif
176
177 private:
178 class PropertiesPrivate;
179 PropertiesPrivate *d;
180 };
181
182 }
183
184}
185
186#endif
An implementation of ASF audio properties.
Definition: asfproperties.h:39
virtual int length() const
int lengthInSeconds() const
int lengthInMilliseconds() const
Codec
Definition: asfproperties.h:46
@ WMA1
Definition: asfproperties.h:55
@ WMA9Lossless
Definition: asfproperties.h:70
@ WMA9Pro
Definition: asfproperties.h:65
@ WMA2
Definition: asfproperties.h:60
virtual int sampleRate() const
virtual int bitrate() const
String codecName() const
String codecDescription() const
bool isEncrypted() const
virtual int channels() const
A simple, abstract interface to common audio properties.
Definition: audioproperties.h:43
A wide string class suitable for unicode.
Definition: tstring.h:85
A namespace for all TagLib related classes and functions.
Definition: apefile.h:41
#define TAGLIB_EXPORT
Definition: taglib_export.h:40