arts Library API Documentation

kaudiorecordstream_p.h

00001 /* 00002 00003 Copyright (C) 2002 Matthias Kretz 00004 kretz@kde.org 00005 00006 This library is free software; you can redistribute it and/or 00007 modify it under the terms of the GNU Library General Public 00008 License as published by the Free Software Foundation; either 00009 version 2 of the License, or (at your option) any later version. 00010 00011 This library is distributed in the hope that it will be useful, 00012 but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00014 Library General Public License for more details. 00015 00016 You should have received a copy of the GNU Library General Public License 00017 along with this library; see the file COPYING.LIB. If not, write to 00018 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, 00019 Boston, MA 02111-1307, USA. 00020 00021 */ 00022 00023 #ifndef _KAUDIORECORDSTREAM_P__H 00024 #define _KAUDIORECORDSTREAM_P__H 00025 00026 #include <soundserver.h> 00027 #include <stdsynthmodule.h> 00028 00029 #include <qobject.h> 00030 00031 class KByteSoundReceiver : public QObject, 00032 public Arts::ByteSoundReceiver_skel, 00033 public Arts::StdSynthModule 00034 { 00035 Q_OBJECT 00036 00037 public: 00038 KByteSoundReceiver( int rate, int bits, int channels, const char * title ); 00039 ~KByteSoundReceiver(); 00040 00041 long samplingRate() { return _samplingRate; } 00042 long channels() { return _channels; } 00043 long bits() { return _bits; } 00044 std::string title() { return _title; } 00045 00046 signals: 00052 void data( const char * data, unsigned int size ); 00053 00054 protected: 00055 void process_indata(Arts::DataPacket<Arts::mcopbyte> *); 00056 00057 private: 00058 int _samplingRate, _bits, _channels; 00059 std::string _title; 00060 }; 00061 00062 #endif // _KAUDIORECORDSTREAM_P__H
KDE Logo
This file is part of the documentation for arts Library Version 3.3.0.
Documentation copyright © 1996-2004 the KDE developers.
Generated on Wed Sep 29 09:44:05 2004 by doxygen 1.3.8 written by Dimitri van Heesch, © 1997-2003