~ubuntu-branches/ubuntu/natty/kdemultimedia/natty-proposed

« back to all changes in this revision

Viewing changes to kioslave/audiocd/plugins/vorbis/encodervorbis.h

  • Committer: Bazaar Package Importer
  • Author(s): Debian Qt/KDE Maintainers
  • Date: 2011-05-26 02:41:36 UTC
  • mfrom: (0.2.3 upstream)
  • mto: This revision was merged to the branch mainline in revision 108.
  • Revision ID: james.westby@ubuntu.com-20110526024136-jjwsigfy402jhupm
Tags: upstream-4.6.3
ImportĀ upstreamĀ versionĀ 4.6.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
 * Ogg Vorbis encoder.
45
45
 * This encoder is only enabled when HAVE_VORBIS is set.
46
46
 * Check out http://www.vorbis.com/ for lots of information.
47
 
 */ 
 
47
 */
48
48
class EncoderVorbis : public AudioCDEncoder {
49
49
 
50
50
public:
51
51
  EncoderVorbis(KIO::SlaveBase *slave);
52
52
  ~EncoderVorbis();
53
 
  
54
 
  virtual QString type() const { return "Ogg Vorbis"; }
 
53
 
 
54
  virtual QString type() const { return QLatin1String( "Ogg Vorbis" ); }
55
55
  virtual bool init();
56
56
  virtual void loadSettings();
57
57
  virtual unsigned long size(long time_secs) const;
65
65
 
66
66
private:
67
67
  long flush_vorbis();
68
 
  
 
68
 
69
69
  class Private;
70
70
  Private * d;
71
 
    
 
71
 
72
72
};
73
73
 
74
74
#endif // HAVE_VORBIS