mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-11-25 19:11:06 +00:00
Add missing file
This commit is contained in:
parent
fb73d1bc15
commit
d850a4d50a
1 changed files with 28 additions and 0 deletions
28
gstreamer-webrtc/src/web_r_t_c_session_description.rs
Normal file
28
gstreamer-webrtc/src/web_r_t_c_session_description.rs
Normal file
|
@ -0,0 +1,28 @@
|
|||
// Copyright (C) 2018 Sebastian Dröge <sebastian@centricular.com>
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
||||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
||||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
||||
// option. This file may not be copied, modified, or distributed
|
||||
// except according to those terms.
|
||||
|
||||
use WebRTCSDPType;
|
||||
use WebRTCSessionDescription;
|
||||
use ffi;
|
||||
use glib::translate::*;
|
||||
use gst_sdp;
|
||||
use std::mem;
|
||||
|
||||
impl WebRTCSessionDescription {
|
||||
pub fn new(type_: WebRTCSDPType, mut sdp: gst_sdp::SDPMessage) -> WebRTCSessionDescription {
|
||||
assert_initialized_main_thread!();
|
||||
unsafe {
|
||||
let desc = from_glib_full(ffi::gst_webrtc_session_description_new(
|
||||
type_.to_glib(),
|
||||
sdp.to_glib_none_mut().0,
|
||||
));
|
||||
mem::forget(sdp);
|
||||
desc
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue