You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
147 lines
5.0 KiB
147 lines
5.0 KiB
15 years ago
|
/***************************************************************************
|
||
|
streaming.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_H
|
||
|
#define _KRADIO_STREAMING_H
|
||
|
|
||
|
#ifdef HAVE_CONFIG_H
|
||
|
#include <config.h>
|
||
|
#endif
|
||
|
|
||
|
#include "../../src/include/plugins.h"
|
||
|
#include "../../src/include/soundformat.h"
|
||
|
#include "../../src/include/soundstreamclient_interfaces.h"
|
||
|
|
||
14 years ago
|
#include <tqobject.h>
|
||
|
#include <tqdict.h>
|
||
15 years ago
|
|
||
|
class StreamingJob;
|
||
|
|
||
14 years ago
|
class StreamingDevice : public TQObject,
|
||
15 years ago
|
public PluginBase,
|
||
|
public ISoundStreamClient
|
||
|
{
|
||
|
Q_OBJECT
|
||
13 years ago
|
|
||
15 years ago
|
|
||
|
public:
|
||
14 years ago
|
StreamingDevice (const TQString &name);
|
||
15 years ago
|
virtual ~StreamingDevice ();
|
||
|
|
||
|
virtual bool connectI(Interface *i);
|
||
|
virtual bool disconnectI(Interface *i);
|
||
|
|
||
14 years ago
|
bool getPlaybackStreamOptions(const TQString &channel, TQString &url, SoundFormat &sf, size_t &buffer_size) const;
|
||
|
bool getCaptureStreamOptions (const TQString &channel, TQString &url, SoundFormat &sf, size_t &buffer_size) const;
|
||
15 years ago
|
|
||
|
void resetPlaybackStreams(bool notification_enabled = true);
|
||
|
void resetCaptureStreams(bool notification_enabled = true);
|
||
14 years ago
|
void addPlaybackStream(const TQString &url, const SoundFormat &sf, size_t buffer_size, bool notification_enabled = true);
|
||
|
void addCaptureStream (const TQString &url, const SoundFormat &sf, size_t buffer_size, bool notification_enabled = true);
|
||
15 years ago
|
|
||
|
// PluginBase
|
||
|
|
||
|
public:
|
||
12 years ago
|
virtual void saveState (TDEConfig *) const;
|
||
|
virtual void restoreState (TDEConfig *);
|
||
15 years ago
|
|
||
14 years ago
|
virtual TQString pluginClassName() const { return "StreamingDevice"; }
|
||
15 years ago
|
|
||
14 years ago
|
virtual const TQString &name() const { return PluginBase::name(); }
|
||
|
virtual TQString &name() { return PluginBase::name(); }
|
||
15 years ago
|
|
||
|
virtual ConfigPageInfo createConfigurationPage();
|
||
|
virtual AboutPageInfo createAboutPage();
|
||
|
|
||
|
// ISoundStreamClient: direct device access
|
||
|
|
||
|
RECEIVERS:
|
||
|
void noticeConnectedI (ISoundStreamServer *s, bool pointer_valid);
|
||
14 years ago
|
bool preparePlayback(SoundStreamID id, const TQString &channel, bool active_mode, bool start_immediately);
|
||
|
bool prepareCapture(SoundStreamID id, const TQString &channel);
|
||
15 years ago
|
bool releasePlayback(SoundStreamID id);
|
||
|
bool releaseCapture(SoundStreamID id);
|
||
|
|
||
|
ANSWERS:
|
||
|
bool supportsPlayback() const;
|
||
|
bool supportsCapture() const;
|
||
|
|
||
14 years ago
|
TQString getSoundStreamClientDescription() const;
|
||
15 years ago
|
|
||
|
// ISoundStreamClient: mixer access
|
||
|
|
||
|
protected:
|
||
|
|
||
|
ANSWERS:
|
||
14 years ago
|
const TQStringList &getPlaybackChannels() const;
|
||
|
const TQStringList &getCaptureChannels() const;
|
||
15 years ago
|
|
||
|
// ISoundStreamClient: generic broadcasts
|
||
|
|
||
|
RECEIVERS:
|
||
|
bool startPlayback(SoundStreamID id);
|
||
|
bool pausePlayback(SoundStreamID id);
|
||
|
bool stopPlayback(SoundStreamID id);
|
||
|
bool isPlaybackRunning(SoundStreamID id, bool &b) const;
|
||
|
|
||
|
bool startCaptureWithFormat(SoundStreamID id,
|
||
|
const SoundFormat &proposed_format,
|
||
|
SoundFormat &real_format,
|
||
|
bool force_format);
|
||
|
bool stopCapture(SoundStreamID id);
|
||
|
bool isCaptureRunning(SoundStreamID id, bool &b, SoundFormat &sf) const;
|
||
|
|
||
|
bool noticeSoundStreamClosed(SoundStreamID id);
|
||
|
bool noticeSoundStreamRedirected(SoundStreamID oldID, SoundStreamID newID);
|
||
|
|
||
|
bool noticeReadyForPlaybackData(SoundStreamID id, size_t size);
|
||
|
|
||
|
bool noticeSoundStreamData(SoundStreamID id,
|
||
|
const SoundFormat &,
|
||
|
const char *data, size_t size, size_t &consumed_size,
|
||
|
const SoundMetaData &md
|
||
|
);
|
||
|
|
||
|
public slots:
|
||
|
|
||
14 years ago
|
void logStreamError(const KURL &url, const TQString &s);
|
||
|
void logStreamWarning(const KURL &url, const TQString &s);
|
||
15 years ago
|
|
||
|
signals:
|
||
|
|
||
|
void sigUpdateConfig();
|
||
|
|
||
|
protected:
|
||
|
|
||
14 years ago
|
TQStringList m_PlaybackChannelList,
|
||
15 years ago
|
m_CaptureChannelList;
|
||
|
|
||
14 years ago
|
TQDict<StreamingJob>
|
||
15 years ago
|
m_PlaybackChannels,
|
||
|
m_CaptureChannels;
|
||
|
|
||
14 years ago
|
TQMap<SoundStreamID, TQString>
|
||
15 years ago
|
m_AllPlaybackStreams,
|
||
|
m_AllCaptureStreams,
|
||
|
m_EnabledPlaybackStreams,
|
||
|
m_EnabledCaptureStreams;
|
||
|
};
|
||
|
|
||
|
|
||
|
|
||
|
#endif
|