Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mod.rs « janusvr_signaller « src « webrtc « net - gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 79094cc58a98ce188778770432ef61b450d1af5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// SPDX-License-Identifier: MPL-2.0

use crate::signaller::Signallable;
use gst::glib;

mod imp;

glib::wrapper! {
    pub struct JanusVRSignaller(ObjectSubclass<imp::Signaller>) @implements Signallable;
}

unsafe impl Send for JanusVRSignaller {}
unsafe impl Sync for JanusVRSignaller {}

impl Default for JanusVRSignaller {
    fn default() -> Self {
        glib::Object::new()
    }
}