2018-03-29 18:43:25 +00:00
|
|
|
// 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 std::ffi::CStr;
|
2019-02-28 18:09:00 +00:00
|
|
|
use std::fmt;
|
2018-03-29 18:43:25 +00:00
|
|
|
|
2019-03-19 07:58:20 +00:00
|
|
|
use gst_sdp_sys;
|
2018-03-29 18:43:25 +00:00
|
|
|
|
2019-01-22 15:43:29 +00:00
|
|
|
#[repr(C)]
|
2019-03-19 07:58:20 +00:00
|
|
|
pub struct SDPKey(gst_sdp_sys::GstSDPKey);
|
2018-03-29 18:43:25 +00:00
|
|
|
|
2019-12-18 15:04:42 +00:00
|
|
|
unsafe impl Send for SDPKey {}
|
|
|
|
unsafe impl Sync for SDPKey {}
|
|
|
|
|
2018-03-29 18:43:25 +00:00
|
|
|
impl SDPKey {
|
2019-11-20 21:57:46 +00:00
|
|
|
pub fn type_(&self) -> Option<&str> {
|
|
|
|
unsafe {
|
|
|
|
if self.0.type_.is_null() {
|
|
|
|
None
|
|
|
|
} else {
|
|
|
|
Some(CStr::from_ptr(self.0.type_).to_str().unwrap())
|
|
|
|
}
|
|
|
|
}
|
2018-04-05 17:41:31 +00:00
|
|
|
}
|
2018-03-29 18:43:25 +00:00
|
|
|
|
2019-11-20 21:57:46 +00:00
|
|
|
pub fn data(&self) -> Option<&str> {
|
|
|
|
unsafe {
|
|
|
|
if self.0.data.is_null() {
|
|
|
|
None
|
|
|
|
} else {
|
|
|
|
Some(CStr::from_ptr(self.0.data).to_str().unwrap())
|
|
|
|
}
|
|
|
|
}
|
2018-04-05 17:41:31 +00:00
|
|
|
}
|
2018-03-29 18:43:25 +00:00
|
|
|
}
|
2019-02-28 18:09:00 +00:00
|
|
|
|
|
|
|
impl fmt::Debug for SDPKey {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
f.debug_struct("SDPKey")
|
|
|
|
.field("type", &self.type_())
|
|
|
|
.field("data", &self.data())
|
|
|
|
.finish()
|
|
|
|
}
|
|
|
|
}
|