summaryrefslogtreecommitdiffstats
path: root/tderadio3/plugins/streaming/streaming-job.h
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2022-05-30 19:40:31 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2022-05-31 01:17:58 +0900
commitd95a4fea540b371fa86493d069fdbd54f33c5b40 (patch)
tree079b038ab559439eb7ded40a07bd79fd92926b3b /tderadio3/plugins/streaming/streaming-job.h
parente54890e0480e5adee69f5220a7c6dd072bbd75ea (diff)
downloadtderadio-d95a4fea540b371fa86493d069fdbd54f33c5b40.tar.gz
tderadio-d95a4fea540b371fa86493d069fdbd54f33c5b40.zip
Standardize folder structure.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tderadio3/plugins/streaming/streaming-job.h')
-rw-r--r--tderadio3/plugins/streaming/streaming-job.h101
1 files changed, 0 insertions, 101 deletions
diff --git a/tderadio3/plugins/streaming/streaming-job.h b/tderadio3/plugins/streaming/streaming-job.h
deleted file mode 100644
index a8afe48..0000000
--- a/tderadio3/plugins/streaming/streaming-job.h
+++ /dev/null
@@ -1,101 +0,0 @@
-/***************************************************************************
- streaming-job.h - description
- -------------------
- begin : Sun Sept 3 2006
- copyright : (C) 2006 by Martin Witte
- email : witte@kawo1.rwth-aachen.de
- ***************************************************************************/
-
-/***************************************************************************
- * *
- * 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. *
- * *
- ***************************************************************************/
-
-#ifndef _KRADIO_STREAMING_JOB_H
-#define _KRADIO_STREAMING_JOB_H
-
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
-#include "../../src/include/ringbuffer.h"
-#include "../../src/include/soundformat.h"
-#include "../../src/include/soundstreamclient_interfaces.h"
-
-#include <tqobject.h>
-
-#include <tdeio/jobclasses.h>
-
-class StreamingJob : public TQObject
-{
-Q_OBJECT
-
-public:
- StreamingJob();
- StreamingJob(const TQString &_URL, const SoundFormat &_SoundFormat, size_t _bufferSize);
- StreamingJob(const StreamingJob &c);
-
- virtual ~StreamingJob();
-
- const TQString &getURL() const { return m_URL; }
- const SoundFormat &getSoundFormat() const { return m_SoundFormat; }
- int getBufferSize() const { return m_BufferSize; }
-
- void setURL(const TQString &);
- void setSoundFormat(const SoundFormat &);
- void setBufferSize(size_t buffer_size);
-
- bool startPlayback();
- bool stopPlayback();
-
- bool startCapture(const SoundFormat &proposed_format,
- SoundFormat &real_format,
- bool force_format);
- bool stopCapture();
-
-
- void playData(const char *data, size_t size, size_t &consumed_size);
- bool hasRecordedData() const;
- void lockData(const char *&data, size_t &size, SoundMetaData &meta_data);
- void removeData(size_t);
-
-protected slots:
-
- void slotReadData (TDEIO::Job *job, const TQByteArray &data);
- void slotWriteData (TDEIO::Job *job, TQByteArray &data);
- void slotIOJobResult (TDEIO::Job *job);
-
-signals:
-
- void logStreamError(const KURL &url, const TQString &s);
- void logStreamWarning(const KURL &url, const TQString &s);
-
-protected:
-
- bool startGetJob();
- bool startPutJob();
-
-
- TQString m_URL;
- SoundFormat m_SoundFormat;
-
- size_t m_BufferSize;
- RingBuffer m_Buffer;
-
- unsigned m_OpenCounter;
- TQ_UINT64 m_StreamPos;
- time_t m_StartTime;
-
- size_t m_SkipCount;
-
- TDEIO::TransferJob *m_TDEIO_Job;
- bool m_capturing;
-};
-
-
-
-#endif