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;
|
2019-02-28 18:09:00 +00:00
|
|
|
use std::fmt;
|
2018-04-05 17:41:31 +00:00
|
|
|
use std::mem;
|
2018-03-29 18:43:25 +00:00
|
|
|
|
2018-04-04 18:40:45 +00:00
|
|
|
use glib::translate::*;
|
2019-03-19 07:58:20 +00:00
|
|
|
use gst_sdp_sys;
|
2018-03-29 18:43:25 +00:00
|
|
|
|
2018-04-04 18:40:45 +00:00
|
|
|
#[repr(C)]
|
2019-03-19 07:58:20 +00:00
|
|
|
pub struct SDPZone(pub(crate) gst_sdp_sys::GstSDPZone);
|
2018-03-29 18:43:25 +00:00
|
|
|
|
|
|
|
impl SDPZone {
|
2019-02-28 18:09:00 +00:00
|
|
|
pub fn new(time: &str, typed_time: &str) -> Self {
|
2018-03-29 18:43:25 +00:00
|
|
|
assert_initialized_main_thread!();
|
|
|
|
unsafe {
|
2019-07-11 13:02:46 +00:00
|
|
|
let mut zone = mem::MaybeUninit::zeroed();
|
2019-03-19 07:58:20 +00:00
|
|
|
gst_sdp_sys::gst_sdp_zone_set(
|
2019-07-11 13:02:46 +00:00
|
|
|
zone.as_mut_ptr(),
|
2018-04-05 17:41:31 +00:00
|
|
|
time.to_glib_none().0,
|
|
|
|
typed_time.to_glib_none().0,
|
2018-04-05 18:05:49 +00:00
|
|
|
);
|
2019-07-11 13:02:46 +00:00
|
|
|
SDPZone(zone.assume_init())
|
2018-03-29 18:43:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-20 21:57:46 +00:00
|
|
|
pub fn time(&self) -> Option<&str> {
|
|
|
|
unsafe {
|
|
|
|
if self.0.time.is_null() {
|
|
|
|
None
|
|
|
|
} else {
|
|
|
|
Some(CStr::from_ptr(self.0.time).to_str().unwrap())
|
|
|
|
}
|
|
|
|
}
|
2018-03-29 18:43:25 +00:00
|
|
|
}
|
|
|
|
|
2019-11-20 21:57:46 +00:00
|
|
|
pub fn typed_time(&self) -> Option<&str> {
|
|
|
|
unsafe {
|
|
|
|
if self.0.typed_time.is_null() {
|
|
|
|
None
|
|
|
|
} else {
|
|
|
|
Some(CStr::from_ptr(self.0.typed_time).to_str().unwrap())
|
|
|
|
}
|
|
|
|
}
|
2018-03-29 18:43:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-28 18:09:00 +00:00
|
|
|
impl Clone for SDPZone {
|
|
|
|
fn clone(&self) -> Self {
|
2019-11-20 21:57:46 +00:00
|
|
|
assert_initialized_main_thread!();
|
|
|
|
unsafe {
|
|
|
|
let mut zone = mem::MaybeUninit::zeroed();
|
|
|
|
gst_sdp_sys::gst_sdp_zone_set(zone.as_mut_ptr(), self.0.time, self.0.typed_time);
|
|
|
|
SDPZone(zone.assume_init())
|
|
|
|
}
|
2019-02-28 18:09:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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 {
|
2019-03-19 07:58:20 +00:00
|
|
|
gst_sdp_sys::gst_sdp_zone_clear(&mut self.0);
|
2018-04-04 18:40:45 +00:00
|
|
|
}
|
2018-03-29 18:43:25 +00:00
|
|
|
}
|
|
|
|
}
|
2019-02-28 18:09:00 +00:00
|
|
|
|
|
|
|
impl fmt::Debug for SDPZone {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
f.debug_struct("SDPZone")
|
|
|
|
.field("time", &self.time())
|
|
|
|
.field("typed_time", &self.typed_time())
|
|
|
|
.finish()
|
|
|
|
}
|
|
|
|
}
|