diff options
Diffstat (limited to 'kioslave/audiocd/plugins/wav/encoderwav.h')
-rw-r--r-- | kioslave/audiocd/plugins/wav/encoderwav.h | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/kioslave/audiocd/plugins/wav/encoderwav.h b/kioslave/audiocd/plugins/wav/encoderwav.h deleted file mode 100644 index 154236f2..00000000 --- a/kioslave/audiocd/plugins/wav/encoderwav.h +++ /dev/null @@ -1,56 +0,0 @@ -/* - Copyright (C) 2000 Rik Hemsley (rikkus) <[email protected]> - Copyright (C) 2000, 2001, 2002 Michael Matz <[email protected]> - Copyright (C) 2001 Carsten Duvenhorst <[email protected]> - Copyright (C) 2001 Adrian Schroeter <[email protected]> - Copyright (C) 2003 Richard Lärkäng <[email protected]> - Copyright (C) 2003 Scott Wheeler <[email protected]> - Copyright (C) 2004, 2005 Benjamin Meyer <ben at meyerhome dot net> - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -*/ - -#ifndef ENCODER_WAV_H -#define ENCODER_WAV_H - -#include "encodercda.h" -#include <sys/stat.h> -#include <unistd.h> -#include <stdlib.h> - -/** - * Wav audio "encoder" - * Takes the CDA take and adds the standard wav header. - */ -class EncoderWav : public EncoderCda { - -public: - EncoderWav(TDEIO::SlaveBase *slave) : EncoderCda(slave) {}; - ~EncoderWav(){}; - virtual bool init(){ return true; }; - virtual unsigned long size(long time_secs) const; - virtual TQString type() const { return "Wav"; }; - virtual const char * fileType() const { return "wav"; }; - virtual const char * mimeType() const; - virtual void fillSongInfo( KCDDB::CDInfo, int, const TQString &){}; - virtual long readInit(long size); - -private: - class Private; - Private * d; - -}; - -#endif // ENCODER_WAV_H |