gstreamer-rs/gstreamer-rtp/src/auto/functions.rs

47 lines
1.8 KiB
Rust
Raw Normal View History

// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files)
// DO NOT EDIT
2020-11-22 10:32:36 +00:00
use crate::RTCPSDESType;
use glib::translate::*;
2020-11-25 14:53:45 +00:00
//#[cfg(any(feature = "v1_16", all(not(doctest), doc)))]
//#[cfg_attr(all(not(doctest), doc), doc(cfg(feature = "v1_16")))]
//pub fn buffer_add_rtp_source_meta(buffer: &gst::Buffer, ssrc: u32, csrc: u32, csrc_count: u32) -> /*Ignored*/Option<RTPSourceMeta> {
2020-11-22 10:32:36 +00:00
// unsafe { TODO: call ffi:gst_buffer_add_rtp_source_meta() }
//}
2020-11-25 14:53:45 +00:00
//#[cfg(any(feature = "v1_16", all(not(doctest), doc)))]
//#[cfg_attr(all(not(doctest), doc), doc(cfg(feature = "v1_16")))]
//pub fn buffer_get_rtp_source_meta(buffer: &gst::Buffer) -> /*Ignored*/Option<RTPSourceMeta> {
2020-11-22 10:32:36 +00:00
// unsafe { TODO: call ffi:gst_buffer_get_rtp_source_meta() }
//}
pub fn rtcp_ntp_to_unix(ntptime: u64) -> u64 {
assert_initialized_main_thread!();
2020-11-22 10:32:36 +00:00
unsafe { ffi::gst_rtcp_ntp_to_unix(ntptime) }
}
pub fn rtcp_sdes_name_to_type(name: &str) -> RTCPSDESType {
assert_initialized_main_thread!();
2020-11-22 10:32:36 +00:00
unsafe { from_glib(ffi::gst_rtcp_sdes_name_to_type(name.to_glib_none().0)) }
}
2020-11-22 10:32:36 +00:00
pub fn rtcp_sdes_type_to_name(type_: RTCPSDESType) -> Option<glib::GString> {
assert_initialized_main_thread!();
2020-11-22 10:32:36 +00:00
unsafe { from_glib_none(ffi::gst_rtcp_sdes_type_to_name(type_.to_glib())) }
}
pub fn rtcp_unix_to_ntp(unixtime: u64) -> u64 {
assert_initialized_main_thread!();
2020-11-22 10:32:36 +00:00
unsafe { ffi::gst_rtcp_unix_to_ntp(unixtime) }
}
//pub fn rtp_hdrext_set_ntp_56(data: /*Unimplemented*/Option<Fundamental: Pointer>, size: u32, ntptime: u64) -> bool {
2020-11-22 10:32:36 +00:00
// unsafe { TODO: call ffi:gst_rtp_hdrext_set_ntp_56() }
//}
//pub fn rtp_hdrext_set_ntp_64(data: /*Unimplemented*/Option<Fundamental: Pointer>, size: u32, ntptime: u64) -> bool {
2020-11-22 10:32:36 +00:00
// unsafe { TODO: call ffi:gst_rtp_hdrext_set_ntp_64() }
//}