gstreamer: Minor cleanup

This commit is contained in:
Sebastian Dröge 2022-01-24 14:48:36 +02:00
parent d2bc6d94f9
commit 93a777e6c9

View file

@ -139,17 +139,16 @@ impl DebugCategory {
#[doc(alias = "get_description")]
#[doc(alias = "gst_debug_category_get_description")]
pub fn description<'a>(self) -> Option<&'a str> {
match self.0 {
Some(cat) => unsafe {
let ptr = ffi::gst_debug_category_get_description(cat.as_ptr());
let cat = self.0?;
if ptr.is_null() {
None
} else {
Some(CStr::from_ptr(ptr).to_str().unwrap())
}
},
None => None,
unsafe {
let ptr = ffi::gst_debug_category_get_description(cat.as_ptr());
if ptr.is_null() {
None
} else {
Some(CStr::from_ptr(ptr).to_str().unwrap())
}
}
}