2017-07-29 13:19:15 +00:00
|
|
|
// Copyright (C) 2017 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-25 08:10:06 +00:00
|
|
|
use std::ptr;
|
2017-07-29 13:19:15 +00:00
|
|
|
use Buffer;
|
2017-08-14 19:21:11 +00:00
|
|
|
use BufferList;
|
2018-10-28 22:57:21 +00:00
|
|
|
use FlowError;
|
2018-04-01 08:30:03 +00:00
|
|
|
use FlowReturn;
|
2019-01-08 16:13:37 +00:00
|
|
|
use FlowSuccess;
|
2018-04-01 08:30:03 +00:00
|
|
|
use Object;
|
|
|
|
use Pad;
|
|
|
|
use ProxyPad;
|
2017-07-29 13:19:15 +00:00
|
|
|
|
2019-01-16 11:32:58 +00:00
|
|
|
use glib::object::IsA;
|
2017-07-31 11:16:42 +00:00
|
|
|
use glib::translate::{from_glib, from_glib_full, ToGlibPtr};
|
2017-07-29 13:19:15 +00:00
|
|
|
|
2019-03-19 07:58:20 +00:00
|
|
|
use gst_sys;
|
2017-07-29 13:19:15 +00:00
|
|
|
|
2020-04-23 12:35:21 +00:00
|
|
|
impl ProxyPad {
|
|
|
|
pub fn chain_default<O: IsA<ProxyPad>, P: IsA<Object>>(
|
|
|
|
pad: &O,
|
2019-05-23 20:28:07 +00:00
|
|
|
parent: Option<&P>,
|
2017-07-31 11:16:42 +00:00
|
|
|
buffer: Buffer,
|
2019-01-08 16:13:37 +00:00
|
|
|
) -> Result<FlowSuccess, FlowError> {
|
2017-07-29 13:19:15 +00:00
|
|
|
skip_assert_initialized!();
|
2019-01-08 16:13:37 +00:00
|
|
|
let ret: FlowReturn = unsafe {
|
2019-03-19 07:58:20 +00:00
|
|
|
from_glib(gst_sys::gst_proxy_pad_chain_default(
|
2020-04-23 12:35:21 +00:00
|
|
|
pad.as_ptr() as *mut gst_sys::GstPad,
|
2019-01-16 11:32:58 +00:00
|
|
|
parent.map(|p| p.as_ref()).to_glib_none().0,
|
2017-07-31 11:16:42 +00:00
|
|
|
buffer.into_ptr(),
|
|
|
|
))
|
2019-01-08 16:13:37 +00:00
|
|
|
};
|
|
|
|
ret.into_result()
|
2017-07-29 13:19:15 +00:00
|
|
|
}
|
|
|
|
|
2020-04-23 12:35:21 +00:00
|
|
|
pub fn chain_list_default<O: IsA<ProxyPad>, P: IsA<Object>>(
|
|
|
|
pad: &O,
|
2019-05-23 20:28:07 +00:00
|
|
|
parent: Option<&P>,
|
2017-08-14 19:21:11 +00:00
|
|
|
list: BufferList,
|
2019-01-08 16:13:37 +00:00
|
|
|
) -> Result<FlowSuccess, FlowError> {
|
2017-08-14 19:21:11 +00:00
|
|
|
skip_assert_initialized!();
|
2019-01-08 16:13:37 +00:00
|
|
|
let ret: FlowReturn = unsafe {
|
2019-03-19 07:58:20 +00:00
|
|
|
from_glib(gst_sys::gst_proxy_pad_chain_list_default(
|
2020-04-23 12:35:21 +00:00
|
|
|
pad.as_ptr() as *mut gst_sys::GstPad,
|
2019-01-16 11:32:58 +00:00
|
|
|
parent.map(|p| p.as_ref()).to_glib_none().0,
|
2017-08-14 19:21:11 +00:00
|
|
|
list.into_ptr(),
|
|
|
|
))
|
2019-01-08 16:13:37 +00:00
|
|
|
};
|
|
|
|
ret.into_result()
|
2017-08-14 19:21:11 +00:00
|
|
|
}
|
|
|
|
|
2020-04-23 12:35:21 +00:00
|
|
|
pub fn getrange_default<O: IsA<ProxyPad>, P: IsA<Object>>(
|
|
|
|
pad: &O,
|
2019-05-23 20:28:07 +00:00
|
|
|
parent: Option<&P>,
|
2017-07-31 11:16:42 +00:00
|
|
|
offset: u64,
|
|
|
|
size: u32,
|
2018-10-28 22:57:21 +00:00
|
|
|
) -> Result<Buffer, FlowError> {
|
2017-07-29 13:19:15 +00:00
|
|
|
skip_assert_initialized!();
|
|
|
|
unsafe {
|
|
|
|
let mut buffer = ptr::null_mut();
|
2019-03-19 07:58:20 +00:00
|
|
|
let ret: FlowReturn = from_glib(gst_sys::gst_proxy_pad_getrange_default(
|
2020-04-23 12:35:21 +00:00
|
|
|
pad.as_ptr() as *mut gst_sys::GstPad,
|
2019-05-23 20:28:07 +00:00
|
|
|
parent.map(|p| p.as_ref()).to_glib_none().0,
|
2017-07-31 11:16:42 +00:00
|
|
|
offset,
|
|
|
|
size,
|
|
|
|
&mut buffer,
|
|
|
|
));
|
2018-10-28 22:57:21 +00:00
|
|
|
ret.into_result_value(|| from_glib_full(buffer))
|
2017-07-29 13:19:15 +00:00
|
|
|
}
|
|
|
|
}
|
2017-09-17 15:41:02 +00:00
|
|
|
|
2020-04-23 12:35:21 +00:00
|
|
|
pub fn iterate_internal_links_default<O: IsA<ProxyPad>, P: IsA<Object>>(
|
|
|
|
pad: &O,
|
2019-05-23 20:28:07 +00:00
|
|
|
parent: Option<&P>,
|
2017-10-17 09:06:51 +00:00
|
|
|
) -> Option<::Iterator<Pad>> {
|
2017-09-17 15:41:02 +00:00
|
|
|
skip_assert_initialized!();
|
|
|
|
unsafe {
|
2019-03-19 07:58:20 +00:00
|
|
|
from_glib_full(gst_sys::gst_proxy_pad_iterate_internal_links_default(
|
2020-04-23 12:35:21 +00:00
|
|
|
pad.as_ptr() as *mut gst_sys::GstPad,
|
2019-01-16 11:32:58 +00:00
|
|
|
parent.map(|p| p.as_ref()).to_glib_none().0,
|
2017-10-17 09:06:51 +00:00
|
|
|
))
|
2017-09-17 15:41:02 +00:00
|
|
|
}
|
|
|
|
}
|
2017-07-29 13:19:15 +00:00
|
|
|
}
|