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.
|
|
|
|
|
2018-04-04 18:40:45 +00:00
|
|
|
use std::ffi::CStr;
|
2018-04-05 17:41:31 +00:00
|
|
|
use std::mem;
|
2018-03-29 18:43:25 +00:00
|
|
|
|
|
|
|
use ffi;
|
2018-04-04 18:40:45 +00:00
|
|
|
use glib::translate::*;
|
2018-03-29 18:43:25 +00:00
|
|
|
|
2018-04-04 18:40:45 +00:00
|
|
|
#[repr(C)]
|
2019-01-22 15:43:29 +00:00
|
|
|
#[derive(Debug)]
|
2018-04-05 14:46:13 +00:00
|
|
|
pub struct SDPZone(pub(crate) ffi::GstSDPZone);
|
2018-03-29 18:43:25 +00:00
|
|
|
|
|
|
|
impl SDPZone {
|
2018-04-04 18:40:45 +00:00
|
|
|
pub fn new(time: &str, typed_time: &str) -> Result<Self, ()> {
|
2018-03-29 18:43:25 +00:00
|
|
|
assert_initialized_main_thread!();
|
|
|
|
unsafe {
|
2018-04-04 18:40:45 +00:00
|
|
|
let mut zone = mem::zeroed();
|
2018-04-05 18:05:49 +00:00
|
|
|
let result = ffi::gst_sdp_zone_set(
|
2018-04-05 17:41:31 +00:00
|
|
|
&mut zone,
|
|
|
|
time.to_glib_none().0,
|
|
|
|
typed_time.to_glib_none().0,
|
2018-04-05 18:05:49 +00:00
|
|
|
);
|
2018-04-05 17:41:31 +00:00
|
|
|
match result {
|
2018-04-05 18:05:49 +00:00
|
|
|
ffi::GST_SDP_OK => Ok(SDPZone(zone)),
|
2018-04-05 17:41:31 +00:00
|
|
|
_ => Err(()),
|
|
|
|
}
|
2018-03-29 18:43:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn time(&self) -> &str {
|
2018-04-05 17:41:31 +00:00
|
|
|
unsafe { CStr::from_ptr(self.0.time).to_str().unwrap() }
|
2018-03-29 18:43:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn typed_time(&self) -> &str {
|
2018-04-05 17:41:31 +00:00
|
|
|
unsafe { CStr::from_ptr(self.0.typed_time).to_str().unwrap() }
|
2018-03-29 18:43:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Drop for SDPZone {
|
|
|
|
fn drop(&mut self) {
|
2018-04-04 18:40:45 +00:00
|
|
|
unsafe {
|
|
|
|
ffi::gst_sdp_zone_clear(&mut self.0);
|
|
|
|
}
|
2018-03-29 18:43:25 +00:00
|
|
|
}
|
|
|
|
}
|