From 90036fc2cf5918c028f043edff7f5d38d1efb4cc Mon Sep 17 00:00:00 2001 From: Niels Ole Salscheider Date: Fri, 17 May 2019 14:30:02 -0700 Subject: Port QXmppCallManager to use GStreamer --- src/client/QXmppCallStream.h | 66 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 src/client/QXmppCallStream.h (limited to 'src/client/QXmppCallStream.h') diff --git a/src/client/QXmppCallStream.h b/src/client/QXmppCallStream.h new file mode 100644 index 00000000..a9103384 --- /dev/null +++ b/src/client/QXmppCallStream.h @@ -0,0 +1,66 @@ +/* + * Copyright (C) 2020 The QXmpp developers + * + * Author: + * Niels Ole Salscheider + * + * Source: + * https://github.com/qxmpp-project/qxmpp + * + * This file is a part of QXmpp library. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + */ + +#ifndef QXMPPCALLSTREAM_H +#define QXMPPCALLSTREAM_H + +#include + +#include + +#include + +class QXmppCallStreamPrivate; +class QXmppIceConnection; +class QXmppCall; +class QXmppCallPrivate; + +/// \brief The QXmppCallStream class represents an RTP stream in a VoIP call. +/// +/// \note THIS API IS NOT FINALIZED YET +/// +/// \since QXmpp 1.3 + +class QXMPP_EXPORT QXmppCallStream : public QObject +{ + Q_OBJECT + +public: + QString creator() const; + QString media() const; + QString name() const; + int id() const; + void setReceivePadCallback(void (*cb)(GstPad *)); + void setSendPadCallback(void (*cb)(GstPad *)); + +private: + QXmppCallStream(GstElement *pipeline, GstElement *rtpbin, + QString media, QString creator, QString name, int id); + + QXmppCallStreamPrivate *d; + + friend class QXmppCall; + friend class QXmppCallPrivate; +}; + +#endif -- cgit v1.2.3