TagLib  2.0.2
speexfile.h
Go to the documentation of this file.
1 /***************************************************************************
2  copyright : (C) 2006 by Lukáš Lalinský
3  email : lalinsky@gmail.com
4 
5  copyright : (C) 2002 - 2008 by Scott Wheeler
6  email : wheeler@kde.org
7  (original Vorbis 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., 51 Franklin Street, Fifth Floor, Boston, MA *
23  * 02110-1301 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_SPEEXFILE_H
31 #define TAGLIB_SPEEXFILE_H
32 
33 #include "oggfile.h"
34 #include "xiphcomment.h"
35 #include "speexproperties.h"
36 
37 namespace TagLib {
38 
39  namespace Ogg {
40 
42 
43  namespace Speex {
44 
46 
54  class TAGLIB_EXPORT File : public Ogg::File
55  {
56  public:
63  File(FileName file, bool readProperties = true,
64  Properties::ReadStyle propertiesStyle = Properties::Average);
65 
75  File(IOStream *stream, bool readProperties = true,
76  Properties::ReadStyle propertiesStyle = Properties::Average);
77 
81  ~File() override;
82 
83  File(const File &) = delete;
84  File &operator=(const File &) = delete;
85 
91  Ogg::XiphComment *tag() const override;
92 
97  PropertyMap properties() const override;
98 
103  PropertyMap setProperties(const PropertyMap &) override;
104 
109  Properties *audioProperties() const override;
110 
116  bool save() override;
117 
125  static bool isSupported(IOStream *stream);
126 
127  private:
128  void read(bool readProperties);
129 
130  class FilePrivate;
132  std::unique_ptr<FilePrivate> d;
133  };
134  } // namespace Speex
135  } // namespace Ogg
136 } // namespace TagLib
137 
138 #endif
A map for format-independent <key,values> tag representations.
Definition: tpropertymap.h:122
An abstract class that provides operations on a sequence of bytes.
Definition: tiostream.h:64
Read more of the file and make better values guesses.
Definition: audioproperties.h:60
const char * FileName
Definition: tiostream.h:59
#define TAGLIB_MSVC_SUPPRESS_WARNING_NEEDS_TO_HAVE_DLL_INTERFACE
Definition: taglib_export.h:55
ReadStyle
Definition: audioproperties.h:56
#define TAGLIB_EXPORT
Definition: taglib_export.h:40
An implementation of TagLib::File with some helpers for Ogg based formats.
Definition: oggfile.h:50
An implementation of Ogg::File with Speex specific methods.
Definition: speexfile.h:54
An implementation of audio property reading for Ogg Speex.
Definition: speexproperties.h:50
A namespace for all TagLib related classes and functions.
Definition: apefile.h:41
Ogg Vorbis comment implementation.
Definition: xiphcomment.h:70