forked from mirrors/gstreamer-rs
WIP initial version of harness/testclock bindings
This commit is contained in:
parent
98c69609cc
commit
5b75f11cd0
6 changed files with 3572 additions and 0 deletions
33
Gir_GstCheck.toml
Normal file
33
Gir_GstCheck.toml
Normal file
|
@ -0,0 +1,33 @@
|
|||
[options]
|
||||
girs_dir = "gir-files"
|
||||
library = "GstCheck"
|
||||
version = "1.0"
|
||||
min_cfg_version = "1.8"
|
||||
target_path = "gstreamer-check"
|
||||
work_mode = "normal"
|
||||
concurrency = "send+sync"
|
||||
generate_safety_asserts = true
|
||||
single_version_file = true
|
||||
|
||||
external_libraries = [
|
||||
"GLib",
|
||||
"GObject",
|
||||
"Gst",
|
||||
]
|
||||
|
||||
generate = [
|
||||
"GstCheck.TestClock",
|
||||
]
|
||||
|
||||
manual = [
|
||||
"GObject.Object",
|
||||
"Gst.Object",
|
||||
"Gst.Clock",
|
||||
"Gst.ClockTimeDiff",
|
||||
"Gst.ClockType",
|
||||
]
|
||||
|
||||
[[object]]
|
||||
name = "Gst.ClockTime"
|
||||
status = "manual"
|
||||
conversion_type = "scalar"
|
2686
gir-files/GstCheck-1.0.gir
Normal file
2686
gir-files/GstCheck-1.0.gir
Normal file
File diff suppressed because it is too large
Load diff
12
gstreamer-check/src/auto/mod.rs
Normal file
12
gstreamer-check/src/auto/mod.rs
Normal file
|
@ -0,0 +1,12 @@
|
|||
// 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
|
||||
|
||||
mod test_clock;
|
||||
pub use self::test_clock::TestClock;
|
||||
pub use self::test_clock::TestClockExt;
|
||||
|
||||
#[doc(hidden)]
|
||||
pub mod traits {
|
||||
pub use super::TestClockExt;
|
||||
}
|
193
gstreamer-check/src/auto/test_clock.rs
Normal file
193
gstreamer-check/src/auto/test_clock.rs
Normal file
|
@ -0,0 +1,193 @@
|
|||
// 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
|
||||
|
||||
use ffi;
|
||||
use glib;
|
||||
use glib::StaticType;
|
||||
use glib::Value;
|
||||
use glib::object::Downcast;
|
||||
use glib::object::IsA;
|
||||
use glib::signal::SignalHandlerId;
|
||||
use glib::signal::connect;
|
||||
use glib::translate::*;
|
||||
use glib_ffi;
|
||||
use gobject_ffi;
|
||||
use gst;
|
||||
use gst_ffi;
|
||||
use std::boxed::Box as Box_;
|
||||
use std::mem;
|
||||
use std::mem::transmute;
|
||||
use std::ptr;
|
||||
|
||||
glib_wrapper! {
|
||||
pub struct TestClock(Object<ffi::GstTestClock, ffi::GstTestClockClass>): [
|
||||
gst::Clock => gst_ffi::GstClock,
|
||||
gst::Object => gst_ffi::GstObject,
|
||||
];
|
||||
|
||||
match fn {
|
||||
get_type => || ffi::gst_test_clock_get_type(),
|
||||
}
|
||||
}
|
||||
|
||||
impl TestClock {
|
||||
pub fn new() -> TestClock {
|
||||
assert_initialized_main_thread!();
|
||||
unsafe {
|
||||
gst::Clock::from_glib_full(ffi::gst_test_clock_new()).downcast_unchecked()
|
||||
}
|
||||
}
|
||||
|
||||
pub fn new_with_start_time(start_time: gst::ClockTime) -> TestClock {
|
||||
assert_initialized_main_thread!();
|
||||
unsafe {
|
||||
gst::Clock::from_glib_full(ffi::gst_test_clock_new_with_start_time(start_time.to_glib())).downcast_unchecked()
|
||||
}
|
||||
}
|
||||
|
||||
//pub fn id_list_get_latest_time(pending_list: /*Ignored*/&[&gst::ClockID]) -> gst::ClockTime {
|
||||
// unsafe { TODO: call ffi::gst_test_clock_id_list_get_latest_time() }
|
||||
//}
|
||||
}
|
||||
|
||||
impl Default for TestClock {
|
||||
fn default() -> Self {
|
||||
Self::new()
|
||||
}
|
||||
}
|
||||
|
||||
unsafe impl Send for TestClock {}
|
||||
unsafe impl Sync for TestClock {}
|
||||
|
||||
pub trait TestClockExt {
|
||||
fn advance_time(&self, delta: gst::ClockTimeDiff);
|
||||
|
||||
fn crank(&self) -> bool;
|
||||
|
||||
fn get_next_entry_time(&self) -> gst::ClockTime;
|
||||
|
||||
//fn has_id(&self, id: /*Ignored*/gst::ClockID) -> bool;
|
||||
|
||||
fn peek_id_count(&self) -> u32;
|
||||
|
||||
//fn peek_next_pending_id(&self, pending_id: /*Ignored*/&mut gst::ClockID) -> bool;
|
||||
|
||||
//fn process_id_list(&self, pending_list: /*Ignored*/&[&gst::ClockID]) -> u32;
|
||||
|
||||
//fn process_next_clock_id(&self) -> /*Ignored*/Option<gst::ClockID>;
|
||||
|
||||
fn set_time(&self, new_time: gst::ClockTime);
|
||||
|
||||
//fn wait_for_multiple_pending_ids(&self, count: u32, pending_list: /*Unimplemented*/Vec<gst::ClockID>);
|
||||
|
||||
//fn wait_for_next_pending_id(&self, pending_id: /*Ignored*/&mut gst::ClockID);
|
||||
|
||||
fn wait_for_pending_id_count(&self, count: u32);
|
||||
|
||||
fn get_property_clock_type(&self) -> gst::ClockType;
|
||||
|
||||
fn set_property_clock_type(&self, clock_type: gst::ClockType);
|
||||
|
||||
fn get_property_start_time(&self) -> u64;
|
||||
|
||||
fn connect_property_clock_type_notify<F: Fn(&Self) + Send + Sync + 'static>(&self, f: F) -> SignalHandlerId;
|
||||
}
|
||||
|
||||
impl<O: IsA<TestClock> + IsA<glib::object::Object>> TestClockExt for O {
|
||||
fn advance_time(&self, delta: gst::ClockTimeDiff) {
|
||||
unsafe {
|
||||
ffi::gst_test_clock_advance_time(self.to_glib_none().0, delta);
|
||||
}
|
||||
}
|
||||
|
||||
fn crank(&self) -> bool {
|
||||
unsafe {
|
||||
from_glib(ffi::gst_test_clock_crank(self.to_glib_none().0))
|
||||
}
|
||||
}
|
||||
|
||||
fn get_next_entry_time(&self) -> gst::ClockTime {
|
||||
unsafe {
|
||||
from_glib(ffi::gst_test_clock_get_next_entry_time(self.to_glib_none().0))
|
||||
}
|
||||
}
|
||||
|
||||
//fn has_id(&self, id: /*Ignored*/gst::ClockID) -> bool {
|
||||
// unsafe { TODO: call ffi::gst_test_clock_has_id() }
|
||||
//}
|
||||
|
||||
fn peek_id_count(&self) -> u32 {
|
||||
unsafe {
|
||||
ffi::gst_test_clock_peek_id_count(self.to_glib_none().0)
|
||||
}
|
||||
}
|
||||
|
||||
//fn peek_next_pending_id(&self, pending_id: /*Ignored*/&mut gst::ClockID) -> bool {
|
||||
// unsafe { TODO: call ffi::gst_test_clock_peek_next_pending_id() }
|
||||
//}
|
||||
|
||||
//fn process_id_list(&self, pending_list: /*Ignored*/&[&gst::ClockID]) -> u32 {
|
||||
// unsafe { TODO: call ffi::gst_test_clock_process_id_list() }
|
||||
//}
|
||||
|
||||
//fn process_next_clock_id(&self) -> /*Ignored*/Option<gst::ClockID> {
|
||||
// unsafe { TODO: call ffi::gst_test_clock_process_next_clock_id() }
|
||||
//}
|
||||
|
||||
fn set_time(&self, new_time: gst::ClockTime) {
|
||||
unsafe {
|
||||
ffi::gst_test_clock_set_time(self.to_glib_none().0, new_time.to_glib());
|
||||
}
|
||||
}
|
||||
|
||||
//fn wait_for_multiple_pending_ids(&self, count: u32, pending_list: /*Unimplemented*/Vec<gst::ClockID>) {
|
||||
// unsafe { TODO: call ffi::gst_test_clock_wait_for_multiple_pending_ids() }
|
||||
//}
|
||||
|
||||
//fn wait_for_next_pending_id(&self, pending_id: /*Ignored*/&mut gst::ClockID) {
|
||||
// unsafe { TODO: call ffi::gst_test_clock_wait_for_next_pending_id() }
|
||||
//}
|
||||
|
||||
fn wait_for_pending_id_count(&self, count: u32) {
|
||||
unsafe {
|
||||
ffi::gst_test_clock_wait_for_pending_id_count(self.to_glib_none().0, count);
|
||||
}
|
||||
}
|
||||
|
||||
fn get_property_clock_type(&self) -> gst::ClockType {
|
||||
unsafe {
|
||||
let mut value = Value::from_type(<gst::ClockType as StaticType>::static_type());
|
||||
gobject_ffi::g_object_get_property(self.to_glib_none().0, "clock-type".to_glib_none().0, value.to_glib_none_mut().0);
|
||||
value.get().unwrap()
|
||||
}
|
||||
}
|
||||
|
||||
fn set_property_clock_type(&self, clock_type: gst::ClockType) {
|
||||
unsafe {
|
||||
gobject_ffi::g_object_set_property(self.to_glib_none().0, "clock-type".to_glib_none().0, Value::from(&clock_type).to_glib_none().0);
|
||||
}
|
||||
}
|
||||
|
||||
fn get_property_start_time(&self) -> u64 {
|
||||
unsafe {
|
||||
let mut value = Value::from_type(<u64 as StaticType>::static_type());
|
||||
gobject_ffi::g_object_get_property(self.to_glib_none().0, "start-time".to_glib_none().0, value.to_glib_none_mut().0);
|
||||
value.get().unwrap()
|
||||
}
|
||||
}
|
||||
|
||||
fn connect_property_clock_type_notify<F: Fn(&Self) + Send + Sync + 'static>(&self, f: F) -> SignalHandlerId {
|
||||
unsafe {
|
||||
let f: Box_<Box_<Fn(&Self) + Send + Sync + 'static>> = Box_::new(Box_::new(f));
|
||||
connect(self.to_glib_none().0, "notify::clock-type",
|
||||
transmute(notify_clock_type_trampoline::<Self> as usize), Box_::into_raw(f) as *mut _)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
unsafe extern "C" fn notify_clock_type_trampoline<P>(this: *mut ffi::GstTestClock, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
|
||||
where P: IsA<TestClock> {
|
||||
let f: &&(Fn(&P) + Send + Sync + 'static) = transmute(f);
|
||||
f(&TestClock::from_glib_borrow(this).downcast_unchecked())
|
||||
}
|
2
gstreamer-check/src/auto/versions.txt
Normal file
2
gstreamer-check/src/auto/versions.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
Generated by gir (https://github.com/gtk-rs/gir @ 82cdb44)
|
||||
from gir-files (https://github.com/gtk-rs/gir-files @ ???)
|
646
gstreamer-check/src/harness.rs
Normal file
646
gstreamer-check/src/harness.rs
Normal file
|
@ -0,0 +1,646 @@
|
|||
// 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
|
||||
|
||||
use ffi;
|
||||
#[cfg(any(feature = "v1_14", feature = "dox"))]
|
||||
use glib;
|
||||
use glib::object::IsA;
|
||||
use glib::translate::*;
|
||||
use glib_ffi;
|
||||
use gst;
|
||||
use std::mem;
|
||||
use std::ptr;
|
||||
use TestClock;
|
||||
|
||||
glib_wrapper! {
|
||||
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
||||
pub struct Harness(Boxed<ffi::GstHarness>);
|
||||
|
||||
match fn {
|
||||
copy => |ptr| ffi::gst_harness_copy(mut_override(ptr)),
|
||||
free => |ptr| ffi::gst_harness_free(ptr),
|
||||
}
|
||||
}
|
||||
|
||||
impl Harness {
|
||||
pub fn add_element_full<
|
||||
'a,
|
||||
'b,
|
||||
'c,
|
||||
'd,
|
||||
P: IsA<gst::Element>,
|
||||
Q: Into<Option<&'a gst::StaticPadTemplate>>,
|
||||
R: Into<Option<&'b str>>,
|
||||
S: Into<Option<&'c gst::StaticPadTemplate>>,
|
||||
T: Into<Option<&'d str>>,
|
||||
>(
|
||||
&mut self,
|
||||
element: &P,
|
||||
hsrc: Q,
|
||||
element_sinkpad_name: R,
|
||||
hsink: S,
|
||||
element_srcpad_name: T,
|
||||
) {
|
||||
let hsrc = hsrc.into();
|
||||
let element_sinkpad_name = element_sinkpad_name.into();
|
||||
let element_sinkpad_name = element_sinkpad_name.to_glib_none();
|
||||
let hsink = hsink.into();
|
||||
let element_srcpad_name = element_srcpad_name.into();
|
||||
let element_srcpad_name = element_srcpad_name.to_glib_none();
|
||||
unsafe {
|
||||
ffi::gst_harness_add_element_full(
|
||||
self.to_glib_none_mut().0,
|
||||
element.to_glib_none().0,
|
||||
hsrc.to_glib_none_mut().0,
|
||||
element_sinkpad_name.0,
|
||||
hsink.to_glib_none_mut().0,
|
||||
element_srcpad_name.0,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
pub fn add_element_sink_pad<P: IsA<gst::Pad>>(&mut self, sinkpad: &P) {
|
||||
unsafe {
|
||||
ffi::gst_harness_add_element_sink_pad(
|
||||
self.to_glib_none_mut().0,
|
||||
sinkpad.to_glib_none().0,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
pub fn add_element_src_pad<P: IsA<gst::Pad>>(&mut self, srcpad: &P) {
|
||||
unsafe {
|
||||
ffi::gst_harness_add_element_src_pad(
|
||||
self.to_glib_none_mut().0,
|
||||
srcpad.to_glib_none().0,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
pub fn add_parse(&mut self, launchline: &str) {
|
||||
unsafe {
|
||||
ffi::gst_harness_add_parse(self.to_glib_none_mut().0, launchline.to_glib_none().0);
|
||||
}
|
||||
}
|
||||
|
||||
//pub fn add_probe(&mut self, element_name: &str, pad_name: &str, mask: /*Ignored*/gst::PadProbeType, callback: /*Unknown conversion*//*Unimplemented*/PadProbeCallback, destroy_data: /*Unknown conversion*//*Unimplemented*/DestroyNotify) {
|
||||
// unsafe { TODO: call ffi::gst_harness_add_probe() }
|
||||
//}
|
||||
|
||||
#[cfg(any(feature = "v1_16", feature = "dox"))]
|
||||
pub fn add_propose_allocation_meta<'a, P: Into<Option<&'a gst::Structure>>>(
|
||||
&mut self,
|
||||
api: glib::types::Type,
|
||||
params: P,
|
||||
) {
|
||||
let params = params.into();
|
||||
let params = params.to_glib_none();
|
||||
unsafe {
|
||||
ffi::gst_harness_add_propose_allocation_meta(
|
||||
self.to_glib_none_mut().0,
|
||||
api.to_glib(),
|
||||
params.0,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
pub fn add_sink(&mut self, sink_element_name: &str) {
|
||||
unsafe {
|
||||
ffi::gst_harness_add_sink(
|
||||
self.to_glib_none_mut().0,
|
||||
sink_element_name.to_glib_none().0,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
pub fn add_sink_harness(&mut self, sink_harness: &mut Harness) {
|
||||
unsafe {
|
||||
ffi::gst_harness_add_sink_harness(
|
||||
self.to_glib_none_mut().0,
|
||||
sink_harness.to_glib_full(),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
pub fn add_sink_parse(&mut self, launchline: &str) {
|
||||
unsafe {
|
||||
ffi::gst_harness_add_sink_parse(self.to_glib_none_mut().0, launchline.to_glib_none().0);
|
||||
}
|
||||
}
|
||||
|
||||
pub fn add_src(&mut self, src_element_name: &str, has_clock_wait: bool) {
|
||||
unsafe {
|
||||
ffi::gst_harness_add_src(
|
||||
self.to_glib_none_mut().0,
|
||||
src_element_name.to_glib_none().0,
|
||||
has_clock_wait.to_glib(),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
pub fn add_src_harness(&mut self, src_harness: &mut Harness, has_clock_wait: bool) {
|
||||
unsafe {
|
||||
ffi::gst_harness_add_src_harness(
|
||||
self.to_glib_none_mut().0,
|
||||
src_harness.to_glib_full(),
|
||||
has_clock_wait.to_glib(),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
pub fn add_src_parse(&mut self, launchline: &str, has_clock_wait: bool) {
|
||||
unsafe {
|
||||
ffi::gst_harness_add_src_parse(
|
||||
self.to_glib_none_mut().0,
|
||||
launchline.to_glib_none().0,
|
||||
has_clock_wait.to_glib(),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
pub fn buffers_in_queue(&mut self) -> u32 {
|
||||
unsafe { ffi::gst_harness_buffers_in_queue(self.to_glib_none_mut().0) }
|
||||
}
|
||||
|
||||
pub fn buffers_received(&mut self) -> u32 {
|
||||
unsafe { ffi::gst_harness_buffers_received(self.to_glib_none_mut().0) }
|
||||
}
|
||||
|
||||
pub fn crank_multiple_clock_waits(&mut self, waits: u32) -> bool {
|
||||
unsafe {
|
||||
from_glib(ffi::gst_harness_crank_multiple_clock_waits(
|
||||
self.to_glib_none_mut().0,
|
||||
waits,
|
||||
))
|
||||
}
|
||||
}
|
||||
|
||||
pub fn crank_single_clock_wait(&mut self) -> bool {
|
||||
unsafe {
|
||||
from_glib(ffi::gst_harness_crank_single_clock_wait(
|
||||
self.to_glib_none_mut().0,
|
||||
))
|
||||
}
|
||||
}
|
||||
|
||||
pub fn create_buffer(&mut self, size: usize) -> Option<gst::Buffer> {
|
||||
unsafe {
|
||||
from_glib_full(ffi::gst_harness_create_buffer(
|
||||
self.to_glib_none_mut().0,
|
||||
size,
|
||||
))
|
||||
}
|
||||
}
|
||||
|
||||
pub fn dump_to_file(&mut self, filename: &str) {
|
||||
unsafe {
|
||||
ffi::gst_harness_dump_to_file(self.to_glib_none_mut().0, filename.to_glib_none().0);
|
||||
}
|
||||
}
|
||||
|
||||
pub fn events_in_queue(&mut self) -> u32 {
|
||||
unsafe { ffi::gst_harness_events_in_queue(self.to_glib_none_mut().0) }
|
||||
}
|
||||
|
||||
pub fn events_received(&mut self) -> u32 {
|
||||
unsafe { ffi::gst_harness_events_received(self.to_glib_none_mut().0) }
|
||||
}
|
||||
|
||||
pub fn find_element(&mut self, element_name: &str) -> Option<gst::Element> {
|
||||
unsafe {
|
||||
from_glib_full(ffi::gst_harness_find_element(
|
||||
self.to_glib_none_mut().0,
|
||||
element_name.to_glib_none().0,
|
||||
))
|
||||
}
|
||||
}
|
||||
|
||||
//pub fn get(&mut self, element_name: &str, first_property_name: &str, : /*Unknown conversion*//*Unimplemented*/Fundamental: VarArgs) {
|
||||
// unsafe { TODO: call ffi::gst_harness_get() }
|
||||
//}
|
||||
|
||||
//pub fn get_allocator(&mut self, allocator: /*Ignored*/gst::Allocator, params: /*Ignored*/gst::AllocationParams) {
|
||||
// unsafe { TODO: call ffi::gst_harness_get_allocator() }
|
||||
//}
|
||||
|
||||
pub fn get_last_pushed_timestamp(&mut self) -> gst::ClockTime {
|
||||
unsafe { ffi::gst_harness_get_last_pushed_timestamp(self.to_glib_none_mut().0) }
|
||||
}
|
||||
|
||||
pub fn get_testclock(&mut self) -> Option<TestClock> {
|
||||
unsafe { from_glib_full(ffi::gst_harness_get_testclock(self.to_glib_none_mut().0)) }
|
||||
}
|
||||
|
||||
pub fn play(&mut self) {
|
||||
unsafe {
|
||||
ffi::gst_harness_play(self.to_glib_none_mut().0);
|
||||
}
|
||||
}
|
||||
|
||||
pub fn pull(&mut self) -> Option<gst::Buffer> {
|
||||
unsafe { from_glib_full(ffi::gst_harness_pull(self.to_glib_none_mut().0)) }
|
||||
}
|
||||
|
||||
pub fn pull_event(&mut self) -> Option<gst::Event> {
|
||||
unsafe { from_glib_full(ffi::gst_harness_pull_event(self.to_glib_none_mut().0)) }
|
||||
}
|
||||
|
||||
pub fn pull_upstream_event(&mut self) -> Option<gst::Event> {
|
||||
unsafe {
|
||||
from_glib_full(ffi::gst_harness_pull_upstream_event(
|
||||
self.to_glib_none_mut().0,
|
||||
))
|
||||
}
|
||||
}
|
||||
|
||||
pub fn push(&mut self, buffer: &mut gst::Buffer) -> gst::FlowReturn {
|
||||
unsafe {
|
||||
from_glib(ffi::gst_harness_push(
|
||||
self.to_glib_none_mut().0,
|
||||
buffer.to_glib_full(),
|
||||
))
|
||||
}
|
||||
}
|
||||
|
||||
pub fn push_and_pull(&mut self, buffer: &mut gst::Buffer) -> Option<gst::Buffer> {
|
||||
unsafe {
|
||||
from_glib_full(ffi::gst_harness_push_and_pull(
|
||||
self.to_glib_none_mut().0,
|
||||
buffer.to_glib_full(),
|
||||
))
|
||||
}
|
||||
}
|
||||
|
||||
pub fn push_event(&mut self, event: &mut gst::Event) -> bool {
|
||||
unsafe {
|
||||
from_glib(ffi::gst_harness_push_event(
|
||||
self.to_glib_none_mut().0,
|
||||
event.to_glib_none_mut().0,
|
||||
))
|
||||
}
|
||||
}
|
||||
|
||||
pub fn push_from_src(&mut self) -> gst::FlowReturn {
|
||||
unsafe { from_glib(ffi::gst_harness_push_from_src(self.to_glib_none_mut().0)) }
|
||||
}
|
||||
|
||||
pub fn push_to_sink(&mut self) -> gst::FlowReturn {
|
||||
unsafe { from_glib(ffi::gst_harness_push_to_sink(self.to_glib_none_mut().0)) }
|
||||
}
|
||||
|
||||
pub fn push_upstream_event(&mut self, event: &mut gst::Event) -> bool {
|
||||
unsafe {
|
||||
from_glib(ffi::gst_harness_push_upstream_event(
|
||||
self.to_glib_none_mut().0,
|
||||
event.to_glib_none_mut().0,
|
||||
))
|
||||
}
|
||||
}
|
||||
|
||||
pub fn query_latency(&mut self) -> gst::ClockTime {
|
||||
unsafe { ffi::gst_harness_query_latency(self.to_glib_none_mut().0) }
|
||||
}
|
||||
|
||||
//pub fn set(&mut self, element_name: &str, first_property_name: &str, : /*Unknown conversion*//*Unimplemented*/Fundamental: VarArgs) {
|
||||
// unsafe { TODO: call ffi::gst_harness_set() }
|
||||
//}
|
||||
|
||||
pub fn set_blocking_push_mode(&mut self) {
|
||||
unsafe {
|
||||
ffi::gst_harness_set_blocking_push_mode(self.to_glib_none_mut().0);
|
||||
}
|
||||
}
|
||||
|
||||
pub fn set_caps(&mut self, in_: &mut gst::Caps, out: &mut gst::Caps) {
|
||||
unsafe {
|
||||
ffi::gst_harness_set_caps(
|
||||
self.to_glib_none_mut().0,
|
||||
in_.to_glib_full(),
|
||||
out.to_glib_full(),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
pub fn set_caps_str(&mut self, in_: &str, out: &str) {
|
||||
unsafe {
|
||||
ffi::gst_harness_set_caps_str(
|
||||
self.to_glib_none_mut().0,
|
||||
in_.to_glib_none().0,
|
||||
out.to_glib_none().0,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
pub fn set_drop_buffers(&mut self, drop_buffers: bool) {
|
||||
unsafe {
|
||||
ffi::gst_harness_set_drop_buffers(self.to_glib_none_mut().0, drop_buffers.to_glib());
|
||||
}
|
||||
}
|
||||
|
||||
pub fn set_forwarding(&mut self, forwarding: bool) {
|
||||
unsafe {
|
||||
ffi::gst_harness_set_forwarding(self.to_glib_none_mut().0, forwarding.to_glib());
|
||||
}
|
||||
}
|
||||
|
||||
//pub fn set_propose_allocator<'a, 'b, P: Into<Option<&'a /*Ignored*/gst::Allocator>>, Q: Into<Option<&'b /*Ignored*/gst::AllocationParams>>>(&mut self, allocator: P, params: Q) {
|
||||
// unsafe { TODO: call ffi::gst_harness_set_propose_allocator() }
|
||||
//}
|
||||
|
||||
pub fn set_sink_caps(&mut self, caps: &mut gst::Caps) {
|
||||
unsafe {
|
||||
ffi::gst_harness_set_sink_caps(self.to_glib_none_mut().0, caps.to_glib_full());
|
||||
}
|
||||
}
|
||||
|
||||
pub fn set_sink_caps_str(&mut self, str: &str) {
|
||||
unsafe {
|
||||
ffi::gst_harness_set_sink_caps_str(self.to_glib_none_mut().0, str.to_glib_none().0);
|
||||
}
|
||||
}
|
||||
|
||||
pub fn set_src_caps(&mut self, caps: &mut gst::Caps) {
|
||||
unsafe {
|
||||
ffi::gst_harness_set_src_caps(self.to_glib_none_mut().0, caps.to_glib_full());
|
||||
}
|
||||
}
|
||||
|
||||
pub fn set_src_caps_str(&mut self, str: &str) {
|
||||
unsafe {
|
||||
ffi::gst_harness_set_src_caps_str(self.to_glib_none_mut().0, str.to_glib_none().0);
|
||||
}
|
||||
}
|
||||
|
||||
pub fn set_time(&mut self, time: gst::ClockTime) -> bool {
|
||||
unsafe { from_glib(ffi::gst_harness_set_time(self.to_glib_none_mut().0, time)) }
|
||||
}
|
||||
|
||||
pub fn set_upstream_latency(&mut self, latency: gst::ClockTime) {
|
||||
unsafe {
|
||||
ffi::gst_harness_set_upstream_latency(self.to_glib_none_mut().0, latency);
|
||||
}
|
||||
}
|
||||
|
||||
pub fn sink_push_many(&mut self, pushes: i32) -> gst::FlowReturn {
|
||||
unsafe {
|
||||
from_glib(ffi::gst_harness_sink_push_many(
|
||||
self.to_glib_none_mut().0,
|
||||
pushes,
|
||||
))
|
||||
}
|
||||
}
|
||||
|
||||
pub fn src_crank_and_push_many(&mut self, cranks: i32, pushes: i32) -> gst::FlowReturn {
|
||||
unsafe {
|
||||
from_glib(ffi::gst_harness_src_crank_and_push_many(
|
||||
self.to_glib_none_mut().0,
|
||||
cranks,
|
||||
pushes,
|
||||
))
|
||||
}
|
||||
}
|
||||
|
||||
pub fn src_push_event(&mut self) -> bool {
|
||||
unsafe { from_glib(ffi::gst_harness_src_push_event(self.to_glib_none_mut().0)) }
|
||||
}
|
||||
|
||||
//pub fn stress_custom_start<'a, P: Into<Option<&'a /*Ignored*/glib::Func>>, Q: Into<Option</*Unimplemented*/Fundamental: Pointer>>>(&mut self, init: P, callback: /*Unknown conversion*//*Unimplemented*/Func, data: Q, sleep: libc::c_ulong) -> /*Ignored*/Option<HarnessThread> {
|
||||
// unsafe { TODO: call ffi::gst_harness_stress_custom_start() }
|
||||
//}
|
||||
|
||||
//pub fn stress_property_start_full(&mut self, name: &str, value: /*Ignored*/&glib::Value, sleep: libc::c_ulong) -> /*Ignored*/Option<HarnessThread> {
|
||||
// unsafe { TODO: call ffi::gst_harness_stress_property_start_full() }
|
||||
//}
|
||||
|
||||
//pub fn stress_push_buffer_start_full(&mut self, caps: &mut gst::Caps, segment: /*Ignored*/&gst::Segment, buf: &mut gst::Buffer, sleep: libc::c_ulong) -> /*Ignored*/Option<HarnessThread> {
|
||||
// unsafe { TODO: call ffi::gst_harness_stress_push_buffer_start_full() }
|
||||
//}
|
||||
|
||||
//pub fn stress_push_buffer_with_cb_start_full<P: Into<Option</*Unimplemented*/Fundamental: Pointer>>>(&mut self, caps: &mut gst::Caps, segment: /*Ignored*/&gst::Segment, func: /*Unknown conversion*//*Unimplemented*/HarnessPrepareBufferFunc, data: P, notify: /*Unknown conversion*//*Unimplemented*/DestroyNotify, sleep: libc::c_ulong) -> /*Ignored*/Option<HarnessThread> {
|
||||
// unsafe { TODO: call ffi::gst_harness_stress_push_buffer_with_cb_start_full() }
|
||||
//}
|
||||
|
||||
//pub fn stress_push_event_start_full(&mut self, event: &mut gst::Event, sleep: libc::c_ulong) -> /*Ignored*/Option<HarnessThread> {
|
||||
// unsafe { TODO: call ffi::gst_harness_stress_push_event_start_full() }
|
||||
//}
|
||||
|
||||
//pub fn stress_push_event_with_cb_start_full<P: Into<Option</*Unimplemented*/Fundamental: Pointer>>>(&mut self, func: /*Unknown conversion*//*Unimplemented*/HarnessPrepareEventFunc, data: P, notify: /*Unknown conversion*//*Unimplemented*/DestroyNotify, sleep: libc::c_ulong) -> /*Ignored*/Option<HarnessThread> {
|
||||
// unsafe { TODO: call ffi::gst_harness_stress_push_event_with_cb_start_full() }
|
||||
//}
|
||||
|
||||
//pub fn stress_push_upstream_event_start_full(&mut self, event: &mut gst::Event, sleep: libc::c_ulong) -> /*Ignored*/Option<HarnessThread> {
|
||||
// unsafe { TODO: call ffi::gst_harness_stress_push_upstream_event_start_full() }
|
||||
//}
|
||||
|
||||
//pub fn stress_push_upstream_event_with_cb_start_full<P: Into<Option</*Unimplemented*/Fundamental: Pointer>>>(&mut self, func: /*Unknown conversion*//*Unimplemented*/HarnessPrepareEventFunc, data: P, notify: /*Unknown conversion*//*Unimplemented*/DestroyNotify, sleep: libc::c_ulong) -> /*Ignored*/Option<HarnessThread> {
|
||||
// unsafe { TODO: call ffi::gst_harness_stress_push_upstream_event_with_cb_start_full() }
|
||||
//}
|
||||
|
||||
//pub fn stress_requestpad_start_full(&mut self, templ: /*Ignored*/&gst::PadTemplate, name: &str, caps: &mut gst::Caps, release: bool, sleep: libc::c_ulong) -> /*Ignored*/Option<HarnessThread> {
|
||||
// unsafe { TODO: call ffi::gst_harness_stress_requestpad_start_full() }
|
||||
//}
|
||||
|
||||
//pub fn stress_statechange_start_full(&mut self, sleep: libc::c_ulong) -> /*Ignored*/Option<HarnessThread> {
|
||||
// unsafe { TODO: call ffi::gst_harness_stress_statechange_start_full() }
|
||||
//}
|
||||
|
||||
#[cfg(any(feature = "v1_14", feature = "dox"))]
|
||||
pub fn take_all_data(&mut self) -> (u8, usize) {
|
||||
unsafe {
|
||||
let mut size = mem::uninitialized();
|
||||
let ret = ffi::gst_harness_take_all_data(self.to_glib_none_mut().0, &mut size);
|
||||
(ret, size)
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(any(feature = "v1_14", feature = "dox"))]
|
||||
pub fn take_all_data_as_buffer(&mut self) -> Option<gst::Buffer> {
|
||||
unsafe {
|
||||
from_glib_full(ffi::gst_harness_take_all_data_as_buffer(
|
||||
self.to_glib_none_mut().0,
|
||||
))
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(any(feature = "v1_14", feature = "dox"))]
|
||||
pub fn take_all_data_as_bytes(&mut self) -> Option<glib::Bytes> {
|
||||
unsafe {
|
||||
from_glib_full(ffi::gst_harness_take_all_data_as_bytes(
|
||||
self.to_glib_none_mut().0,
|
||||
))
|
||||
}
|
||||
}
|
||||
|
||||
pub fn teardown(&mut self) {
|
||||
unsafe {
|
||||
ffi::gst_harness_teardown(self.to_glib_none_mut().0);
|
||||
}
|
||||
}
|
||||
|
||||
pub fn try_pull(&mut self) -> Option<gst::Buffer> {
|
||||
unsafe { from_glib_full(ffi::gst_harness_try_pull(self.to_glib_none_mut().0)) }
|
||||
}
|
||||
|
||||
pub fn try_pull_event(&mut self) -> Option<gst::Event> {
|
||||
unsafe { from_glib_full(ffi::gst_harness_try_pull_event(self.to_glib_none_mut().0)) }
|
||||
}
|
||||
|
||||
pub fn try_pull_upstream_event(&mut self) -> Option<gst::Event> {
|
||||
unsafe {
|
||||
from_glib_full(ffi::gst_harness_try_pull_upstream_event(
|
||||
self.to_glib_none_mut().0,
|
||||
))
|
||||
}
|
||||
}
|
||||
|
||||
pub fn upstream_events_in_queue(&mut self) -> u32 {
|
||||
unsafe { ffi::gst_harness_upstream_events_in_queue(self.to_glib_none_mut().0) }
|
||||
}
|
||||
|
||||
pub fn upstream_events_received(&mut self) -> u32 {
|
||||
unsafe { ffi::gst_harness_upstream_events_received(self.to_glib_none_mut().0) }
|
||||
}
|
||||
|
||||
pub fn use_systemclock(&mut self) {
|
||||
unsafe {
|
||||
ffi::gst_harness_use_systemclock(self.to_glib_none_mut().0);
|
||||
}
|
||||
}
|
||||
|
||||
pub fn use_testclock(&mut self) {
|
||||
unsafe {
|
||||
ffi::gst_harness_use_testclock(self.to_glib_none_mut().0);
|
||||
}
|
||||
}
|
||||
|
||||
pub fn wait_for_clock_id_waits(&mut self, waits: u32, timeout: u32) -> bool {
|
||||
unsafe {
|
||||
from_glib(ffi::gst_harness_wait_for_clock_id_waits(
|
||||
self.to_glib_none_mut().0,
|
||||
waits,
|
||||
timeout,
|
||||
))
|
||||
}
|
||||
}
|
||||
|
||||
pub fn new(element_name: &str) -> Option<Harness> {
|
||||
assert_initialized_main_thread!();
|
||||
unsafe { from_glib_full(ffi::gst_harness_new(element_name.to_glib_none().0)) }
|
||||
}
|
||||
|
||||
pub fn new_empty() -> Option<Harness> {
|
||||
assert_initialized_main_thread!();
|
||||
unsafe { from_glib_full(ffi::gst_harness_new_empty()) }
|
||||
}
|
||||
|
||||
pub fn new_full<
|
||||
'a,
|
||||
'b,
|
||||
'c,
|
||||
'd,
|
||||
P: IsA<gst::Element>,
|
||||
Q: Into<Option<&'a gst::StaticPadTemplate>>,
|
||||
R: Into<Option<&'b str>>,
|
||||
S: Into<Option<&'c gst::StaticPadTemplate>>,
|
||||
T: Into<Option<&'d str>>,
|
||||
>(
|
||||
element: &P,
|
||||
hsrc: Q,
|
||||
element_sinkpad_name: R,
|
||||
hsink: S,
|
||||
element_srcpad_name: T,
|
||||
) -> Option<Harness> {
|
||||
assert_initialized_main_thread!();
|
||||
let hsrc = hsrc.into();
|
||||
let element_sinkpad_name = element_sinkpad_name.into();
|
||||
let element_sinkpad_name = element_sinkpad_name.to_glib_none();
|
||||
let hsink = hsink.into();
|
||||
let element_srcpad_name = element_srcpad_name.into();
|
||||
let element_srcpad_name = element_srcpad_name.to_glib_none();
|
||||
unsafe {
|
||||
from_glib_full(ffi::gst_harness_new_full(
|
||||
element.to_glib_none().0,
|
||||
hsrc.to_glib_none_mut().0,
|
||||
element_sinkpad_name.0,
|
||||
hsink.to_glib_none_mut().0,
|
||||
element_srcpad_name.0,
|
||||
))
|
||||
}
|
||||
}
|
||||
|
||||
pub fn new_parse(launchline: &str) -> Option<Harness> {
|
||||
assert_initialized_main_thread!();
|
||||
unsafe { from_glib_full(ffi::gst_harness_new_parse(launchline.to_glib_none().0)) }
|
||||
}
|
||||
|
||||
pub fn new_with_element<
|
||||
'a,
|
||||
'b,
|
||||
P: IsA<gst::Element>,
|
||||
Q: Into<Option<&'a str>>,
|
||||
R: Into<Option<&'b str>>,
|
||||
>(
|
||||
element: &P,
|
||||
element_sinkpad_name: Q,
|
||||
element_srcpad_name: R,
|
||||
) -> Option<Harness> {
|
||||
assert_initialized_main_thread!();
|
||||
let element_sinkpad_name = element_sinkpad_name.into();
|
||||
let element_sinkpad_name = element_sinkpad_name.to_glib_none();
|
||||
let element_srcpad_name = element_srcpad_name.into();
|
||||
let element_srcpad_name = element_srcpad_name.to_glib_none();
|
||||
unsafe {
|
||||
from_glib_full(ffi::gst_harness_new_with_element(
|
||||
element.to_glib_none().0,
|
||||
element_sinkpad_name.0,
|
||||
element_srcpad_name.0,
|
||||
))
|
||||
}
|
||||
}
|
||||
|
||||
pub fn new_with_padnames<'a, 'b, P: Into<Option<&'a str>>, Q: Into<Option<&'b str>>>(
|
||||
element_name: &str,
|
||||
element_sinkpad_name: P,
|
||||
element_srcpad_name: Q,
|
||||
) -> Option<Harness> {
|
||||
assert_initialized_main_thread!();
|
||||
let element_sinkpad_name = element_sinkpad_name.into();
|
||||
let element_sinkpad_name = element_sinkpad_name.to_glib_none();
|
||||
let element_srcpad_name = element_srcpad_name.into();
|
||||
let element_srcpad_name = element_srcpad_name.to_glib_none();
|
||||
unsafe {
|
||||
from_glib_full(ffi::gst_harness_new_with_padnames(
|
||||
element_name.to_glib_none().0,
|
||||
element_sinkpad_name.0,
|
||||
element_srcpad_name.0,
|
||||
))
|
||||
}
|
||||
}
|
||||
|
||||
pub fn new_with_templates<
|
||||
'a,
|
||||
'b,
|
||||
P: Into<Option<&'a gst::StaticPadTemplate>>,
|
||||
Q: Into<Option<&'b gst::StaticPadTemplate>>,
|
||||
>(
|
||||
element_name: &str,
|
||||
hsrc: P,
|
||||
hsink: Q,
|
||||
) -> Option<Harness> {
|
||||
assert_initialized_main_thread!();
|
||||
let hsrc = hsrc.into();
|
||||
let hsink = hsink.into();
|
||||
unsafe {
|
||||
from_glib_full(ffi::gst_harness_new_with_templates(
|
||||
element_name.to_glib_none().0,
|
||||
hsrc.to_glib_none_mut().0,
|
||||
hsink.to_glib_none_mut().0,
|
||||
))
|
||||
}
|
||||
}
|
||||
|
||||
//pub fn stress_thread_stop(t: /*Ignored*/&mut HarnessThread) -> u32 {
|
||||
// unsafe { TODO: call ffi::gst_harness_stress_thread_stop() }
|
||||
//}
|
||||
}
|
Loading…
Reference in a new issue