1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
use std::ffi::CStr;
use std::mem;
use std::os::raw::c_char;
use ffi;
use glib::translate::*;
#[repr(C)]
pub struct SDPTime(pub(crate) ffi::GstSDPTime);
impl SDPTime {
pub fn new(start: &str, stop: &str, repeat: &[&str]) -> Result<Self, ()> {
assert_initialized_main_thread!();
unsafe {
let mut time = mem::zeroed();
let result = ffi::gst_sdp_time_set(
&mut time,
start.to_glib_none().0,
stop.to_glib_none().0,
repeat.to_glib_none().0,
);
match result {
ffi::GST_SDP_OK => Ok(SDPTime(time)),
_ => Err(()),
}
}
}
pub fn start(&self) -> &str {
unsafe { CStr::from_ptr(self.0.start).to_str().unwrap() }
}
pub fn stop(&self) -> &str {
unsafe { CStr::from_ptr(self.0.stop).to_str().unwrap() }
}
pub fn repeat(&self) -> Vec<&str> {
#[cfg_attr(feature = "cargo-clippy", allow(cast_ptr_alignment))]
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
}
}
}
impl Drop for SDPTime {
fn drop(&mut self) {
unsafe {
ffi::gst_sdp_time_clear(&mut self.0);
}
}
}