Uses of Class
org.gstreamer.Clock

Packages that use Clock
org.gstreamer   
org.gstreamer.lowlevel   
 

Uses of Clock in org.gstreamer
 

Methods in org.gstreamer that return Clock
 Clock Element.getClock()
          Gets the currently configured clock of the element.
 Clock Pipeline.getClock()
          Return the current Clock used by the pipeline.
 Clock Clock.getMaster()
          Gets the master clock that this clock is slaved to or null when the clock is not slaved to any master clock.
 

Methods in org.gstreamer with parameters of type Clock
 boolean Pipeline.setClock(Clock clock)
          Set the clock for pipeline.
 boolean Clock.setMaster(Clock master)
          Set master as the master clock for this clock.
 void Pipeline.useClock(Clock clock)
          Force the Pipeline to use the a specific clock.
 

Uses of Clock in org.gstreamer.lowlevel
 

Methods in org.gstreamer.lowlevel that return Clock
 Clock GstClockAPI.gst_clock_get_master(Clock clock)
           
 Clock GstElementAPI.gst_element_get_clock(Element element)
           
 Clock GstPipelineAPI.gst_pipeline_get_clock(Pipeline pipeline)
           
 

Methods in org.gstreamer.lowlevel with parameters of type Clock
 boolean GstClockAPI.GstClockCallback.callback(Clock clock, ClockTime time, ClockID id, com.sun.jna.Pointer user_data)
           
 boolean GstClockAPI.gst_clock_add_observation(Clock clock, ClockTime slave, ClockTime Master, double[] r_squared)
           
 ClockTime GstClockAPI.gst_clock_adjust_unlocked(Clock clock, ClockTime internal)
           
 void GstClockAPI.gst_clock_get_calibration(Clock clock, long[] internal, long[] external, long[] rate_num, long[] rate_denom)
           
 ClockTime GstClockAPI.gst_clock_get_internal_time(Clock clock)
           
 Clock GstClockAPI.gst_clock_get_master(Clock clock)
           
 ClockTime GstClockAPI.gst_clock_get_resolution(Clock clock)
           
 ClockTime GstClockAPI.gst_clock_get_time(Clock clock)
           
 ClockID GstClockAPI.gst_clock_new_periodic_id(Clock clock, ClockTime start_time, ClockTime interval)
           
 ClockID GstClockAPI.gst_clock_new_single_shot_id(Clock clock, ClockTime time)
           
 void GstClockAPI.gst_clock_set_calibration(Clock clock, ClockTime internal, ClockTime external, ClockTime rate_num, ClockTime rate_denom)
           
 boolean GstClockAPI.gst_clock_set_master(Clock clock, Clock master)
           
 ClockTime GstClockAPI.gst_clock_set_resolution(Clock clock, ClockTime resolution)
           
 ClockTime GstClockAPI.gst_clock_unadjust_unlocked(Clock clock, ClockTime external)
           
 boolean GstElementAPI.gst_element_set_clock(Element element, Clock clock)
           
 Message GstMessageAPI.gst_message_new_clock_lost(GstObject src, Clock clock)
           
 Message GstMessageAPI.gst_message_new_clock_provide(GstObject src, Clock clock, boolean ready)
           
 Message GstMessageAPI.gst_message_new_new_clock(GstObject src, Clock clock)
           
 boolean GstPipelineAPI.gst_pipeline_set_clock(Pipeline pipeline, Clock clock)
           
 void GstPipelineAPI.gst_pipeline_use_clock(Pipeline pipeline, Clock clock)