Write ID3 tags in MP3 files via libid3
[skype-call-recorder.git] / mp3writer.h
blob18484387a0eb2b9f6842e5a7b54bfcfd63429395
1 /*
2 Skype Call Recorder
3 Copyright (C) 2008 jlh (jlh at gmx dot ch)
5 This program is free software; you can redistribute it and/or modify it
6 under the terms of the GNU General Public License as published by the
7 Free Software Foundation; either version 2 of the License, version 3 of
8 the License, or (at your option) any later version.
10 This program is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details.
15 You should have received a copy of the GNU General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 The GNU General Public License version 2 is included with the source of
20 this program under the file name COPYING. You can also get a copy on
21 http://www.fsf.org/
24 #ifndef MP3WRITER_H
25 #define MP3WRITER_H
27 #include "writer.h"
29 class QString;
30 class QByteArray;
31 typedef struct lame_global_struct lame_global_flags;
33 class Mp3Writer : public AudioFileWriter {
34 public:
35 virtual ~Mp3Writer();
37 virtual bool open(const QString &, long, bool);
38 virtual void close();
39 virtual bool write(QByteArray &, QByteArray &, int, bool = false);
41 private:
42 void writeTags();
44 private:
45 lame_global_flags *lame;
46 int bitRate;
49 #endif