Package | Description |
---|---|
org.gstreamer | |
org.gstreamer.lowlevel | |
org.gstreamer.media.event | |
org.gstreamer.message |
Modifier and Type | Method and Description |
---|---|
State |
Element.getState()
Gets the state of the element.
|
State |
Element.getState(long timeout)
Gets the state of the element.
|
State |
Element.getState(long timeout,
java.util.concurrent.TimeUnit units)
Gets the state of the element.
|
static State |
State.valueOf(int state)
Returns the enum constant of this type with the specified integer value.
|
static State |
State.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static State[] |
State.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
void |
Element.getState(long timeout,
State[] states)
Gets the state of the element.
|
StateChangeReturn |
Element.setState(State state)
Sets the state of the element.
|
void |
Bus.STATE_CHANGED.stateChanged(GstObject source,
State old,
State current,
State pending)
|
Modifier and Type | Field and Description |
---|---|
State |
GstElementAPI.GstElementStruct.current_state |
State |
GstElementAPI.GstElementStruct.next_state |
State |
GstElementAPI.GstElementStruct.pending_state |
Modifier and Type | Method and Description |
---|---|
StateChangeReturn |
GstElementAPI.GstElementClass.SetState.callback(Element element,
State state) |
StateChangeReturn |
GstElementAPI.gst_element_get_state(Element elem,
State[] state,
State[] pending,
ClockTime timeout) |
StateChangeReturn |
GstElementAPI.gst_element_get_state(Element elem,
State[] state,
State[] pending,
ClockTime timeout) |
StateChangeReturn |
GstElementAPI.gst_element_get_state(Element elem,
State[] state,
State[] pending,
long timeout) |
StateChangeReturn |
GstElementAPI.gst_element_get_state(Element elem,
State[] state,
State[] pending,
long timeout) |
StateChangeReturn |
GstElementAPI.gst_element_set_state(Element elem,
State state) |
Message |
GstMessageAPI.gst_message_new_state_changed(GstObject src,
State oldstate,
State newstate,
State pending) |
void |
GstMessageAPI.gst_message_parse_state_changed(Message msg,
State[] old,
State[] current,
State[] pending) |
void |
GstMessageAPI.gst_message_parse_state_changed(Message msg,
State[] old,
State[] current,
State[] pending) |
void |
GstMessageAPI.gst_message_parse_state_changed(Message msg,
State[] old,
State[] current,
State[] pending) |
Modifier and Type | Field and Description |
---|---|
State |
TransitionEvent.currentState |
State |
TransitionEvent.pendingState |
State |
TransitionEvent.previousState |
Modifier and Type | Method and Description |
---|---|
State |
TransitionEvent.getCurrentState() |
State |
TransitionEvent.getPendingState() |
State |
TransitionEvent.getPreviousState() |
State |
TransitionEvent.getTargetState() |
Constructor and Description |
---|
EndOfMediaEvent(MediaPlayer source,
State previous,
State current,
State pending) |
PauseEvent(MediaPlayer source,
State previous,
State current,
State pending,
ClockTime mediaTime) |
StartEvent(MediaPlayer from,
State previous,
State current,
State target,
ClockTime mediaTime) |
StopEvent(MediaPlayer from,
State previous,
State current,
State target,
ClockTime mediaTime) |
TransitionEvent(MediaPlayer player,
State previousState,
State currentState,
State pendingState) |
Modifier and Type | Method and Description |
---|---|
State |
StateChangedMessage.getNewState()
Gets the new (current) state.
|
State |
StateChangedMessage.getOldState()
Gets the previous state.
|
State |
StateChangedMessage.getPendingState()
Gets the pending (target) state.
|
Constructor and Description |
---|
StateChangedMessage(GstObject src,
State old,
State current,
State pending)
Creates a new state-changed message.
|