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;
|
|
|
|
|
|
|
|
use ffi;
|
|
|
|
|
2019-01-22 15:43:29 +00:00
|
|
|
#[repr(C)]
|
|
|
|
#[derive(Debug)]
|
2018-03-29 18:43:25 +00:00
|
|
|
pub struct SDPKey(ffi::GstSDPKey);
|
|
|
|
|
|
|
|
impl SDPKey {
|
2018-04-05 17:41:31 +00:00
|
|
|
pub fn type_(&self) -> &str {
|
|
|
|
unsafe { CStr::from_ptr(self.0.type_).to_str().unwrap() }
|
|
|
|
}
|
2018-03-29 18:43:25 +00:00
|
|
|
|
2018-04-05 17:41:31 +00:00
|
|
|
pub fn data(&self) -> &str {
|
|
|
|
unsafe { CStr::from_ptr(self.0.data).to_str().unwrap() }
|
|
|
|
}
|
2018-03-29 18:43:25 +00:00
|
|
|
}
|