Uses of Class
org.gstreamer.State

Packages that use State
org.gstreamer   
org.gstreamer.media   
org.gstreamer.media.event   
org.gstreamer.message   
 

Uses of State in org.gstreamer
 

Methods in org.gstreamer that return State
 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.
 

Methods in org.gstreamer with parameters of type State
 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)
          Called when a Pipeline element executes a State change.
 

Uses of State in org.gstreamer.media
 

Fields in org.gstreamer.media declared as State
protected  State PipelineMediaPlayer.currentState
           
 

Uses of State in org.gstreamer.media.event
 

Fields in org.gstreamer.media.event declared as State
 State TransitionEvent.currentState
           
 State TransitionEvent.pendingState
           
 State TransitionEvent.previousState
           
 

Methods in org.gstreamer.media.event that return State
 State TransitionEvent.getCurrentState()
           
 State TransitionEvent.getPendingState()
           
 State TransitionEvent.getPreviousState()
           
 State TransitionEvent.getTargetState()
           
 

Constructors in org.gstreamer.media.event with parameters of type State
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)
           
 

Uses of State in org.gstreamer.message
 

Methods in org.gstreamer.message that return State
 State StateChangedMessage.getNewState()
          Gets the new (current) state.
 State StateChangedMessage.getOldState()
          Gets the previous state.
 State StateChangedMessage.getPendingState()
          Gets the pending (target) state.
 

Constructors in org.gstreamer.message with parameters of type State
StateChangedMessage(GstObject src, State old, State current, State pending)
          Creates a new state-changed message.