2020-12-15 10:53:31 +00:00
|
|
|
// Take a look at the license at the top of the repository in the LICENSE file.
|
2018-03-29 18:43:25 +00:00
|
|
|
|
2023-01-03 18:58:25 +00:00
|
|
|
use std::{ffi::CStr, fmt, mem};
|
2018-03-29 18:43:25 +00:00
|
|
|
|
2018-04-04 18:40:45 +00:00
|
|
|
use glib::translate::*;
|
2018-03-29 18:43:25 +00:00
|
|
|
|
2020-10-24 17:06:59 +00:00
|
|
|
#[repr(transparent)]
|
2021-06-01 13:15:59 +00:00
|
|
|
#[doc(alias = "GstSDPBandwidth")]
|
2020-11-22 10:38:16 +00:00
|
|
|
pub struct SDPBandwidth(pub(crate) ffi::GstSDPBandwidth);
|
2018-03-29 18:43:25 +00:00
|
|
|
|
2019-12-18 15:04:42 +00:00
|
|
|
unsafe impl Send for SDPBandwidth {}
|
|
|
|
unsafe impl Sync for SDPBandwidth {}
|
|
|
|
|
2018-03-29 18:43:25 +00:00
|
|
|
impl SDPBandwidth {
|
2019-02-28 18:09:00 +00:00
|
|
|
pub fn new(bwtype: &str, bandwidth: u32) -> Self {
|
2018-03-29 18:43:25 +00:00
|
|
|
assert_initialized_main_thread!();
|
|
|
|
unsafe {
|
2023-01-06 12:11:45 +00:00
|
|
|
let mut bw = mem::MaybeUninit::uninit();
|
2020-11-22 10:38:16 +00:00
|
|
|
ffi::gst_sdp_bandwidth_set(bw.as_mut_ptr(), bwtype.to_glib_none().0, bandwidth);
|
2019-07-11 13:02:46 +00:00
|
|
|
SDPBandwidth(bw.assume_init())
|
2018-03-29 18:43:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-20 21:57:46 +00:00
|
|
|
pub fn bwtype(&self) -> Option<&str> {
|
|
|
|
unsafe {
|
|
|
|
if self.0.bwtype.is_null() {
|
|
|
|
None
|
|
|
|
} else {
|
|
|
|
Some(CStr::from_ptr(self.0.bwtype).to_str().unwrap())
|
|
|
|
}
|
|
|
|
}
|
2018-03-29 18:43:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn value(&self) -> u32 {
|
2022-12-13 09:28:00 +00:00
|
|
|
self.0.bandwidth
|
2018-03-29 18:43:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-28 18:09:00 +00:00
|
|
|
impl Clone for SDPBandwidth {
|
|
|
|
fn clone(&self) -> Self {
|
2022-12-25 10:47:02 +00:00
|
|
|
skip_assert_initialized!();
|
2019-11-20 21:57:46 +00:00
|
|
|
unsafe {
|
2023-01-06 12:11:45 +00:00
|
|
|
let mut bw = mem::MaybeUninit::uninit();
|
2020-11-22 10:38:16 +00:00
|
|
|
ffi::gst_sdp_bandwidth_set(bw.as_mut_ptr(), self.0.bwtype, self.0.bandwidth);
|
2019-11-20 21:57:46 +00:00
|
|
|
SDPBandwidth(bw.assume_init())
|
|
|
|
}
|
2019-02-28 18:09:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-29 18:43:25 +00:00
|
|
|
impl Drop for SDPBandwidth {
|
|
|
|
fn drop(&mut self) {
|
2018-04-04 18:40:45 +00:00
|
|
|
unsafe {
|
2020-11-22 10:38:16 +00:00
|
|
|
ffi::gst_sdp_bandwidth_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 SDPBandwidth {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
f.debug_struct("SDPBandwidth")
|
|
|
|
.field("bwtype", &self.bwtype())
|
|
|
|
.field("value", &self.value())
|
|
|
|
.finish()
|
|
|
|
}
|
|
|
|
}
|