TagLib  1.13.1
oggflacfile.h
Go to the documentation of this file.
1/***************************************************************************
2 copyright : (C) 2004 by Allan Sandfeld Jensen
3 email : kde@carewolf.org
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_OGGFLACFILE_H
27#define TAGLIB_OGGFLACFILE_H
28
29#include "taglib_export.h"
30#include "oggfile.h"
31#include "xiphcomment.h"
32
33#include "flacproperties.h"
34
35namespace TagLib {
36
37 class Tag;
38
39 namespace Ogg {
40
42
50 namespace FLAC {
51
53
55
62
64 {
65 public:
72 File(FileName file, bool readProperties = true,
74
84 File(IOStream *stream, bool readProperties = true,
86
90 virtual ~File();
91
105 virtual XiphComment *tag() const;
106
111 virtual Properties *audioProperties() const;
112
113
119
125
126
131 virtual bool save();
132
138
144 bool hasXiphComment() const;
145
152 static bool isSupported(IOStream *stream);
153
154 private:
155 File(const File &);
156 File &operator=(const File &);
157
158 void read(bool readProperties, Properties::ReadStyle propertiesStyle);
159 void scan();
160 ByteVector streamInfoData();
161 ByteVector xiphCommentData();
162
163 class FilePrivate;
164 FilePrivate *d;
165 };
166 } // namespace FLAC
167 } // namespace Ogg
168} // namespace TagLib
169
170#endif
ReadStyle
Definition audioproperties.h:53
@ Average
Read more of the file and make better values guesses.
Definition audioproperties.h:57
A byte vector.
Definition tbytevector.h:46
An implementation of audio property reading for FLAC.
Definition flacproperties.h:46
An abstract class that provides operations on a sequence of bytes.
Definition tiostream.h:63
bool hasXiphComment() const
PropertyMap setProperties(const PropertyMap &)
virtual Properties * audioProperties() const
virtual XiphComment * tag() const
PropertyMap properties() const
File(FileName file, bool readProperties=true, Properties::ReadStyle propertiesStyle=Properties::Average)
File(IOStream *stream, bool readProperties=true, Properties::ReadStyle propertiesStyle=Properties::Average)
static bool isSupported(IOStream *stream)
An implementation of TagLib::File with some helpers for Ogg based formats.
Definition oggfile.h:51
Ogg Vorbis comment implementation.
Definition xiphcomment.h:71
A map for format-independent <key,valuelist> tag representations.
Definition tpropertymap.h:119
Definition tag.h:47
An implementation of Ogg FLAC metadata.
Definition oggflacfile.h:50
A namespace for the classes used by Ogg-based metadata files.
Definition flacfile.h:42
A namespace for all TagLib related classes and functions.
Definition apefile.h:41
const char * FileName
Definition tiostream.h:57
#define TAGLIB_EXPORT
Definition taglib_export.h:40