Enum gstreamer::StateChange
source · #[repr(i32)]pub enum StateChange {
NullToReady = 10,
ReadyToPaused = 19,
PausedToPlaying = 28,
PlayingToPaused = 35,
PausedToReady = 26,
ReadyToNull = 17,
NullToNull = 9,
ReadyToReady = 18,
PausedToPaused = 27,
PlayingToPlaying = 36,
}
Expand description
These are the different state changes an element goes through.
State::Null
⇒ State::Playing
is called an upwards state change
and State::Playing
⇒ State::Null
a downwards state change.
Variants§
NullToReady = 10
state change from NULL to READY.
- The element must check if the resources it needs are available. Device sinks and -sources typically try to probe the device to constrain their caps.
- The element opens the device (in case feature need to be probed).
ReadyToPaused = 19
state change from READY to PAUSED.
- The element pads are activated in order to receive data in PAUSED. Streaming threads are started.
- Some elements might need to return
StateChangeReturn::Async
and complete the state change when they have enough information. It is a requirement for sinks to returnStateChangeReturn::Async
and complete the state change when they receive the first buffer orEventType::Eos
(preroll). Sinks also block the dataflow when in PAUSED. - A pipeline resets the running_time to 0.
- Live sources return
StateChangeReturn::NoPreroll
and don’t generate data.
PausedToPlaying = 28
state change from PAUSED to PLAYING.
- Most elements ignore this state change.
- The pipeline selects a
Clock
and distributes this to all the children before setting them to PLAYING. This means that it is only allowed to synchronize on theClock
in the PLAYING state. - The pipeline uses the
Clock
and the running_time to calculate the base_time. The base_time is distributed to all children when performing the state change. - Sink elements stop blocking on the preroll buffer or event and start rendering the data.
- Sinks can post
GST_MESSAGE_EOS
in the PLAYING state. It is not allowed to postGST_MESSAGE_EOS
when not in the PLAYING state. - While streaming in PAUSED or PLAYING elements can create and remove sometimes pads.
- Live sources start generating data and return
StateChangeReturn::Success
.
PlayingToPaused = 35
state change from PLAYING to PAUSED.
- Most elements ignore this state change.
- The pipeline calculates the running_time based on the last selected
Clock
and the base_time. It stores this information to continue playback when going back to the PLAYING state. - Sinks unblock any
Clock
wait calls. - When a sink does not have a pending buffer to play, it returns
StateChangeReturn::Async
from this state change and completes the state change when it receives a new buffer or anEventType::Eos
. - Any queued
GST_MESSAGE_EOS
items are removed since they will be reposted when going back to the PLAYING state. The EOS messages are queued inBin
containers. - Live sources stop generating data and return
StateChangeReturn::NoPreroll
.
PausedToReady = 26
state change from PAUSED to READY.
- Sinks unblock any waits in the preroll.
- Elements unblock any waits on devices
- Chain or get_range functions return
FlowReturn::Flushing
. - The element pads are deactivated so that streaming becomes impossible and all streaming threads are stopped.
- The sink forgets all negotiated formats
- Elements remove all sometimes pads
ReadyToNull = 17
state change from READY to NULL.
- Elements close devices
- Elements reset any internal state.
NullToNull = 9
state change from NULL to NULL. (Since: 1.14)
ReadyToReady = 18
state change from READY to READY, This might happen when going to PAUSED asynchronously failed, in that case elements should make sure they are in a proper, coherent READY state. (Since: 1.14)
PausedToPaused = 27
state change from PAUSED to PAUSED. This might happen when elements were in PLAYING state and ‘lost state’, they should make sure to go back to real ‘PAUSED’ state (prerolling for example). (Since: 1.14)
PlayingToPlaying = 36
state change from PLAYING to PLAYING. (Since: 1.14)
Implementations§
Trait Implementations§
source§impl Clone for StateChange
impl Clone for StateChange
source§fn clone(&self) -> StateChange
fn clone(&self) -> StateChange
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for StateChange
impl Debug for StateChange
source§impl Display for StateChange
impl Display for StateChange
source§impl From<StateChange> for Value
impl From<StateChange> for Value
source§fn from(v: StateChange) -> Self
fn from(v: StateChange) -> Self
source§impl<'a> FromValue<'a> for StateChange
impl<'a> FromValue<'a> for StateChange
§type Checker = GenericValueTypeChecker<StateChange>
type Checker = GenericValueTypeChecker<StateChange>
source§unsafe fn from_value(value: &'a Value) -> Self
unsafe fn from_value(value: &'a Value) -> Self
Value
. Read moresource§impl HasParamSpec for StateChange
impl HasParamSpec for StateChange
type ParamSpec = ParamSpecEnum
§type SetValue = StateChange
type SetValue = StateChange
type BuilderFn = fn(_: &str, _: StateChange) -> ParamSpecEnumBuilder<'_, StateChange>
fn param_spec_builder() -> Self::BuilderFn
source§impl Hash for StateChange
impl Hash for StateChange
source§impl Ord for StateChange
impl Ord for StateChange
source§fn cmp(&self, other: &StateChange) -> Ordering
fn cmp(&self, other: &StateChange) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
source§impl PartialEq for StateChange
impl PartialEq for StateChange
source§impl PartialOrd for StateChange
impl PartialOrd for StateChange
source§impl StaticType for StateChange
impl StaticType for StateChange
source§fn static_type() -> Type
fn static_type() -> Type
Self
.source§impl ToValue for StateChange
impl ToValue for StateChange
source§impl ValueType for StateChange
impl ValueType for StateChange
§type Type = StateChange
type Type = StateChange
Type
from. Read moreimpl Copy for StateChange
impl Eq for StateChange
impl StructuralPartialEq for StateChange
Auto Trait Implementations§
impl Freeze for StateChange
impl RefUnwindSafe for StateChange
impl Send for StateChange
impl Sync for StateChange
impl Unpin for StateChange
impl UnwindSafe for StateChange
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> IntoClosureReturnValue for T
impl<T> IntoClosureReturnValue for T
fn into_closure_return_value(self) -> Option<Value>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§impl<T> PropertyGet for Twhere
T: HasParamSpec,
impl<T> PropertyGet for Twhere
T: HasParamSpec,
source§impl<T> StaticTypeExt for Twhere
T: StaticType,
impl<T> StaticTypeExt for Twhere
T: StaticType,
source§fn ensure_type()
fn ensure_type()
source§impl<T> ToSendValue for T
impl<T> ToSendValue for T
source§fn to_send_value(&self) -> SendValue
fn to_send_value(&self) -> SendValue
SendValue
clone of self
.