diff options
author | Jan Schmidt <jan@centricular.com> | 2015-01-10 21:42:00 +1100 |
---|---|---|
committer | Jan Schmidt <jan@centricular.com> | 2015-01-21 22:27:18 +1100 |
commit | 4bc7d34f57b268ef62abfc8bc19cf3df4d6bc790 (patch) | |
tree | af73743125210b41b8e96e028716f1c589f053f1 /gst/gstclock.h | |
parent | b79b14815e14cab41c84db41cabab7673f7f49bb (diff) | |
download | gstreamer-4bc7d34f57b268ef62abfc8bc19cf3df4d6bc790.tar.gz |
clock: Add gst_clock_add_observation_unapplied()
gst_clock_add_observation_unapplied() adds a new master/slave clock
observation and runs the regression without activating the new
calibration results.
Diffstat (limited to 'gst/gstclock.h')
-rw-r--r-- | gst/gstclock.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gst/gstclock.h b/gst/gstclock.h index 005916bdc5..c2239e59a2 100644 --- a/gst/gstclock.h +++ b/gst/gstclock.h @@ -478,6 +478,12 @@ GstClockTime gst_clock_get_timeout (GstClock *clock); gboolean gst_clock_add_observation (GstClock *clock, GstClockTime slave, GstClockTime master, gdouble *r_squared); +gboolean gst_clock_add_observation_unapplied (GstClock *clock, GstClockTime slave, + GstClockTime master, gdouble *r_squared, + GstClockTime *internal, + GstClockTime *external, + GstClockTime *rate_num, + GstClockTime *rate_denom); /* getting and adjusting internal/external time */ GstClockTime gst_clock_get_internal_time (GstClock *clock); |