kwave  18.07.70
OggEncoder.h
Go to the documentation of this file.
1 /*************************************************************************
2  OggEncoder.h - encoder for Ogg/Vorbis data
3  -------------------
4  begin : Tue Sep 10 2002
5  copyright : (C) 2002 by Thomas Eschenbacher
6  email : Thomas.Eschenbacher@gmx.de
7  ***************************************************************************/
8 
9 /***************************************************************************
10  * *
11  * This program is free software; you can redistribute it and/or modify *
12  * it under the terms of the GNU General Public License as published by *
13  * the Free Software Foundation; either version 2 of the License, or *
14  * (at your option) any later version. *
15  * *
16  ***************************************************************************/
17 
18 #ifndef OGG_ENCODER_H
19 #define OGG_ENCODER_H
20 
21 #include "config.h"
22 
23 #include <QList>
24 
25 #include "libkwave/Encoder.h"
27 
28 class QWidget;
29 
30 namespace Kwave
31 {
32  class OggSubEncoder;
33 
34  class OggEncoder: public Kwave::Encoder
35  {
36  public:
38  OggEncoder();
39 
41  virtual ~OggEncoder() Q_DECL_OVERRIDE;
42 
44  virtual Kwave::Encoder *instance() Q_DECL_OVERRIDE;
45 
55  virtual bool encode(QWidget *widget,
57  QIODevice &dst,
58  const Kwave::MetaDataList &meta_data)
59  Q_DECL_OVERRIDE;
60 
62  virtual QList<Kwave::FileProperty> supportedProperties()
63  Q_DECL_OVERRIDE;
64 
65  private:
66 
69  };
70 }
71 
72 #endif /* OGG_ENCODER_H */
73 
74 //***************************************************************************
75 //***************************************************************************
Definition: App.h:33
Kwave::VorbisCommentMap m_comments_map
Definition: OggEncoder.h:68
virtual QList< Kwave::FileProperty > supportedProperties() Q_DECL_OVERRIDE
Definition: OggEncoder.cpp:68
virtual Kwave::Encoder * instance() Q_DECL_OVERRIDE
Definition: OggEncoder.cpp:62
virtual bool encode(QWidget *widget, Kwave::MultiTrackReader &src, QIODevice &dst, const Kwave::MetaDataList &meta_data) Q_DECL_OVERRIDE
Definition: OggEncoder.cpp:74
virtual ~OggEncoder() Q_DECL_OVERRIDE
Definition: OggEncoder.cpp:57