forked from mirrors/gstreamer-rs
2384 lines
69 KiB
Rust
2384 lines
69 KiB
Rust
// Take a look at the license at the top of the repository in the LICENSE file.
|
|
|
|
use crate::structure::*;
|
|
use crate::ClockTime;
|
|
use crate::GenericFormattedValue;
|
|
|
|
use std::cmp;
|
|
use std::ffi::CStr;
|
|
use std::fmt;
|
|
use std::mem;
|
|
use std::num::NonZeroU32;
|
|
use std::ops::Deref;
|
|
use std::ptr;
|
|
|
|
use glib::translate::{
|
|
from_glib, from_glib_full, from_glib_none, try_from_glib, IntoGlib, ToGlibPtr,
|
|
};
|
|
use glib::value::ToSendValue;
|
|
|
|
#[cfg(any(feature = "v1_10", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_10")))]
|
|
use glib::translate::FromGlibPtrContainer;
|
|
|
|
use crate::EventType;
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
|
pub struct Seqnum(pub(crate) NonZeroU32);
|
|
|
|
impl Seqnum {
|
|
#[doc(alias = "gst_util_seqnum_next")]
|
|
pub fn next() -> Self {
|
|
unsafe {
|
|
let v = ffi::gst_util_seqnum_next();
|
|
if v == 0 {
|
|
Seqnum::next()
|
|
} else {
|
|
Seqnum(NonZeroU32::new_unchecked(v))
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
impl IntoGlib for Seqnum {
|
|
type GlibType = u32;
|
|
|
|
fn into_glib(self) -> u32 {
|
|
self.0.get()
|
|
}
|
|
}
|
|
|
|
impl cmp::PartialOrd for Seqnum {
|
|
fn partial_cmp(&self, other: &Seqnum) -> Option<cmp::Ordering> {
|
|
Some(self.cmp(other))
|
|
}
|
|
}
|
|
|
|
impl cmp::Ord for Seqnum {
|
|
fn cmp(&self, other: &Seqnum) -> cmp::Ordering {
|
|
unsafe {
|
|
let ret = ffi::gst_util_seqnum_compare(self.0.get(), other.0.get());
|
|
ret.cmp(&0)
|
|
}
|
|
}
|
|
}
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
|
pub struct GroupId(pub(crate) NonZeroU32);
|
|
|
|
impl GroupId {
|
|
#[doc(alias = "gst_util_group_id_next")]
|
|
pub fn next() -> Self {
|
|
unsafe {
|
|
let v = ffi::gst_util_group_id_next();
|
|
if v == 0 {
|
|
GroupId::next()
|
|
} else {
|
|
GroupId(NonZeroU32::new_unchecked(v))
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
impl EventType {
|
|
pub fn is_upstream(self) -> bool {
|
|
(self.into_glib() as u32) & ffi::GST_EVENT_TYPE_UPSTREAM != 0
|
|
}
|
|
|
|
pub fn is_downstream(self) -> bool {
|
|
(self.into_glib() as u32) & ffi::GST_EVENT_TYPE_DOWNSTREAM != 0
|
|
}
|
|
|
|
pub fn is_serialized(self) -> bool {
|
|
(self.into_glib() as u32) & ffi::GST_EVENT_TYPE_SERIALIZED != 0
|
|
}
|
|
|
|
pub fn is_sticky(self) -> bool {
|
|
(self.into_glib() as u32) & ffi::GST_EVENT_TYPE_STICKY != 0
|
|
}
|
|
|
|
pub fn is_sticky_multi(self) -> bool {
|
|
(self.into_glib() as u32) & ffi::GST_EVENT_TYPE_STICKY_MULTI != 0
|
|
}
|
|
}
|
|
|
|
impl PartialOrd for EventType {
|
|
fn partial_cmp(&self, other: &Self) -> Option<cmp::Ordering> {
|
|
if !self.is_serialized() || !other.is_serialized() {
|
|
return None;
|
|
}
|
|
|
|
let v1 = self.into_glib() as u32;
|
|
let v2 = other.into_glib() as u32;
|
|
|
|
let stream_start = ffi::GST_EVENT_STREAM_START as u32;
|
|
let segment = ffi::GST_EVENT_SEGMENT as u32;
|
|
let eos = ffi::GST_EVENT_EOS as u32;
|
|
|
|
// Strictly ordered range between stream_start and segment,
|
|
// and EOS is bigger than everything else
|
|
if v1 >= stream_start && v1 <= segment || v2 >= stream_start && v2 <= segment {
|
|
Some(v1.cmp(&v2))
|
|
// If one is EOS, the other is definitely less or equal
|
|
} else if v1 == eos || v2 == eos {
|
|
if v1 == v2 {
|
|
Some(cmp::Ordering::Equal)
|
|
} else if v1 == eos {
|
|
Some(cmp::Ordering::Greater)
|
|
} else {
|
|
Some(cmp::Ordering::Less)
|
|
}
|
|
} else {
|
|
None
|
|
}
|
|
}
|
|
}
|
|
|
|
mini_object_wrapper!(Event, EventRef, ffi::GstEvent, || {
|
|
ffi::gst_event_get_type()
|
|
});
|
|
|
|
impl EventRef {
|
|
#[doc(alias = "get_seqnum")]
|
|
#[doc(alias = "gst_event_get_seqnum")]
|
|
pub fn seqnum(&self) -> Seqnum {
|
|
unsafe {
|
|
let seqnum = ffi::gst_event_get_seqnum(self.as_mut_ptr());
|
|
assert_ne!(seqnum, 0);
|
|
Seqnum(NonZeroU32::new_unchecked(seqnum))
|
|
}
|
|
}
|
|
|
|
#[doc(alias = "get_running_time_offset")]
|
|
#[doc(alias = "gst_event_get_running_time_offset")]
|
|
pub fn running_time_offset(&self) -> i64 {
|
|
unsafe { ffi::gst_event_get_running_time_offset(self.as_mut_ptr()) }
|
|
}
|
|
|
|
#[doc(alias = "gst_event_set_running_time_offset")]
|
|
pub fn set_running_time_offset(&mut self, offset: i64) {
|
|
unsafe { ffi::gst_event_set_running_time_offset(self.as_mut_ptr(), offset) }
|
|
}
|
|
|
|
#[doc(alias = "get_structure")]
|
|
#[doc(alias = "gst_event_get_structure")]
|
|
pub fn structure(&self) -> Option<&StructureRef> {
|
|
unsafe {
|
|
let structure = ffi::gst_event_get_structure(self.as_mut_ptr());
|
|
if structure.is_null() {
|
|
None
|
|
} else {
|
|
Some(StructureRef::from_glib_borrow(structure))
|
|
}
|
|
}
|
|
}
|
|
|
|
pub fn structure_mut(&mut self) -> &mut StructureRef {
|
|
unsafe {
|
|
StructureRef::from_glib_borrow_mut(ffi::gst_event_writable_structure(self.as_mut_ptr()))
|
|
}
|
|
}
|
|
|
|
pub fn is_upstream(&self) -> bool {
|
|
self.type_().is_upstream()
|
|
}
|
|
|
|
pub fn is_downstream(&self) -> bool {
|
|
self.type_().is_downstream()
|
|
}
|
|
|
|
pub fn is_serialized(&self) -> bool {
|
|
self.type_().is_serialized()
|
|
}
|
|
|
|
pub fn is_sticky(&self) -> bool {
|
|
self.type_().is_sticky()
|
|
}
|
|
|
|
pub fn is_sticky_multi(&self) -> bool {
|
|
self.type_().is_sticky_multi()
|
|
}
|
|
|
|
#[doc(alias = "get_type")]
|
|
pub fn type_(&self) -> EventType {
|
|
unsafe { from_glib((*self.as_ptr()).type_) }
|
|
}
|
|
|
|
pub fn view(&self) -> EventView<&EventRef> {
|
|
let type_ = unsafe { (*self.as_ptr()).type_ };
|
|
|
|
match type_ {
|
|
ffi::GST_EVENT_FLUSH_START => EventView::FlushStart(FlushStart(self)),
|
|
ffi::GST_EVENT_FLUSH_STOP => EventView::FlushStop(FlushStop(self)),
|
|
ffi::GST_EVENT_STREAM_START => EventView::StreamStart(StreamStart(self)),
|
|
ffi::GST_EVENT_CAPS => EventView::Caps(Caps(self)),
|
|
ffi::GST_EVENT_SEGMENT => EventView::Segment(Segment(self)),
|
|
#[cfg(any(feature = "v1_10", feature = "dox"))]
|
|
ffi::GST_EVENT_STREAM_COLLECTION => EventView::StreamCollection(StreamCollection(self)),
|
|
ffi::GST_EVENT_TAG => EventView::Tag(Tag(self)),
|
|
ffi::GST_EVENT_BUFFERSIZE => EventView::Buffersize(Buffersize(self)),
|
|
ffi::GST_EVENT_SINK_MESSAGE => EventView::SinkMessage(SinkMessage(self)),
|
|
#[cfg(any(feature = "v1_10", feature = "dox"))]
|
|
ffi::GST_EVENT_STREAM_GROUP_DONE => EventView::StreamGroupDone(StreamGroupDone(self)),
|
|
ffi::GST_EVENT_EOS => EventView::Eos(Eos(self)),
|
|
ffi::GST_EVENT_TOC => EventView::Toc(Toc(self)),
|
|
ffi::GST_EVENT_PROTECTION => EventView::Protection(Protection(self)),
|
|
ffi::GST_EVENT_SEGMENT_DONE => EventView::SegmentDone(SegmentDone(self)),
|
|
ffi::GST_EVENT_GAP => EventView::Gap(Gap(self)),
|
|
#[cfg(any(feature = "v1_18", feature = "dox"))]
|
|
ffi::GST_EVENT_INSTANT_RATE_CHANGE => {
|
|
EventView::InstantRateChange(InstantRateChange(self))
|
|
}
|
|
ffi::GST_EVENT_QOS => EventView::Qos(Qos(self)),
|
|
ffi::GST_EVENT_SEEK => EventView::Seek(Seek(self)),
|
|
ffi::GST_EVENT_NAVIGATION => EventView::Navigation(Navigation(self)),
|
|
ffi::GST_EVENT_LATENCY => EventView::Latency(Latency(self)),
|
|
ffi::GST_EVENT_STEP => EventView::Step(Step(self)),
|
|
ffi::GST_EVENT_RECONFIGURE => EventView::Reconfigure(Reconfigure(self)),
|
|
ffi::GST_EVENT_TOC_SELECT => EventView::TocSelect(TocSelect(self)),
|
|
#[cfg(any(feature = "v1_10", feature = "dox"))]
|
|
ffi::GST_EVENT_SELECT_STREAMS => EventView::SelectStreams(SelectStreams(self)),
|
|
#[cfg(any(feature = "v1_18", feature = "dox"))]
|
|
ffi::GST_EVENT_INSTANT_RATE_SYNC_TIME => {
|
|
EventView::InstantRateSyncTime(InstantRateSyncTime(self))
|
|
}
|
|
ffi::GST_EVENT_CUSTOM_UPSTREAM => EventView::CustomUpstream(CustomUpstream(self)),
|
|
ffi::GST_EVENT_CUSTOM_DOWNSTREAM => EventView::CustomDownstream(CustomDownstream(self)),
|
|
ffi::GST_EVENT_CUSTOM_DOWNSTREAM_OOB => {
|
|
EventView::CustomDownstreamOob(CustomDownstreamOob(self))
|
|
}
|
|
ffi::GST_EVENT_CUSTOM_DOWNSTREAM_STICKY => {
|
|
EventView::CustomDownstreamSticky(CustomDownstreamSticky(self))
|
|
}
|
|
ffi::GST_EVENT_CUSTOM_BOTH => EventView::CustomBoth(CustomBoth(self)),
|
|
ffi::GST_EVENT_CUSTOM_BOTH_OOB => EventView::CustomBothOob(CustomBothOob(self)),
|
|
_ => EventView::Other(Other(self)),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl fmt::Debug for Event {
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
EventRef::fmt(self, f)
|
|
}
|
|
}
|
|
|
|
impl fmt::Debug for EventRef {
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
f.debug_struct("Event")
|
|
.field("ptr", unsafe { &self.as_ptr() })
|
|
.field("type", &self.type_().name())
|
|
.field("seqnum", &self.seqnum())
|
|
.field("structure", &self.structure())
|
|
.finish()
|
|
}
|
|
}
|
|
|
|
pub unsafe trait AsPtr {
|
|
unsafe fn as_ptr(&self) -> *mut ffi::GstEvent;
|
|
}
|
|
|
|
unsafe impl AsPtr for Event {
|
|
unsafe fn as_ptr(&self) -> *mut ffi::GstEvent {
|
|
EventRef::as_ptr(self) as *mut ffi::GstEvent
|
|
}
|
|
}
|
|
|
|
unsafe impl<'a> AsPtr for &'a EventRef {
|
|
unsafe fn as_ptr(&self) -> *mut ffi::GstEvent {
|
|
EventRef::as_ptr(self) as *mut ffi::GstEvent
|
|
}
|
|
}
|
|
|
|
pub trait StickyEventType {
|
|
const TYPE: EventType;
|
|
|
|
unsafe fn from_event(event: Event) -> Self;
|
|
}
|
|
|
|
#[derive(Debug)]
|
|
#[non_exhaustive]
|
|
pub enum EventView<T> {
|
|
FlushStart(FlushStart<T>),
|
|
FlushStop(FlushStop<T>),
|
|
StreamStart(StreamStart<T>),
|
|
Caps(Caps<T>),
|
|
Segment(Segment<T>),
|
|
#[cfg(any(feature = "v1_10", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_10")))]
|
|
StreamCollection(StreamCollection<T>),
|
|
Tag(Tag<T>),
|
|
Buffersize(Buffersize<T>),
|
|
SinkMessage(SinkMessage<T>),
|
|
#[cfg(any(feature = "v1_10", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_10")))]
|
|
StreamGroupDone(StreamGroupDone<T>),
|
|
Eos(Eos<T>),
|
|
Toc(Toc<T>),
|
|
Protection(Protection<T>),
|
|
SegmentDone(SegmentDone<T>),
|
|
Gap(Gap<T>),
|
|
#[cfg(any(feature = "v1_18", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_18")))]
|
|
InstantRateChange(InstantRateChange<T>),
|
|
Qos(Qos<T>),
|
|
Seek(Seek<T>),
|
|
Navigation(Navigation<T>),
|
|
Latency(Latency<T>),
|
|
Step(Step<T>),
|
|
Reconfigure(Reconfigure<T>),
|
|
TocSelect(TocSelect<T>),
|
|
#[cfg(any(feature = "v1_10", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_10")))]
|
|
SelectStreams(SelectStreams<T>),
|
|
#[cfg(any(feature = "v1_18", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_18")))]
|
|
InstantRateSyncTime(InstantRateSyncTime<T>),
|
|
CustomUpstream(CustomUpstream<T>),
|
|
CustomDownstream(CustomDownstream<T>),
|
|
CustomDownstreamOob(CustomDownstreamOob<T>),
|
|
CustomDownstreamSticky(CustomDownstreamSticky<T>),
|
|
CustomBoth(CustomBoth<T>),
|
|
CustomBothOob(CustomBothOob<T>),
|
|
Other(Other<T>),
|
|
}
|
|
|
|
macro_rules! declare_concrete_event {
|
|
(@sticky $name:ident, $param:ident) => {
|
|
declare_concrete_event!($name, $param);
|
|
|
|
impl StickyEventType for $name<Event> {
|
|
const TYPE: EventType = EventType::$name;
|
|
|
|
unsafe fn from_event(event: Event) -> Self {
|
|
Self(event)
|
|
}
|
|
}
|
|
};
|
|
($name:ident, $param:ident) => {
|
|
#[derive(Debug)]
|
|
pub struct $name<$param>($param);
|
|
|
|
impl<'a> $name<&'a EventRef> {
|
|
pub fn event(&self) -> &EventRef {
|
|
self.0
|
|
}
|
|
}
|
|
|
|
impl<'a> Deref for $name<&'a EventRef> {
|
|
type Target = EventRef;
|
|
|
|
fn deref(&self) -> &Self::Target {
|
|
self.0
|
|
}
|
|
}
|
|
|
|
impl Deref for $name<Event> {
|
|
type Target = EventRef;
|
|
|
|
fn deref(&self) -> &Self::Target {
|
|
&self.0
|
|
}
|
|
}
|
|
|
|
impl $name<Event> {
|
|
pub fn get_mut(&mut self) -> Option<&mut EventRef> {
|
|
self.0.get_mut()
|
|
}
|
|
}
|
|
|
|
impl From<$name<Event>> for Event {
|
|
fn from(concrete: $name<Event>) -> Self {
|
|
skip_assert_initialized!();
|
|
concrete.0
|
|
}
|
|
}
|
|
};
|
|
}
|
|
|
|
declare_concrete_event!(FlushStart, T);
|
|
impl FlushStart<Event> {
|
|
#[allow(clippy::new_ret_no_self)]
|
|
pub fn new() -> Event {
|
|
skip_assert_initialized!();
|
|
Self::builder().build()
|
|
}
|
|
|
|
pub fn builder<'a>() -> FlushStartBuilder<'a> {
|
|
assert_initialized_main_thread!();
|
|
FlushStartBuilder::new()
|
|
}
|
|
}
|
|
|
|
declare_concrete_event!(FlushStop, T);
|
|
impl FlushStop<Event> {
|
|
#[allow(clippy::new_ret_no_self)]
|
|
pub fn new(reset_time: bool) -> Event {
|
|
skip_assert_initialized!();
|
|
Self::builder(reset_time).build()
|
|
}
|
|
|
|
pub fn builder<'a>(reset_time: bool) -> FlushStopBuilder<'a> {
|
|
assert_initialized_main_thread!();
|
|
FlushStopBuilder::new(reset_time)
|
|
}
|
|
}
|
|
|
|
impl<T: AsPtr> FlushStop<T> {
|
|
#[doc(alias = "get_reset_time")]
|
|
pub fn resets_time(&self) -> bool {
|
|
unsafe {
|
|
let mut reset_time = mem::MaybeUninit::uninit();
|
|
|
|
ffi::gst_event_parse_flush_stop(self.0.as_ptr(), reset_time.as_mut_ptr());
|
|
|
|
from_glib(reset_time.assume_init())
|
|
}
|
|
}
|
|
}
|
|
|
|
declare_concrete_event!(@sticky StreamStart, T);
|
|
impl StreamStart<Event> {
|
|
#[allow(clippy::new_ret_no_self)]
|
|
pub fn new(stream_id: &str) -> Event {
|
|
skip_assert_initialized!();
|
|
Self::builder(stream_id).build()
|
|
}
|
|
|
|
pub fn builder(stream_id: &str) -> StreamStartBuilder {
|
|
assert_initialized_main_thread!();
|
|
StreamStartBuilder::new(stream_id)
|
|
}
|
|
}
|
|
|
|
impl<T: AsPtr> StreamStart<T> {
|
|
#[doc(alias = "get_stream_id")]
|
|
pub fn stream_id(&self) -> &str {
|
|
unsafe {
|
|
let mut stream_id = ptr::null();
|
|
|
|
ffi::gst_event_parse_stream_start(self.0.as_ptr(), &mut stream_id);
|
|
CStr::from_ptr(stream_id).to_str().unwrap()
|
|
}
|
|
}
|
|
|
|
#[doc(alias = "get_stream_flags")]
|
|
#[doc(alias = "gst_event_parse_stream_flags")]
|
|
pub fn stream_flags(&self) -> crate::StreamFlags {
|
|
unsafe {
|
|
let mut stream_flags = mem::MaybeUninit::uninit();
|
|
|
|
ffi::gst_event_parse_stream_flags(self.0.as_ptr(), stream_flags.as_mut_ptr());
|
|
|
|
from_glib(stream_flags.assume_init())
|
|
}
|
|
}
|
|
|
|
#[doc(alias = "get_group_id")]
|
|
#[doc(alias = "gst_event_parse_group_id")]
|
|
pub fn group_id(&self) -> Option<GroupId> {
|
|
unsafe {
|
|
let mut group_id = mem::MaybeUninit::uninit();
|
|
|
|
ffi::gst_event_parse_group_id(self.0.as_ptr(), group_id.as_mut_ptr());
|
|
|
|
let group_id = group_id.assume_init();
|
|
if group_id == 0 {
|
|
None
|
|
} else {
|
|
Some(GroupId(NonZeroU32::new_unchecked(group_id)))
|
|
}
|
|
}
|
|
}
|
|
|
|
#[cfg(any(feature = "v1_10", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_10")))]
|
|
#[doc(alias = "get_stream")]
|
|
#[doc(alias = "gst_event_parse_stream")]
|
|
pub fn stream(&self) -> Option<crate::Stream> {
|
|
unsafe {
|
|
let mut stream = ptr::null_mut();
|
|
ffi::gst_event_parse_stream(self.0.as_ptr(), &mut stream);
|
|
from_glib_full(stream)
|
|
}
|
|
}
|
|
}
|
|
|
|
declare_concrete_event!(@sticky Caps, T);
|
|
impl Caps<Event> {
|
|
#[allow(clippy::new_ret_no_self)]
|
|
pub fn new(caps: &crate::Caps) -> Event {
|
|
skip_assert_initialized!();
|
|
Self::builder(caps).build()
|
|
}
|
|
|
|
pub fn builder(caps: &crate::Caps) -> CapsBuilder {
|
|
assert_initialized_main_thread!();
|
|
CapsBuilder::new(caps)
|
|
}
|
|
}
|
|
|
|
impl<T: AsPtr> Caps<T> {
|
|
#[doc(alias = "get_caps")]
|
|
#[doc(alias = "gst_event_parse_caps")]
|
|
pub fn caps(&self) -> &crate::CapsRef {
|
|
unsafe {
|
|
let mut caps = ptr::null_mut();
|
|
|
|
ffi::gst_event_parse_caps(self.0.as_ptr(), &mut caps);
|
|
crate::CapsRef::from_ptr(caps)
|
|
}
|
|
}
|
|
|
|
#[doc(alias = "get_caps_owned")]
|
|
pub fn caps_owned(&self) -> crate::Caps {
|
|
unsafe { from_glib_none(self.caps().as_ptr()) }
|
|
}
|
|
}
|
|
|
|
declare_concrete_event!(@sticky Segment, T);
|
|
impl Segment<Event> {
|
|
#[allow(clippy::new_ret_no_self)]
|
|
pub fn new<F: crate::FormattedValueIntrinsic>(segment: &crate::FormattedSegment<F>) -> Event {
|
|
skip_assert_initialized!();
|
|
Self::builder(segment).build()
|
|
}
|
|
|
|
pub fn builder<F: crate::FormattedValueIntrinsic>(
|
|
segment: &crate::FormattedSegment<F>,
|
|
) -> SegmentBuilder {
|
|
assert_initialized_main_thread!();
|
|
SegmentBuilder::new(segment.as_ref())
|
|
}
|
|
}
|
|
|
|
impl<T: AsPtr> Segment<T> {
|
|
#[doc(alias = "get_segment")]
|
|
#[doc(alias = "gst_event_parse_segment")]
|
|
pub fn segment(&self) -> &crate::Segment {
|
|
unsafe {
|
|
let mut segment = ptr::null();
|
|
|
|
ffi::gst_event_parse_segment(self.0.as_ptr(), &mut segment);
|
|
&*(segment as *mut ffi::GstSegment as *mut crate::Segment)
|
|
}
|
|
}
|
|
}
|
|
|
|
#[cfg(any(feature = "v1_10", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_10")))]
|
|
declare_concrete_event!(@sticky StreamCollection, T);
|
|
#[cfg(any(feature = "v1_10", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_10")))]
|
|
impl StreamCollection<Event> {
|
|
#[cfg(any(feature = "v1_10", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_10")))]
|
|
#[allow(clippy::new_ret_no_self)]
|
|
pub fn new(stream_collection: &crate::StreamCollection) -> Event {
|
|
skip_assert_initialized!();
|
|
Self::builder(stream_collection).build()
|
|
}
|
|
|
|
#[cfg(any(feature = "v1_10", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_10")))]
|
|
pub fn builder(stream_collection: &crate::StreamCollection) -> StreamCollectionBuilder {
|
|
assert_initialized_main_thread!();
|
|
StreamCollectionBuilder::new(stream_collection)
|
|
}
|
|
}
|
|
|
|
#[cfg(any(feature = "v1_10", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_10")))]
|
|
impl<T: AsPtr> StreamCollection<T> {
|
|
#[cfg(any(feature = "v1_10", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_10")))]
|
|
#[doc(alias = "get_stream_collection")]
|
|
#[doc(alias = "gst_event_parse_stream_collection")]
|
|
pub fn stream_collection(&self) -> crate::StreamCollection {
|
|
unsafe {
|
|
let mut stream_collection = ptr::null_mut();
|
|
|
|
ffi::gst_event_parse_stream_collection(self.0.as_ptr(), &mut stream_collection);
|
|
from_glib_full(stream_collection)
|
|
}
|
|
}
|
|
}
|
|
|
|
declare_concrete_event!(@sticky Tag, T);
|
|
impl Tag<Event> {
|
|
#[allow(clippy::new_ret_no_self)]
|
|
pub fn new(tags: crate::TagList) -> Event {
|
|
skip_assert_initialized!();
|
|
Self::builder(tags).build()
|
|
}
|
|
|
|
pub fn builder<'a>(tags: crate::TagList) -> TagBuilder<'a> {
|
|
assert_initialized_main_thread!();
|
|
TagBuilder::new(tags)
|
|
}
|
|
}
|
|
|
|
impl<T: AsPtr> Tag<T> {
|
|
#[doc(alias = "get_tag")]
|
|
#[doc(alias = "gst_event_parse_tag")]
|
|
pub fn tag(&self) -> &crate::TagListRef {
|
|
unsafe {
|
|
let mut tags = ptr::null_mut();
|
|
|
|
ffi::gst_event_parse_tag(self.0.as_ptr(), &mut tags);
|
|
crate::TagListRef::from_ptr(tags)
|
|
}
|
|
}
|
|
|
|
#[doc(alias = "get_tag_owned")]
|
|
pub fn tag_owned(&self) -> crate::TagList {
|
|
unsafe { from_glib_none(self.tag().as_ptr()) }
|
|
}
|
|
}
|
|
|
|
declare_concrete_event!(@sticky Buffersize, T);
|
|
impl Buffersize<Event> {
|
|
#[allow(clippy::new_ret_no_self)]
|
|
pub fn new<V: Into<GenericFormattedValue>>(minsize: V, maxsize: V, r#async: bool) -> Event {
|
|
skip_assert_initialized!();
|
|
Self::builder(minsize, maxsize, r#async).build()
|
|
}
|
|
|
|
pub fn builder<'a, V: Into<GenericFormattedValue>>(
|
|
minsize: V,
|
|
maxsize: V,
|
|
r#async: bool,
|
|
) -> BuffersizeBuilder<'a> {
|
|
assert_initialized_main_thread!();
|
|
let minsize = minsize.into();
|
|
let maxsize = maxsize.into();
|
|
assert_eq!(minsize.format(), maxsize.format());
|
|
|
|
BuffersizeBuilder::new(minsize, maxsize, r#async)
|
|
}
|
|
}
|
|
|
|
impl<T: AsPtr> Buffersize<T> {
|
|
pub fn get(&self) -> (GenericFormattedValue, GenericFormattedValue, bool) {
|
|
unsafe {
|
|
let mut fmt = mem::MaybeUninit::uninit();
|
|
let mut minsize = mem::MaybeUninit::uninit();
|
|
let mut maxsize = mem::MaybeUninit::uninit();
|
|
let mut async_ = mem::MaybeUninit::uninit();
|
|
|
|
ffi::gst_event_parse_buffer_size(
|
|
self.0.as_ptr(),
|
|
fmt.as_mut_ptr(),
|
|
minsize.as_mut_ptr(),
|
|
maxsize.as_mut_ptr(),
|
|
async_.as_mut_ptr(),
|
|
);
|
|
(
|
|
GenericFormattedValue::new(from_glib(fmt.assume_init()), minsize.assume_init()),
|
|
GenericFormattedValue::new(from_glib(fmt.assume_init()), maxsize.assume_init()),
|
|
from_glib(async_.assume_init()),
|
|
)
|
|
}
|
|
}
|
|
}
|
|
|
|
declare_concrete_event!(@sticky SinkMessage, T);
|
|
impl SinkMessage<Event> {
|
|
#[allow(clippy::new_ret_no_self)]
|
|
pub fn new(name: &str, msg: &crate::Message) -> Event {
|
|
skip_assert_initialized!();
|
|
Self::builder(name, msg).build()
|
|
}
|
|
|
|
pub fn builder<'a>(name: &'a str, msg: &'a crate::Message) -> SinkMessageBuilder<'a> {
|
|
assert_initialized_main_thread!();
|
|
SinkMessageBuilder::new(name, msg)
|
|
}
|
|
}
|
|
|
|
impl<T: AsPtr> SinkMessage<T> {
|
|
#[doc(alias = "get_message")]
|
|
#[doc(alias = "gst_event_parse_sink_message")]
|
|
pub fn message(&self) -> crate::Message {
|
|
unsafe {
|
|
let mut msg = ptr::null_mut();
|
|
|
|
ffi::gst_event_parse_sink_message(self.0.as_ptr(), &mut msg);
|
|
from_glib_full(msg)
|
|
}
|
|
}
|
|
}
|
|
|
|
#[cfg(any(feature = "v1_10", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_10")))]
|
|
declare_concrete_event!(@sticky StreamGroupDone, T);
|
|
#[cfg(any(feature = "v1_10", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_10")))]
|
|
impl StreamGroupDone<Event> {
|
|
#[cfg(any(feature = "v1_10", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_10")))]
|
|
#[allow(clippy::new_ret_no_self)]
|
|
pub fn new(group_id: GroupId) -> Event {
|
|
skip_assert_initialized!();
|
|
Self::builder(group_id).build()
|
|
}
|
|
|
|
#[cfg(any(feature = "v1_10", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_10")))]
|
|
pub fn builder<'a>(group_id: GroupId) -> StreamGroupDoneBuilder<'a> {
|
|
assert_initialized_main_thread!();
|
|
StreamGroupDoneBuilder::new(group_id)
|
|
}
|
|
}
|
|
|
|
#[cfg(any(feature = "v1_10", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_10")))]
|
|
impl<T: AsPtr> StreamGroupDone<T> {
|
|
#[cfg(any(feature = "v1_10", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_10")))]
|
|
#[doc(alias = "get_group_id")]
|
|
pub fn group_id(&self) -> GroupId {
|
|
unsafe {
|
|
let mut group_id = mem::MaybeUninit::uninit();
|
|
|
|
ffi::gst_event_parse_stream_group_done(self.0.as_ptr(), group_id.as_mut_ptr());
|
|
|
|
let group_id = group_id.assume_init();
|
|
assert_ne!(group_id, 0);
|
|
GroupId(NonZeroU32::new_unchecked(group_id))
|
|
}
|
|
}
|
|
}
|
|
|
|
declare_concrete_event!(@sticky Eos, T);
|
|
impl Eos<Event> {
|
|
#[allow(clippy::new_ret_no_self)]
|
|
pub fn new() -> Event {
|
|
skip_assert_initialized!();
|
|
Self::builder().build()
|
|
}
|
|
|
|
pub fn builder<'a>() -> EosBuilder<'a> {
|
|
assert_initialized_main_thread!();
|
|
EosBuilder::new()
|
|
}
|
|
}
|
|
|
|
declare_concrete_event!(@sticky Toc, T);
|
|
impl Toc<Event> {
|
|
// FIXME could use false for updated as default
|
|
// Even better: use an enum for updated so that it is more explicit than true / false
|
|
#[allow(clippy::new_ret_no_self)]
|
|
pub fn new(toc: &crate::Toc, updated: bool) -> Event {
|
|
skip_assert_initialized!();
|
|
Self::builder(toc, updated).build()
|
|
}
|
|
|
|
pub fn builder(toc: &crate::Toc, updated: bool) -> TocBuilder {
|
|
assert_initialized_main_thread!();
|
|
TocBuilder::new(toc, updated)
|
|
}
|
|
}
|
|
|
|
impl<T: AsPtr> Toc<T> {
|
|
#[doc(alias = "get_toc")]
|
|
#[doc(alias = "gst_event_parse_toc")]
|
|
pub fn toc(&self) -> (&crate::TocRef, bool) {
|
|
unsafe {
|
|
let mut toc = ptr::null_mut();
|
|
let mut updated = mem::MaybeUninit::uninit();
|
|
|
|
ffi::gst_event_parse_toc(self.0.as_ptr(), &mut toc, updated.as_mut_ptr());
|
|
(
|
|
crate::TocRef::from_ptr(toc),
|
|
from_glib(updated.assume_init()),
|
|
)
|
|
}
|
|
}
|
|
|
|
#[doc(alias = "get_toc_owned")]
|
|
pub fn toc_owned(&self) -> (crate::Toc, bool) {
|
|
unsafe {
|
|
let (toc, updated) = self.toc();
|
|
(from_glib_none(toc.as_ptr()), updated)
|
|
}
|
|
}
|
|
}
|
|
|
|
declare_concrete_event!(@sticky Protection, T);
|
|
impl Protection<Event> {
|
|
#[allow(clippy::new_ret_no_self)]
|
|
pub fn new(system_id: &str, data: &crate::Buffer) -> Event {
|
|
skip_assert_initialized!();
|
|
Self::builder(system_id, data).build()
|
|
}
|
|
|
|
pub fn builder<'a>(system_id: &'a str, data: &'a crate::Buffer) -> ProtectionBuilder<'a> {
|
|
assert_initialized_main_thread!();
|
|
ProtectionBuilder::new(system_id, data)
|
|
}
|
|
}
|
|
|
|
impl<T: AsPtr> Protection<T> {
|
|
pub fn get(&self) -> (&str, &crate::BufferRef, Option<&str>) {
|
|
unsafe {
|
|
let mut system_id = ptr::null();
|
|
let mut buffer = ptr::null_mut();
|
|
let mut origin = ptr::null();
|
|
|
|
ffi::gst_event_parse_protection(
|
|
self.0.as_ptr(),
|
|
&mut system_id,
|
|
&mut buffer,
|
|
&mut origin,
|
|
);
|
|
|
|
(
|
|
CStr::from_ptr(system_id).to_str().unwrap(),
|
|
crate::BufferRef::from_ptr(buffer),
|
|
if origin.is_null() {
|
|
None
|
|
} else {
|
|
Some(CStr::from_ptr(origin).to_str().unwrap())
|
|
},
|
|
)
|
|
}
|
|
}
|
|
|
|
pub fn get_owned(&self) -> (&str, crate::Buffer, Option<&str>) {
|
|
unsafe {
|
|
let (system_id, buffer, origin) = self.get();
|
|
(system_id, from_glib_none(buffer.as_ptr()), origin)
|
|
}
|
|
}
|
|
}
|
|
|
|
declare_concrete_event!(SegmentDone, T);
|
|
impl SegmentDone<Event> {
|
|
#[allow(clippy::new_ret_no_self)]
|
|
pub fn new<V: Into<GenericFormattedValue>>(position: V) -> Event {
|
|
skip_assert_initialized!();
|
|
Self::builder(position).build()
|
|
}
|
|
|
|
pub fn builder<'a, V: Into<GenericFormattedValue>>(position: V) -> SegmentDoneBuilder<'a> {
|
|
assert_initialized_main_thread!();
|
|
let position = position.into();
|
|
SegmentDoneBuilder::new(position)
|
|
}
|
|
}
|
|
|
|
impl<T: AsPtr> SegmentDone<T> {
|
|
pub fn get(&self) -> GenericFormattedValue {
|
|
unsafe {
|
|
let mut fmt = mem::MaybeUninit::uninit();
|
|
let mut position = mem::MaybeUninit::uninit();
|
|
|
|
ffi::gst_event_parse_segment_done(
|
|
self.0.as_ptr(),
|
|
fmt.as_mut_ptr(),
|
|
position.as_mut_ptr(),
|
|
);
|
|
|
|
GenericFormattedValue::new(from_glib(fmt.assume_init()), position.assume_init())
|
|
}
|
|
}
|
|
}
|
|
|
|
declare_concrete_event!(Gap, T);
|
|
impl Gap<Event> {
|
|
#[allow(clippy::new_ret_no_self)]
|
|
pub fn new(timestamp: ClockTime, duration: impl Into<Option<ClockTime>>) -> Event {
|
|
skip_assert_initialized!();
|
|
Self::builder(timestamp).duration(duration).build()
|
|
}
|
|
|
|
pub fn builder<'a>(timestamp: ClockTime) -> GapBuilder<'a> {
|
|
assert_initialized_main_thread!();
|
|
GapBuilder::new(timestamp)
|
|
}
|
|
}
|
|
|
|
impl<T: AsPtr> Gap<T> {
|
|
pub fn get(&self) -> (ClockTime, Option<ClockTime>) {
|
|
unsafe {
|
|
let mut timestamp = mem::MaybeUninit::uninit();
|
|
let mut duration = mem::MaybeUninit::uninit();
|
|
|
|
ffi::gst_event_parse_gap(
|
|
self.0.as_ptr(),
|
|
timestamp.as_mut_ptr(),
|
|
duration.as_mut_ptr(),
|
|
);
|
|
|
|
(
|
|
try_from_glib(timestamp.assume_init()).expect("undefined timestamp"),
|
|
from_glib(duration.assume_init()),
|
|
)
|
|
}
|
|
}
|
|
|
|
#[cfg(any(feature = "v1_20", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_20")))]
|
|
#[doc(alias = "gst_event_parse_gap_flags")]
|
|
pub fn gap_flags(&self) -> crate::GapFlags {
|
|
unsafe {
|
|
let mut flags = mem::MaybeUninit::uninit();
|
|
ffi::gst_event_parse_gap_flags(self.0.as_ptr(), flags.as_mut_ptr());
|
|
from_glib(flags.assume_init())
|
|
}
|
|
}
|
|
}
|
|
|
|
#[cfg(any(feature = "v1_18", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_18")))]
|
|
declare_concrete_event!(@sticky InstantRateChange, T);
|
|
#[cfg(any(feature = "v1_18", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_18")))]
|
|
impl InstantRateChange<Event> {
|
|
#[allow(clippy::new_ret_no_self)]
|
|
pub fn new(multiplier: f64, new_flags: crate::SegmentFlags) -> Event {
|
|
skip_assert_initialized!();
|
|
Self::builder(multiplier, new_flags).build()
|
|
}
|
|
|
|
pub fn builder<'a>(
|
|
multiplier: f64,
|
|
new_flags: crate::SegmentFlags,
|
|
) -> InstantRateChangeBuilder<'a> {
|
|
assert_initialized_main_thread!();
|
|
InstantRateChangeBuilder::new(multiplier, new_flags)
|
|
}
|
|
}
|
|
|
|
#[cfg(any(feature = "v1_18", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_18")))]
|
|
impl<T: AsPtr> InstantRateChange<T> {
|
|
pub fn get(&self) -> (f64, crate::SegmentFlags) {
|
|
unsafe {
|
|
let mut multiplier = mem::MaybeUninit::uninit();
|
|
let mut new_flags = mem::MaybeUninit::uninit();
|
|
|
|
ffi::gst_event_parse_instant_rate_change(
|
|
self.0.as_ptr(),
|
|
multiplier.as_mut_ptr(),
|
|
new_flags.as_mut_ptr(),
|
|
);
|
|
|
|
(multiplier.assume_init(), from_glib(new_flags.assume_init()))
|
|
}
|
|
}
|
|
}
|
|
|
|
declare_concrete_event!(Qos, T);
|
|
impl Qos<Event> {
|
|
#[allow(clippy::new_ret_no_self)]
|
|
pub fn new(
|
|
type_: crate::QOSType,
|
|
proportion: f64,
|
|
diff: i64,
|
|
timestamp: impl Into<Option<ClockTime>>,
|
|
) -> Event {
|
|
skip_assert_initialized!();
|
|
Self::builder(type_, proportion, diff)
|
|
.timestamp(timestamp)
|
|
.build()
|
|
}
|
|
|
|
pub fn builder<'a>(type_: crate::QOSType, proportion: f64, diff: i64) -> QosBuilder<'a> {
|
|
assert_initialized_main_thread!();
|
|
QosBuilder::new(type_, proportion, diff)
|
|
}
|
|
}
|
|
|
|
impl<T: AsPtr> Qos<T> {
|
|
pub fn get(&self) -> (crate::QOSType, f64, i64, Option<ClockTime>) {
|
|
unsafe {
|
|
let mut type_ = mem::MaybeUninit::uninit();
|
|
let mut proportion = mem::MaybeUninit::uninit();
|
|
let mut diff = mem::MaybeUninit::uninit();
|
|
let mut timestamp = mem::MaybeUninit::uninit();
|
|
|
|
ffi::gst_event_parse_qos(
|
|
self.0.as_ptr(),
|
|
type_.as_mut_ptr(),
|
|
proportion.as_mut_ptr(),
|
|
diff.as_mut_ptr(),
|
|
timestamp.as_mut_ptr(),
|
|
);
|
|
|
|
(
|
|
from_glib(type_.assume_init()),
|
|
proportion.assume_init(),
|
|
diff.assume_init(),
|
|
from_glib(timestamp.assume_init()),
|
|
)
|
|
}
|
|
}
|
|
}
|
|
|
|
declare_concrete_event!(Seek, T);
|
|
impl Seek<Event> {
|
|
#[allow(clippy::new_ret_no_self)]
|
|
pub fn new<V: Into<GenericFormattedValue>>(
|
|
rate: f64,
|
|
flags: crate::SeekFlags,
|
|
start_type: crate::SeekType,
|
|
start: V,
|
|
stop_type: crate::SeekType,
|
|
stop: V,
|
|
) -> Event {
|
|
skip_assert_initialized!();
|
|
Self::builder(rate, flags, start_type, start, stop_type, stop).build()
|
|
}
|
|
|
|
pub fn builder<'a, V: Into<GenericFormattedValue>>(
|
|
rate: f64,
|
|
flags: crate::SeekFlags,
|
|
start_type: crate::SeekType,
|
|
start: V,
|
|
stop_type: crate::SeekType,
|
|
stop: V,
|
|
) -> SeekBuilder<'a> {
|
|
assert_initialized_main_thread!();
|
|
let start = start.into();
|
|
let stop = stop.into();
|
|
assert_eq!(start.format(), stop.format());
|
|
|
|
SeekBuilder::new(rate, flags, start_type, start, stop_type, stop)
|
|
}
|
|
}
|
|
|
|
impl<T: AsPtr> Seek<T> {
|
|
pub fn get(
|
|
&self,
|
|
) -> (
|
|
f64,
|
|
crate::SeekFlags,
|
|
crate::SeekType,
|
|
GenericFormattedValue,
|
|
crate::SeekType,
|
|
GenericFormattedValue,
|
|
) {
|
|
unsafe {
|
|
let mut rate = mem::MaybeUninit::uninit();
|
|
let mut fmt = mem::MaybeUninit::uninit();
|
|
let mut flags = mem::MaybeUninit::uninit();
|
|
let mut start_type = mem::MaybeUninit::uninit();
|
|
let mut start = mem::MaybeUninit::uninit();
|
|
let mut stop_type = mem::MaybeUninit::uninit();
|
|
let mut stop = mem::MaybeUninit::uninit();
|
|
|
|
ffi::gst_event_parse_seek(
|
|
self.0.as_ptr(),
|
|
rate.as_mut_ptr(),
|
|
fmt.as_mut_ptr(),
|
|
flags.as_mut_ptr(),
|
|
start_type.as_mut_ptr(),
|
|
start.as_mut_ptr(),
|
|
stop_type.as_mut_ptr(),
|
|
stop.as_mut_ptr(),
|
|
);
|
|
|
|
(
|
|
rate.assume_init(),
|
|
from_glib(flags.assume_init()),
|
|
from_glib(start_type.assume_init()),
|
|
GenericFormattedValue::new(from_glib(fmt.assume_init()), start.assume_init()),
|
|
from_glib(stop_type.assume_init()),
|
|
GenericFormattedValue::new(from_glib(fmt.assume_init()), stop.assume_init()),
|
|
)
|
|
}
|
|
}
|
|
|
|
#[cfg(any(feature = "v1_16", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_16")))]
|
|
#[doc(alias = "get_trickmode_interval")]
|
|
#[doc(alias = "gst_event_parse_seek_trickmode_interval")]
|
|
pub fn trickmode_interval(&self) -> Option<ClockTime> {
|
|
unsafe {
|
|
let mut trickmode_interval = mem::MaybeUninit::uninit();
|
|
|
|
ffi::gst_event_parse_seek_trickmode_interval(
|
|
self.0.as_ptr(),
|
|
trickmode_interval.as_mut_ptr(),
|
|
);
|
|
|
|
from_glib(trickmode_interval.assume_init())
|
|
}
|
|
}
|
|
}
|
|
|
|
declare_concrete_event!(Navigation, T);
|
|
impl Navigation<Event> {
|
|
#[allow(clippy::new_ret_no_self)]
|
|
pub fn new(structure: crate::Structure) -> Event {
|
|
skip_assert_initialized!();
|
|
Self::builder(structure).build()
|
|
}
|
|
|
|
pub fn builder<'a>(structure: crate::Structure) -> NavigationBuilder<'a> {
|
|
assert_initialized_main_thread!();
|
|
NavigationBuilder::new(structure)
|
|
}
|
|
}
|
|
|
|
declare_concrete_event!(Latency, T);
|
|
impl Latency<Event> {
|
|
#[allow(clippy::new_ret_no_self)]
|
|
pub fn new(latency: ClockTime) -> Event {
|
|
skip_assert_initialized!();
|
|
Self::builder(latency).build()
|
|
}
|
|
|
|
pub fn builder<'a>(latency: ClockTime) -> LatencyBuilder<'a> {
|
|
assert_initialized_main_thread!();
|
|
LatencyBuilder::new(latency)
|
|
}
|
|
}
|
|
|
|
impl<T: AsPtr> Latency<T> {
|
|
#[doc(alias = "get_latency")]
|
|
#[doc(alias = "gst_event_parse_latency")]
|
|
pub fn latency(&self) -> ClockTime {
|
|
unsafe {
|
|
let mut latency = mem::MaybeUninit::uninit();
|
|
|
|
ffi::gst_event_parse_latency(self.0.as_ptr(), latency.as_mut_ptr());
|
|
|
|
try_from_glib(latency.assume_init()).expect("undefined latency")
|
|
}
|
|
}
|
|
}
|
|
|
|
declare_concrete_event!(Step, T);
|
|
impl Step<Event> {
|
|
#[allow(clippy::new_ret_no_self)]
|
|
pub fn new<V: Into<GenericFormattedValue>>(
|
|
amount: V,
|
|
rate: f64,
|
|
flush: bool,
|
|
intermediate: bool,
|
|
) -> Event {
|
|
skip_assert_initialized!();
|
|
Self::builder(amount.into(), rate, flush, intermediate).build()
|
|
}
|
|
|
|
pub fn builder<'a, V: Into<GenericFormattedValue>>(
|
|
amount: V,
|
|
rate: f64,
|
|
flush: bool,
|
|
intermediate: bool,
|
|
) -> StepBuilder<'a> {
|
|
assert_initialized_main_thread!();
|
|
StepBuilder::new(amount.into(), rate, flush, intermediate)
|
|
}
|
|
}
|
|
|
|
impl<T: AsPtr> Step<T> {
|
|
pub fn get(&self) -> (GenericFormattedValue, f64, bool, bool) {
|
|
unsafe {
|
|
let mut fmt = mem::MaybeUninit::uninit();
|
|
let mut amount = mem::MaybeUninit::uninit();
|
|
let mut rate = mem::MaybeUninit::uninit();
|
|
let mut flush = mem::MaybeUninit::uninit();
|
|
let mut intermediate = mem::MaybeUninit::uninit();
|
|
|
|
ffi::gst_event_parse_step(
|
|
self.0.as_ptr(),
|
|
fmt.as_mut_ptr(),
|
|
amount.as_mut_ptr(),
|
|
rate.as_mut_ptr(),
|
|
flush.as_mut_ptr(),
|
|
intermediate.as_mut_ptr(),
|
|
);
|
|
|
|
(
|
|
GenericFormattedValue::new(
|
|
from_glib(fmt.assume_init()),
|
|
amount.assume_init() as i64,
|
|
),
|
|
rate.assume_init(),
|
|
from_glib(flush.assume_init()),
|
|
from_glib(intermediate.assume_init()),
|
|
)
|
|
}
|
|
}
|
|
}
|
|
|
|
declare_concrete_event!(Reconfigure, T);
|
|
impl Reconfigure<Event> {
|
|
#[allow(clippy::new_ret_no_self)]
|
|
pub fn new() -> Event {
|
|
skip_assert_initialized!();
|
|
Self::builder().build()
|
|
}
|
|
|
|
pub fn builder<'a>() -> ReconfigureBuilder<'a> {
|
|
assert_initialized_main_thread!();
|
|
ReconfigureBuilder::new()
|
|
}
|
|
}
|
|
|
|
declare_concrete_event!(TocSelect, T);
|
|
impl TocSelect<Event> {
|
|
#[allow(clippy::new_ret_no_self)]
|
|
pub fn new(uid: &str) -> Event {
|
|
skip_assert_initialized!();
|
|
Self::builder(uid).build()
|
|
}
|
|
|
|
pub fn builder(uid: &str) -> TocSelectBuilder {
|
|
assert_initialized_main_thread!();
|
|
TocSelectBuilder::new(uid)
|
|
}
|
|
}
|
|
|
|
impl<T: AsPtr> TocSelect<T> {
|
|
#[doc(alias = "get_uid")]
|
|
pub fn uid(&self) -> &str {
|
|
unsafe {
|
|
let mut uid = ptr::null_mut();
|
|
|
|
ffi::gst_event_parse_toc_select(self.0.as_ptr(), &mut uid);
|
|
|
|
CStr::from_ptr(uid).to_str().unwrap()
|
|
}
|
|
}
|
|
}
|
|
|
|
#[cfg(any(feature = "v1_10", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_10")))]
|
|
declare_concrete_event!(SelectStreams, T);
|
|
#[cfg(any(feature = "v1_10", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_10")))]
|
|
impl SelectStreams<Event> {
|
|
#[cfg(any(feature = "v1_10", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_10")))]
|
|
#[allow(clippy::new_ret_no_self)]
|
|
pub fn new(streams: &[&str]) -> Event {
|
|
skip_assert_initialized!();
|
|
Self::builder(streams).build()
|
|
}
|
|
|
|
#[cfg(any(feature = "v1_10", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_10")))]
|
|
pub fn builder<'a>(streams: &'a [&'a str]) -> SelectStreamsBuilder<'a> {
|
|
assert_initialized_main_thread!();
|
|
SelectStreamsBuilder::new(streams)
|
|
}
|
|
}
|
|
|
|
#[cfg(any(feature = "v1_10", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_10")))]
|
|
impl<T: AsPtr> SelectStreams<T> {
|
|
#[cfg(any(feature = "v1_10", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_10")))]
|
|
#[doc(alias = "get_streams")]
|
|
#[doc(alias = "gst_event_parse_select_streams")]
|
|
pub fn streams(&self) -> Vec<String> {
|
|
unsafe {
|
|
let mut streams = ptr::null_mut();
|
|
|
|
ffi::gst_event_parse_select_streams(self.0.as_ptr(), &mut streams);
|
|
|
|
FromGlibPtrContainer::from_glib_full(streams)
|
|
}
|
|
}
|
|
}
|
|
|
|
#[cfg(any(feature = "v1_18", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_18")))]
|
|
declare_concrete_event!(InstantRateSyncTime, T);
|
|
#[cfg(any(feature = "v1_18", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_18")))]
|
|
impl InstantRateSyncTime<Event> {
|
|
#[cfg(any(feature = "v1_18", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_18")))]
|
|
#[allow(clippy::new_ret_no_self)]
|
|
pub fn new(
|
|
rate_multiplier: f64,
|
|
running_time: ClockTime,
|
|
upstream_running_time: ClockTime,
|
|
) -> Event {
|
|
skip_assert_initialized!();
|
|
Self::builder(rate_multiplier, running_time, upstream_running_time).build()
|
|
}
|
|
|
|
#[cfg(any(feature = "v1_18", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_18")))]
|
|
pub fn builder<'a>(
|
|
rate_multiplier: f64,
|
|
running_time: ClockTime,
|
|
upstream_running_time: ClockTime,
|
|
) -> InstantRateSyncTimeBuilder<'a> {
|
|
assert_initialized_main_thread!();
|
|
InstantRateSyncTimeBuilder::new(rate_multiplier, running_time, upstream_running_time)
|
|
}
|
|
}
|
|
|
|
#[cfg(any(feature = "v1_18", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_18")))]
|
|
impl<T: AsPtr> InstantRateSyncTime<T> {
|
|
#[cfg(any(feature = "v1_18", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_18")))]
|
|
#[doc(alias = "parse_instant_rate_sync_time")]
|
|
#[doc(alias = "gst_event_parse_instant_rate_sync_time")]
|
|
pub fn get(&self) -> (f64, ClockTime, ClockTime) {
|
|
unsafe {
|
|
let mut rate_multiplier = mem::MaybeUninit::uninit();
|
|
let mut running_time = mem::MaybeUninit::uninit();
|
|
let mut upstream_running_time = mem::MaybeUninit::uninit();
|
|
|
|
ffi::gst_event_parse_instant_rate_sync_time(
|
|
self.0.as_ptr(),
|
|
rate_multiplier.as_mut_ptr(),
|
|
running_time.as_mut_ptr(),
|
|
upstream_running_time.as_mut_ptr(),
|
|
);
|
|
|
|
(
|
|
rate_multiplier.assume_init(),
|
|
try_from_glib(running_time.assume_init()).expect("undefined timestamp"),
|
|
try_from_glib(upstream_running_time.assume_init()).expect("undefined timestamp"),
|
|
)
|
|
}
|
|
}
|
|
}
|
|
|
|
declare_concrete_event!(CustomUpstream, T);
|
|
impl CustomUpstream<Event> {
|
|
#[allow(clippy::new_ret_no_self)]
|
|
pub fn new(structure: crate::Structure) -> Event {
|
|
skip_assert_initialized!();
|
|
Self::builder(structure).build()
|
|
}
|
|
|
|
pub fn builder<'a>(structure: crate::Structure) -> CustomUpstreamBuilder<'a> {
|
|
assert_initialized_main_thread!();
|
|
CustomUpstreamBuilder::new(structure)
|
|
}
|
|
}
|
|
|
|
declare_concrete_event!(CustomDownstream, T);
|
|
impl CustomDownstream<Event> {
|
|
#[allow(clippy::new_ret_no_self)]
|
|
pub fn new(structure: crate::Structure) -> Event {
|
|
skip_assert_initialized!();
|
|
Self::builder(structure).build()
|
|
}
|
|
|
|
pub fn builder<'a>(structure: crate::Structure) -> CustomDownstreamBuilder<'a> {
|
|
assert_initialized_main_thread!();
|
|
CustomDownstreamBuilder::new(structure)
|
|
}
|
|
}
|
|
|
|
declare_concrete_event!(CustomDownstreamOob, T);
|
|
impl CustomDownstreamOob<Event> {
|
|
#[allow(clippy::new_ret_no_self)]
|
|
pub fn new(structure: crate::Structure) -> Event {
|
|
skip_assert_initialized!();
|
|
Self::builder(structure).build()
|
|
}
|
|
|
|
pub fn builder<'a>(structure: crate::Structure) -> CustomDownstreamOobBuilder<'a> {
|
|
assert_initialized_main_thread!();
|
|
CustomDownstreamOobBuilder::new(structure)
|
|
}
|
|
}
|
|
|
|
declare_concrete_event!(@sticky CustomDownstreamSticky, T);
|
|
impl CustomDownstreamSticky<Event> {
|
|
#[allow(clippy::new_ret_no_self)]
|
|
pub fn new(structure: crate::Structure) -> Event {
|
|
skip_assert_initialized!();
|
|
Self::builder(structure).build()
|
|
}
|
|
|
|
pub fn builder<'a>(structure: crate::Structure) -> CustomDownstreamStickyBuilder<'a> {
|
|
assert_initialized_main_thread!();
|
|
CustomDownstreamStickyBuilder::new(structure)
|
|
}
|
|
}
|
|
|
|
declare_concrete_event!(CustomBoth, T);
|
|
impl CustomBoth<Event> {
|
|
#[allow(clippy::new_ret_no_self)]
|
|
pub fn new(structure: crate::Structure) -> Event {
|
|
skip_assert_initialized!();
|
|
Self::builder(structure).build()
|
|
}
|
|
|
|
pub fn builder<'a>(structure: crate::Structure) -> CustomBothBuilder<'a> {
|
|
assert_initialized_main_thread!();
|
|
CustomBothBuilder::new(structure)
|
|
}
|
|
}
|
|
|
|
declare_concrete_event!(CustomBothOob, T);
|
|
impl CustomBothOob<Event> {
|
|
#[allow(clippy::new_ret_no_self)]
|
|
pub fn new(structure: crate::Structure) -> Event {
|
|
skip_assert_initialized!();
|
|
Self::builder(structure).build()
|
|
}
|
|
|
|
pub fn builder<'a>(structure: crate::Structure) -> CustomBothOobBuilder<'a> {
|
|
assert_initialized_main_thread!();
|
|
CustomBothOobBuilder::new(structure)
|
|
}
|
|
}
|
|
|
|
declare_concrete_event!(Other, T);
|
|
|
|
struct EventBuilder<'a> {
|
|
seqnum: Option<Seqnum>,
|
|
running_time_offset: Option<i64>,
|
|
other_fields: Vec<(&'a str, &'a (dyn ToSendValue + Sync))>,
|
|
}
|
|
|
|
impl<'a> EventBuilder<'a> {
|
|
fn new() -> Self {
|
|
Self {
|
|
seqnum: None,
|
|
running_time_offset: None,
|
|
other_fields: Vec::new(),
|
|
}
|
|
}
|
|
|
|
fn seqnum(self, seqnum: Seqnum) -> Self {
|
|
Self {
|
|
seqnum: Some(seqnum),
|
|
..self
|
|
}
|
|
}
|
|
|
|
fn running_time_offset(self, running_time_offset: i64) -> Self {
|
|
Self {
|
|
running_time_offset: Some(running_time_offset),
|
|
..self
|
|
}
|
|
}
|
|
|
|
fn other_fields(self, other_fields: &[(&'a str, &'a (dyn ToSendValue + Sync))]) -> Self {
|
|
Self {
|
|
other_fields: self
|
|
.other_fields
|
|
.iter()
|
|
.cloned()
|
|
.chain(other_fields.iter().cloned())
|
|
.collect(),
|
|
..self
|
|
}
|
|
}
|
|
}
|
|
|
|
macro_rules! event_builder_generic_impl {
|
|
($new_fn:expr) => {
|
|
#[allow(clippy::needless_update)]
|
|
pub fn seqnum(self, seqnum: Seqnum) -> Self {
|
|
Self {
|
|
builder: self.builder.seqnum(seqnum),
|
|
..self
|
|
}
|
|
}
|
|
|
|
#[allow(clippy::needless_update)]
|
|
pub fn running_time_offset(self, running_time_offset: i64) -> Self {
|
|
Self {
|
|
builder: self.builder.running_time_offset(running_time_offset),
|
|
..self
|
|
}
|
|
}
|
|
|
|
#[allow(clippy::needless_update)]
|
|
pub fn other_fields(
|
|
self,
|
|
other_fields: &[(&'a str, &'a (dyn ToSendValue + Sync))],
|
|
) -> Self {
|
|
Self {
|
|
builder: self.builder.other_fields(other_fields),
|
|
..self
|
|
}
|
|
}
|
|
|
|
pub fn build(mut self) -> Event {
|
|
assert_initialized_main_thread!();
|
|
unsafe {
|
|
let event = $new_fn(&mut self);
|
|
if let Some(seqnum) = self.builder.seqnum {
|
|
ffi::gst_event_set_seqnum(event, seqnum.0.get());
|
|
}
|
|
|
|
if let Some(running_time_offset) = self.builder.running_time_offset {
|
|
ffi::gst_event_set_running_time_offset(event, running_time_offset);
|
|
}
|
|
|
|
if !self.builder.other_fields.is_empty() {
|
|
let s = StructureRef::from_glib_borrow_mut(ffi::gst_event_writable_structure(
|
|
event,
|
|
));
|
|
|
|
for (k, v) in self.builder.other_fields {
|
|
s.set_value(k, v.to_send_value());
|
|
}
|
|
}
|
|
|
|
from_glib_full(event)
|
|
}
|
|
}
|
|
};
|
|
}
|
|
|
|
pub struct FlushStartBuilder<'a> {
|
|
builder: EventBuilder<'a>,
|
|
}
|
|
|
|
impl<'a> FlushStartBuilder<'a> {
|
|
fn new() -> Self {
|
|
skip_assert_initialized!();
|
|
Self {
|
|
builder: EventBuilder::new(),
|
|
}
|
|
}
|
|
|
|
event_builder_generic_impl!(|_| { ffi::gst_event_new_flush_start() });
|
|
}
|
|
|
|
pub struct FlushStopBuilder<'a> {
|
|
builder: EventBuilder<'a>,
|
|
reset_time: bool,
|
|
}
|
|
impl<'a> FlushStopBuilder<'a> {
|
|
fn new(reset_time: bool) -> Self {
|
|
skip_assert_initialized!();
|
|
Self {
|
|
builder: EventBuilder::new(),
|
|
reset_time,
|
|
}
|
|
}
|
|
|
|
event_builder_generic_impl!(|s: &Self| {
|
|
ffi::gst_event_new_flush_stop(s.reset_time.into_glib())
|
|
});
|
|
}
|
|
|
|
pub struct StreamStartBuilder<'a> {
|
|
builder: EventBuilder<'a>,
|
|
stream_id: &'a str,
|
|
flags: Option<crate::StreamFlags>,
|
|
group_id: Option<GroupId>,
|
|
#[cfg(any(feature = "v1_10", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_10")))]
|
|
stream: Option<crate::Stream>,
|
|
}
|
|
|
|
impl<'a> StreamStartBuilder<'a> {
|
|
fn new(stream_id: &'a str) -> Self {
|
|
skip_assert_initialized!();
|
|
Self {
|
|
builder: EventBuilder::new(),
|
|
stream_id,
|
|
flags: None,
|
|
group_id: None,
|
|
#[cfg(any(feature = "v1_10", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_10")))]
|
|
stream: None,
|
|
}
|
|
}
|
|
|
|
pub fn flags(self, flags: crate::StreamFlags) -> Self {
|
|
Self {
|
|
flags: Some(flags),
|
|
..self
|
|
}
|
|
}
|
|
|
|
pub fn group_id(self, group_id: GroupId) -> Self {
|
|
Self {
|
|
group_id: Some(group_id),
|
|
..self
|
|
}
|
|
}
|
|
|
|
#[cfg(any(feature = "v1_10", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_10")))]
|
|
pub fn stream(self, stream: crate::Stream) -> Self {
|
|
Self {
|
|
stream: Some(stream),
|
|
..self
|
|
}
|
|
}
|
|
|
|
event_builder_generic_impl!(|s: &Self| {
|
|
let ev = ffi::gst_event_new_stream_start(s.stream_id.to_glib_none().0);
|
|
if let Some(flags) = s.flags {
|
|
ffi::gst_event_set_stream_flags(ev, flags.into_glib());
|
|
}
|
|
if let Some(group_id) = s.group_id {
|
|
ffi::gst_event_set_group_id(ev, group_id.0.get());
|
|
}
|
|
|
|
#[cfg(any(feature = "v1_10", feature = "dox"))]
|
|
if let Some(ref stream) = s.stream {
|
|
ffi::gst_event_set_stream(ev, stream.to_glib_none().0);
|
|
}
|
|
|
|
ev
|
|
});
|
|
}
|
|
|
|
pub struct CapsBuilder<'a> {
|
|
builder: EventBuilder<'a>,
|
|
caps: &'a crate::Caps,
|
|
}
|
|
|
|
impl<'a> CapsBuilder<'a> {
|
|
fn new(caps: &'a crate::Caps) -> Self {
|
|
skip_assert_initialized!();
|
|
Self {
|
|
builder: EventBuilder::new(),
|
|
caps,
|
|
}
|
|
}
|
|
|
|
event_builder_generic_impl!(|s: &Self| { ffi::gst_event_new_caps(s.caps.as_mut_ptr()) });
|
|
}
|
|
|
|
pub struct SegmentBuilder<'a> {
|
|
builder: EventBuilder<'a>,
|
|
segment: &'a crate::Segment,
|
|
}
|
|
|
|
impl<'a> SegmentBuilder<'a> {
|
|
fn new(segment: &'a crate::Segment) -> Self {
|
|
skip_assert_initialized!();
|
|
Self {
|
|
builder: EventBuilder::new(),
|
|
segment,
|
|
}
|
|
}
|
|
|
|
event_builder_generic_impl!(|s: &Self| {
|
|
ffi::gst_event_new_segment(s.segment.to_glib_none().0)
|
|
});
|
|
}
|
|
|
|
#[cfg(any(feature = "v1_10", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_10")))]
|
|
pub struct StreamCollectionBuilder<'a> {
|
|
builder: EventBuilder<'a>,
|
|
stream_collection: &'a crate::StreamCollection,
|
|
}
|
|
|
|
#[cfg(any(feature = "v1_10", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_10")))]
|
|
impl<'a> StreamCollectionBuilder<'a> {
|
|
fn new(stream_collection: &'a crate::StreamCollection) -> Self {
|
|
skip_assert_initialized!();
|
|
Self {
|
|
builder: EventBuilder::new(),
|
|
stream_collection,
|
|
}
|
|
}
|
|
|
|
event_builder_generic_impl!(|s: &Self| {
|
|
ffi::gst_event_new_stream_collection(s.stream_collection.to_glib_none().0)
|
|
});
|
|
}
|
|
|
|
#[cfg(any(feature = "v1_18", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_18")))]
|
|
pub struct InstantRateSyncTimeBuilder<'a> {
|
|
builder: EventBuilder<'a>,
|
|
rate_multiplier: f64,
|
|
running_time: ClockTime,
|
|
upstream_running_time: ClockTime,
|
|
}
|
|
|
|
#[cfg(any(feature = "v1_18", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_18")))]
|
|
impl<'a> InstantRateSyncTimeBuilder<'a> {
|
|
fn new(
|
|
rate_multiplier: f64,
|
|
running_time: ClockTime,
|
|
upstream_running_time: ClockTime,
|
|
) -> Self {
|
|
skip_assert_initialized!();
|
|
Self {
|
|
builder: EventBuilder::new(),
|
|
rate_multiplier,
|
|
running_time,
|
|
upstream_running_time,
|
|
}
|
|
}
|
|
|
|
event_builder_generic_impl!(|s: &Self| {
|
|
ffi::gst_event_new_instant_rate_sync_time(
|
|
s.rate_multiplier,
|
|
s.running_time.into_glib(),
|
|
s.upstream_running_time.into_glib(),
|
|
)
|
|
});
|
|
}
|
|
|
|
pub struct TagBuilder<'a> {
|
|
builder: EventBuilder<'a>,
|
|
tags: Option<crate::TagList>,
|
|
}
|
|
|
|
impl<'a> TagBuilder<'a> {
|
|
fn new(tags: crate::TagList) -> Self {
|
|
skip_assert_initialized!();
|
|
Self {
|
|
builder: EventBuilder::new(),
|
|
tags: Some(tags),
|
|
}
|
|
}
|
|
|
|
event_builder_generic_impl!(|s: &mut Self| {
|
|
let tags = s.tags.take().unwrap();
|
|
ffi::gst_event_new_tag(tags.into_ptr())
|
|
});
|
|
}
|
|
|
|
pub struct BuffersizeBuilder<'a> {
|
|
builder: EventBuilder<'a>,
|
|
minsize: GenericFormattedValue,
|
|
maxsize: GenericFormattedValue,
|
|
r#async: bool,
|
|
}
|
|
|
|
impl<'a> BuffersizeBuilder<'a> {
|
|
fn new(minsize: GenericFormattedValue, maxsize: GenericFormattedValue, r#async: bool) -> Self {
|
|
skip_assert_initialized!();
|
|
Self {
|
|
builder: EventBuilder::new(),
|
|
minsize,
|
|
maxsize,
|
|
r#async,
|
|
}
|
|
}
|
|
|
|
event_builder_generic_impl!(|s: &Self| {
|
|
ffi::gst_event_new_buffer_size(
|
|
s.minsize.format().into_glib(),
|
|
s.minsize.value(),
|
|
s.maxsize.value(),
|
|
s.r#async.into_glib(),
|
|
)
|
|
});
|
|
}
|
|
|
|
pub struct SinkMessageBuilder<'a> {
|
|
builder: EventBuilder<'a>,
|
|
name: &'a str,
|
|
msg: &'a crate::Message,
|
|
}
|
|
|
|
impl<'a> SinkMessageBuilder<'a> {
|
|
fn new(name: &'a str, msg: &'a crate::Message) -> Self {
|
|
skip_assert_initialized!();
|
|
Self {
|
|
builder: EventBuilder::new(),
|
|
name,
|
|
msg,
|
|
}
|
|
}
|
|
|
|
event_builder_generic_impl!(|s: &Self| {
|
|
ffi::gst_event_new_sink_message(s.name.to_glib_none().0, s.msg.as_mut_ptr())
|
|
});
|
|
}
|
|
|
|
#[cfg(any(feature = "v1_10", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_10")))]
|
|
pub struct StreamGroupDoneBuilder<'a> {
|
|
builder: EventBuilder<'a>,
|
|
group_id: GroupId,
|
|
}
|
|
|
|
#[cfg(any(feature = "v1_10", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_10")))]
|
|
impl<'a> StreamGroupDoneBuilder<'a> {
|
|
fn new(group_id: GroupId) -> Self {
|
|
skip_assert_initialized!();
|
|
Self {
|
|
builder: EventBuilder::new(),
|
|
group_id,
|
|
}
|
|
}
|
|
|
|
event_builder_generic_impl!(|s: &Self| {
|
|
ffi::gst_event_new_stream_group_done(s.group_id.0.get())
|
|
});
|
|
}
|
|
|
|
pub struct EosBuilder<'a> {
|
|
builder: EventBuilder<'a>,
|
|
}
|
|
|
|
impl<'a> EosBuilder<'a> {
|
|
fn new() -> Self {
|
|
skip_assert_initialized!();
|
|
Self {
|
|
builder: EventBuilder::new(),
|
|
}
|
|
}
|
|
|
|
event_builder_generic_impl!(|_| ffi::gst_event_new_eos());
|
|
}
|
|
|
|
pub struct TocBuilder<'a> {
|
|
builder: EventBuilder<'a>,
|
|
toc: &'a crate::Toc,
|
|
updated: bool,
|
|
}
|
|
|
|
impl<'a> TocBuilder<'a> {
|
|
fn new(toc: &'a crate::Toc, updated: bool) -> Self {
|
|
skip_assert_initialized!();
|
|
Self {
|
|
builder: EventBuilder::new(),
|
|
toc,
|
|
updated,
|
|
}
|
|
}
|
|
|
|
event_builder_generic_impl!(|s: &Self| ffi::gst_event_new_toc(
|
|
s.toc.to_glib_none().0,
|
|
s.updated.into_glib()
|
|
));
|
|
}
|
|
|
|
pub struct ProtectionBuilder<'a> {
|
|
builder: EventBuilder<'a>,
|
|
system_id: &'a str,
|
|
data: &'a crate::Buffer,
|
|
origin: Option<&'a str>,
|
|
}
|
|
|
|
impl<'a> ProtectionBuilder<'a> {
|
|
fn new(system_id: &'a str, data: &'a crate::Buffer) -> Self {
|
|
skip_assert_initialized!();
|
|
Self {
|
|
builder: EventBuilder::new(),
|
|
system_id,
|
|
data,
|
|
origin: None,
|
|
}
|
|
}
|
|
|
|
pub fn origin(self, origin: &'a str) -> Self {
|
|
Self {
|
|
origin: Some(origin),
|
|
..self
|
|
}
|
|
}
|
|
|
|
event_builder_generic_impl!(|s: &Self| {
|
|
ffi::gst_event_new_protection(
|
|
s.system_id.to_glib_none().0,
|
|
s.data.as_mut_ptr(),
|
|
s.origin.to_glib_none().0,
|
|
)
|
|
});
|
|
}
|
|
|
|
pub struct SegmentDoneBuilder<'a> {
|
|
builder: EventBuilder<'a>,
|
|
position: GenericFormattedValue,
|
|
}
|
|
|
|
impl<'a> SegmentDoneBuilder<'a> {
|
|
fn new(position: GenericFormattedValue) -> Self {
|
|
skip_assert_initialized!();
|
|
Self {
|
|
builder: EventBuilder::new(),
|
|
position,
|
|
}
|
|
}
|
|
|
|
event_builder_generic_impl!(|s: &Self| {
|
|
ffi::gst_event_new_segment_done(s.position.format().into_glib(), s.position.value())
|
|
});
|
|
}
|
|
|
|
pub struct GapBuilder<'a> {
|
|
builder: EventBuilder<'a>,
|
|
timestamp: ClockTime,
|
|
duration: Option<ClockTime>,
|
|
#[cfg(any(feature = "v1_20", feature = "dox"))]
|
|
gap_flags: Option<crate::GapFlags>,
|
|
}
|
|
|
|
impl<'a> GapBuilder<'a> {
|
|
fn new(timestamp: ClockTime) -> Self {
|
|
skip_assert_initialized!();
|
|
Self {
|
|
builder: EventBuilder::new(),
|
|
timestamp,
|
|
duration: None,
|
|
#[cfg(any(feature = "v1_20", feature = "dox"))]
|
|
gap_flags: None,
|
|
}
|
|
}
|
|
|
|
#[cfg(any(feature = "v1_20", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_20")))]
|
|
pub fn gap_flags(mut self, flags: crate::GapFlags) -> Self {
|
|
self.gap_flags = Some(flags);
|
|
self
|
|
}
|
|
|
|
pub fn duration(mut self, duration: impl Into<Option<ClockTime>>) -> Self {
|
|
self.duration = duration.into();
|
|
self
|
|
}
|
|
|
|
event_builder_generic_impl!(|s: &Self| {
|
|
#[allow(clippy::let_and_return)]
|
|
let ev = ffi::gst_event_new_gap(s.timestamp.into_glib(), s.duration.into_glib());
|
|
|
|
#[cfg(any(feature = "v1_20", feature = "dox"))]
|
|
if let Some(ref flags) = s.gap_flags {
|
|
ffi::gst_event_set_gap_flags(ev, flags.into_glib());
|
|
}
|
|
|
|
ev
|
|
});
|
|
}
|
|
|
|
#[cfg(any(feature = "v1_18", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_18")))]
|
|
pub struct InstantRateChangeBuilder<'a> {
|
|
builder: EventBuilder<'a>,
|
|
multiplier: f64,
|
|
new_flags: crate::SegmentFlags,
|
|
}
|
|
|
|
#[cfg(any(feature = "v1_18", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_18")))]
|
|
impl<'a> InstantRateChangeBuilder<'a> {
|
|
fn new(multiplier: f64, new_flags: crate::SegmentFlags) -> Self {
|
|
skip_assert_initialized!();
|
|
Self {
|
|
builder: EventBuilder::new(),
|
|
multiplier,
|
|
new_flags,
|
|
}
|
|
}
|
|
|
|
event_builder_generic_impl!(|s: &Self| ffi::gst_event_new_instant_rate_change(
|
|
s.multiplier,
|
|
s.new_flags.into_glib()
|
|
));
|
|
}
|
|
|
|
pub struct QosBuilder<'a> {
|
|
builder: EventBuilder<'a>,
|
|
type_: crate::QOSType,
|
|
proportion: f64,
|
|
diff: i64,
|
|
timestamp: Option<ClockTime>,
|
|
}
|
|
|
|
impl<'a> QosBuilder<'a> {
|
|
fn new(type_: crate::QOSType, proportion: f64, diff: i64) -> Self {
|
|
skip_assert_initialized!();
|
|
Self {
|
|
builder: EventBuilder::new(),
|
|
type_,
|
|
proportion,
|
|
diff,
|
|
timestamp: None,
|
|
}
|
|
}
|
|
|
|
pub fn timestamp(mut self, timestamp: impl Into<Option<ClockTime>>) -> Self {
|
|
self.timestamp = timestamp.into();
|
|
self
|
|
}
|
|
|
|
event_builder_generic_impl!(|s: &Self| ffi::gst_event_new_qos(
|
|
s.type_.into_glib(),
|
|
s.proportion,
|
|
s.diff,
|
|
s.timestamp.into_glib(),
|
|
));
|
|
}
|
|
|
|
pub struct SeekBuilder<'a> {
|
|
builder: EventBuilder<'a>,
|
|
rate: f64,
|
|
flags: crate::SeekFlags,
|
|
start_type: crate::SeekType,
|
|
start: GenericFormattedValue,
|
|
stop_type: crate::SeekType,
|
|
stop: GenericFormattedValue,
|
|
#[allow(unused)]
|
|
trickmode_interval: Option<ClockTime>,
|
|
}
|
|
|
|
impl<'a> SeekBuilder<'a> {
|
|
fn new(
|
|
rate: f64,
|
|
flags: crate::SeekFlags,
|
|
start_type: crate::SeekType,
|
|
start: GenericFormattedValue,
|
|
stop_type: crate::SeekType,
|
|
stop: GenericFormattedValue,
|
|
) -> Self {
|
|
skip_assert_initialized!();
|
|
Self {
|
|
builder: EventBuilder::new(),
|
|
rate,
|
|
flags,
|
|
start_type,
|
|
start,
|
|
stop_type,
|
|
stop,
|
|
trickmode_interval: None,
|
|
}
|
|
}
|
|
|
|
pub fn trickmode_interval(mut self, trickmode_interval: impl Into<Option<ClockTime>>) -> Self {
|
|
self.trickmode_interval = trickmode_interval.into();
|
|
self
|
|
}
|
|
|
|
event_builder_generic_impl!(|s: &Self| {
|
|
#[allow(clippy::let_and_return)]
|
|
{
|
|
let ev = ffi::gst_event_new_seek(
|
|
s.rate,
|
|
s.start.format().into_glib(),
|
|
s.flags.into_glib(),
|
|
s.start_type.into_glib(),
|
|
s.start.value(),
|
|
s.stop_type.into_glib(),
|
|
s.stop.value(),
|
|
);
|
|
|
|
#[cfg(any(feature = "v1_16", feature = "dox"))]
|
|
if let Some(trickmode_interval) = s.trickmode_interval {
|
|
ffi::gst_event_set_seek_trickmode_interval(ev, trickmode_interval.into_glib());
|
|
}
|
|
|
|
ev
|
|
}
|
|
});
|
|
}
|
|
|
|
pub struct NavigationBuilder<'a> {
|
|
builder: EventBuilder<'a>,
|
|
structure: Option<Structure>,
|
|
}
|
|
|
|
impl<'a> NavigationBuilder<'a> {
|
|
fn new(structure: Structure) -> Self {
|
|
skip_assert_initialized!();
|
|
Self {
|
|
builder: EventBuilder::new(),
|
|
structure: Some(structure),
|
|
}
|
|
}
|
|
|
|
event_builder_generic_impl!(|s: &mut Self| {
|
|
let structure = s.structure.take().unwrap();
|
|
ffi::gst_event_new_navigation(structure.into_ptr())
|
|
});
|
|
}
|
|
|
|
pub struct LatencyBuilder<'a> {
|
|
builder: EventBuilder<'a>,
|
|
latency: ClockTime,
|
|
}
|
|
|
|
impl<'a> LatencyBuilder<'a> {
|
|
fn new(latency: ClockTime) -> Self {
|
|
skip_assert_initialized!();
|
|
Self {
|
|
builder: EventBuilder::new(),
|
|
latency,
|
|
}
|
|
}
|
|
|
|
event_builder_generic_impl!(|s: &Self| { ffi::gst_event_new_latency(s.latency.into_glib()) });
|
|
}
|
|
|
|
pub struct StepBuilder<'a> {
|
|
builder: EventBuilder<'a>,
|
|
amount: GenericFormattedValue,
|
|
rate: f64,
|
|
flush: bool,
|
|
intermediate: bool,
|
|
}
|
|
|
|
impl<'a> StepBuilder<'a> {
|
|
fn new(amount: GenericFormattedValue, rate: f64, flush: bool, intermediate: bool) -> Self {
|
|
skip_assert_initialized!();
|
|
Self {
|
|
builder: EventBuilder::new(),
|
|
amount,
|
|
rate,
|
|
flush,
|
|
intermediate,
|
|
}
|
|
}
|
|
|
|
event_builder_generic_impl!(|s: &Self| {
|
|
ffi::gst_event_new_step(
|
|
s.amount.format().into_glib(),
|
|
s.amount.value() as u64,
|
|
s.rate,
|
|
s.flush.into_glib(),
|
|
s.intermediate.into_glib(),
|
|
)
|
|
});
|
|
}
|
|
|
|
pub struct ReconfigureBuilder<'a> {
|
|
builder: EventBuilder<'a>,
|
|
}
|
|
|
|
impl<'a> ReconfigureBuilder<'a> {
|
|
fn new() -> Self {
|
|
skip_assert_initialized!();
|
|
Self {
|
|
builder: EventBuilder::new(),
|
|
}
|
|
}
|
|
|
|
event_builder_generic_impl!(|_| { ffi::gst_event_new_reconfigure() });
|
|
}
|
|
|
|
pub struct TocSelectBuilder<'a> {
|
|
builder: EventBuilder<'a>,
|
|
uid: &'a str,
|
|
}
|
|
|
|
impl<'a> TocSelectBuilder<'a> {
|
|
fn new(uid: &'a str) -> Self {
|
|
skip_assert_initialized!();
|
|
Self {
|
|
builder: EventBuilder::new(),
|
|
uid,
|
|
}
|
|
}
|
|
|
|
event_builder_generic_impl!(|s: &Self| {
|
|
ffi::gst_event_new_toc_select(s.uid.to_glib_none().0)
|
|
});
|
|
}
|
|
|
|
#[cfg(any(feature = "v1_10", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_10")))]
|
|
pub struct SelectStreamsBuilder<'a> {
|
|
builder: EventBuilder<'a>,
|
|
streams: &'a [&'a str],
|
|
}
|
|
|
|
#[cfg(any(feature = "v1_10", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_10")))]
|
|
impl<'a> SelectStreamsBuilder<'a> {
|
|
fn new(streams: &'a [&'a str]) -> Self {
|
|
skip_assert_initialized!();
|
|
Self {
|
|
builder: EventBuilder::new(),
|
|
streams,
|
|
}
|
|
}
|
|
|
|
event_builder_generic_impl!(|s: &Self| {
|
|
ffi::gst_event_new_select_streams(s.streams.to_glib_full())
|
|
});
|
|
}
|
|
|
|
pub struct CustomUpstreamBuilder<'a> {
|
|
builder: EventBuilder<'a>,
|
|
structure: Option<Structure>,
|
|
}
|
|
|
|
impl<'a> CustomUpstreamBuilder<'a> {
|
|
fn new(structure: Structure) -> Self {
|
|
skip_assert_initialized!();
|
|
Self {
|
|
builder: EventBuilder::new(),
|
|
structure: Some(structure),
|
|
}
|
|
}
|
|
|
|
event_builder_generic_impl!(|s: &mut Self| {
|
|
let structure = s.structure.take().unwrap();
|
|
ffi::gst_event_new_custom(ffi::GST_EVENT_CUSTOM_UPSTREAM, structure.into_ptr())
|
|
});
|
|
}
|
|
|
|
pub struct CustomDownstreamBuilder<'a> {
|
|
builder: EventBuilder<'a>,
|
|
structure: Option<Structure>,
|
|
}
|
|
|
|
impl<'a> CustomDownstreamBuilder<'a> {
|
|
fn new(structure: Structure) -> Self {
|
|
skip_assert_initialized!();
|
|
Self {
|
|
builder: EventBuilder::new(),
|
|
structure: Some(structure),
|
|
}
|
|
}
|
|
|
|
event_builder_generic_impl!(|s: &mut Self| {
|
|
let structure = s.structure.take().unwrap();
|
|
ffi::gst_event_new_custom(ffi::GST_EVENT_CUSTOM_DOWNSTREAM, structure.into_ptr())
|
|
});
|
|
}
|
|
|
|
pub struct CustomDownstreamOobBuilder<'a> {
|
|
builder: EventBuilder<'a>,
|
|
structure: Option<Structure>,
|
|
}
|
|
|
|
impl<'a> CustomDownstreamOobBuilder<'a> {
|
|
fn new(structure: Structure) -> Self {
|
|
skip_assert_initialized!();
|
|
Self {
|
|
builder: EventBuilder::new(),
|
|
structure: Some(structure),
|
|
}
|
|
}
|
|
|
|
event_builder_generic_impl!(|s: &mut Self| {
|
|
let structure = s.structure.take().unwrap();
|
|
ffi::gst_event_new_custom(ffi::GST_EVENT_CUSTOM_DOWNSTREAM_OOB, structure.into_ptr())
|
|
});
|
|
}
|
|
|
|
pub struct CustomDownstreamStickyBuilder<'a> {
|
|
builder: EventBuilder<'a>,
|
|
structure: Option<Structure>,
|
|
}
|
|
|
|
impl<'a> CustomDownstreamStickyBuilder<'a> {
|
|
fn new(structure: Structure) -> Self {
|
|
skip_assert_initialized!();
|
|
Self {
|
|
builder: EventBuilder::new(),
|
|
structure: Some(structure),
|
|
}
|
|
}
|
|
|
|
event_builder_generic_impl!(|s: &mut Self| {
|
|
let structure = s.structure.take().unwrap();
|
|
ffi::gst_event_new_custom(
|
|
ffi::GST_EVENT_CUSTOM_DOWNSTREAM_STICKY,
|
|
structure.into_ptr(),
|
|
)
|
|
});
|
|
}
|
|
|
|
pub struct CustomBothBuilder<'a> {
|
|
builder: EventBuilder<'a>,
|
|
structure: Option<Structure>,
|
|
}
|
|
|
|
impl<'a> CustomBothBuilder<'a> {
|
|
fn new(structure: Structure) -> Self {
|
|
skip_assert_initialized!();
|
|
Self {
|
|
builder: EventBuilder::new(),
|
|
structure: Some(structure),
|
|
}
|
|
}
|
|
|
|
event_builder_generic_impl!(|s: &mut Self| {
|
|
let structure = s.structure.take().unwrap();
|
|
ffi::gst_event_new_custom(ffi::GST_EVENT_CUSTOM_BOTH, structure.into_ptr())
|
|
});
|
|
}
|
|
|
|
pub struct CustomBothOobBuilder<'a> {
|
|
builder: EventBuilder<'a>,
|
|
structure: Option<Structure>,
|
|
}
|
|
|
|
impl<'a> CustomBothOobBuilder<'a> {
|
|
fn new(structure: Structure) -> Self {
|
|
skip_assert_initialized!();
|
|
Self {
|
|
builder: EventBuilder::new(),
|
|
structure: Some(structure),
|
|
}
|
|
}
|
|
|
|
event_builder_generic_impl!(|s: &mut Self| {
|
|
let structure = s.structure.take().unwrap();
|
|
ffi::gst_event_new_custom(ffi::GST_EVENT_CUSTOM_BOTH_OOB, structure.into_ptr())
|
|
});
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn test_simple() {
|
|
crate::init().unwrap();
|
|
|
|
// Event without arguments
|
|
let flush_start_evt = FlushStart::new();
|
|
match flush_start_evt.view() {
|
|
EventView::FlushStart(flush_start_evt) => {
|
|
assert!(!flush_start_evt.is_sticky());
|
|
assert!(flush_start_evt.structure().is_none());
|
|
}
|
|
_ => panic!("flush_start_evt.view() is not an EventView::FlushStart(_)"),
|
|
}
|
|
|
|
let flush_start_evt = FlushStart::builder()
|
|
.other_fields(&[("extra-field", &true)])
|
|
.build();
|
|
match flush_start_evt.view() {
|
|
EventView::FlushStart(flush_start_evt) => {
|
|
assert!(flush_start_evt.structure().is_some());
|
|
if let Some(other_fields) = flush_start_evt.structure() {
|
|
assert!(other_fields.has_field("extra-field"));
|
|
}
|
|
}
|
|
_ => panic!("flush_start_evt.view() is not an EventView::FlushStart(_)"),
|
|
}
|
|
|
|
// Event with arguments
|
|
let flush_stop_evt = FlushStop::builder(true)
|
|
.other_fields(&[("extra-field", &true)])
|
|
.build();
|
|
match flush_stop_evt.view() {
|
|
EventView::FlushStop(flush_stop_evt) => {
|
|
assert!(flush_stop_evt.resets_time());
|
|
assert!(flush_stop_evt.structure().is_some());
|
|
if let Some(other_fields) = flush_stop_evt.structure() {
|
|
assert!(other_fields.has_field("extra-field"));
|
|
}
|
|
}
|
|
_ => panic!("flush_stop_evt.view() is not an EventView::FlushStop(_)"),
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
fn test_get_structure_mut() {
|
|
crate::init().unwrap();
|
|
|
|
let mut flush_start_evt = FlushStart::new();
|
|
|
|
{
|
|
let flush_start_evt = flush_start_evt.get_mut().unwrap();
|
|
let structure = flush_start_evt.structure_mut();
|
|
structure.set("test", &42u32);
|
|
}
|
|
|
|
let structure = flush_start_evt.structure().unwrap();
|
|
assert_eq!(structure.get("test"), Ok(42u32));
|
|
}
|
|
}
|