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::os::raw::c_char;
|
|
|
|
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
|
|
|
|
|
|
|
use auto::SDPResult;
|
|
|
|
|
2018-04-04 18:40:45 +00:00
|
|
|
#[repr(C)]
|
|
|
|
pub struct SDPTime(pub ffi::GstSDPTime);
|
2018-03-29 18:43:25 +00:00
|
|
|
|
|
|
|
impl SDPTime {
|
2018-04-04 18:40:45 +00:00
|
|
|
pub fn new(start: &str, stop: &str, repeat: &[&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 time = mem::zeroed();
|
|
|
|
let result = from_glib(ffi::gst_sdp_time_set(
|
2018-03-29 18:43:25 +00:00
|
|
|
&mut time,
|
|
|
|
start.to_glib_none().0,
|
|
|
|
stop.to_glib_none().0,
|
|
|
|
repeat.to_glib_none().0,
|
|
|
|
));
|
|
|
|
match result {
|
|
|
|
SDPResult::Ok => Ok(SDPTime(time)),
|
2018-04-04 18:40:45 +00:00
|
|
|
_ => Err(()),
|
2018-03-29 18:43:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn start(&self) -> &str {
|
2018-04-04 18:40:45 +00:00
|
|
|
unsafe {
|
|
|
|
CStr::from_ptr(self.0.start).to_str().unwrap()
|
|
|
|
}
|
2018-03-29 18:43:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn stop(&self) -> &str {
|
2018-04-04 18:40:45 +00:00
|
|
|
unsafe {
|
|
|
|
CStr::from_ptr(self.0.stop).to_str().unwrap()
|
|
|
|
}
|
2018-03-29 18:43:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn repeat(&self) -> Vec<&str> {
|
2018-04-04 18:40:45 +00:00
|
|
|
unsafe {
|
|
|
|
let arr = (*self.0.repeat).data as *const *const c_char;
|
|
|
|
let len = (*self.0.repeat).len as usize;
|
|
|
|
let mut vec = Vec::with_capacity(len);
|
|
|
|
for i in 0..len {
|
|
|
|
vec.push(CStr::from_ptr(*arr.offset(i as isize)).to_str().unwrap());
|
|
|
|
}
|
|
|
|
vec
|
2018-03-29 18:43:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Drop for SDPTime {
|
|
|
|
fn drop(&mut self) {
|
2018-04-04 18:40:45 +00:00
|
|
|
unsafe {
|
|
|
|
ffi::gst_sdp_time_clear(&mut self.0);
|
|
|
|
}
|
2018-03-29 18:43:25 +00:00
|
|
|
}
|
|
|
|
}
|