webrtcbin: an element that handles the transport aspects of webrtc connections
[platform/upstream/gst-plugins-bad.git] / ext / webrtc / webrtctransceiver.h
1 /* GStreamer
2  * Copyright (C) 2017 Matthew Waters <matthew@centricular.com>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
17  * Boston, MA 02110-1301, USA.
18  */
19
20 #ifndef __WEBRTC_TRANSCEIVER_H__
21 #define __WEBRTC_TRANSCEIVER_H__
22
23 #include "fwd.h"
24 #include <gst/webrtc/rtptransceiver.h>
25 #include "transportstream.h"
26
27 G_BEGIN_DECLS
28
29 GType webrtc_transceiver_get_type(void);
30 #define WEBRTC_TYPE_TRANSCEIVER            (webrtc_transceiver_get_type())
31 #define WEBRTC_TRANSCEIVER(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj),WEBRTC_TYPE_TRANSCEIVER,WebRTCTransceiver))
32 #define WEBRTC_IS_TRANSCEIVER(obj)         (G_TYPE_CHECK_INSTANCE_TYPE((obj),WEBRTC_TYPE_TRANSCEIVER))
33 #define WEBRTC_TRANSCEIVER_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST((klass) ,WEBRTC_TYPE_TRANSCEIVER,WebRTCTransceiverClass))
34 #define WEBRTC_TRANSCEIVER_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS((obj) ,WEBRTC_TYPE_TRANSCEIVER,WebRTCTransceiverClass))
35
36 struct _WebRTCTransceiver
37 {
38   GstWebRTCRTPTransceiver   parent;
39
40   TransportStream          *stream;
41 };
42
43 struct _WebRTCTransceiverClass
44 {
45   GstWebRTCRTPTransceiverClass      parent_class;
46 };
47
48 WebRTCTransceiver *       webrtc_transceiver_new            (GstWebRTCBin * webrtc,
49                                                              GstWebRTCRTPSender * sender,
50                                                              GstWebRTCRTPReceiver * receiver);
51
52 void                      webrtc_transceiver_set_transport  (WebRTCTransceiver * trans,
53                                                              TransportStream * stream);
54
55 G_END_DECLS
56
57 #endif /* __WEBRTC_TRANSCEIVER_H__ */