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::mem;
|
2018-04-04 18:40:45 +00:00
|
|
|
use std::ffi::CStr;
|
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
|
|
|
use auto::SDPResult;
|
|
|
|
|
|
|
|
#[repr(C)]
|
|
|
|
pub struct SDPZone(pub 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-03-29 18:43:25 +00:00
|
|
|
let result = from_glib(ffi::gst_sdp_zone_set(&mut zone, time.to_glib_none().0, typed_time.to_glib_none().0));
|
|
|
|
match result {
|
|
|
|
SDPResult::Ok => Ok(SDPZone(zone)),
|
2018-04-04 18:40:45 +00:00
|
|
|
_ => Err(()),
|
2018-03-29 18:43:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn time(&self) -> &str {
|
2018-04-04 18:40:45 +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-04 18:40:45 +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
|
|
|
}
|
|
|
|
}
|