gstptpclock.h 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. /* GStreamer
  2. * Copyright (C) 2015 Sebastian Dröge <sebastian@centricular.com>
  3. *
  4. *
  5. * This library is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Library General Public
  7. * License as published by the Free Software Foundation; either
  8. * version 2 of the License, or (at your option) any later version.
  9. *
  10. * This library is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * Library General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Library General Public
  16. * License along with this library; if not, write to the
  17. * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  18. * Boston, MA 02110-1301, USA.
  19. */
  20. #ifndef __GST_PTP_CLOCK_H__
  21. #define __GST_PTP_CLOCK_H__
  22. #include <gst/gst.h>
  23. #include <gst/gstsystemclock.h>
  24. G_BEGIN_DECLS
  25. #define GST_TYPE_PTP_CLOCK \
  26. (gst_ptp_clock_get_type())
  27. #define GST_PTP_CLOCK(obj) \
  28. (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_PTP_CLOCK,GstPtpClock))
  29. #define GST_PTP_CLOCK_CLASS(klass) \
  30. (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_PTP_CLOCK,GstPtpClockClass))
  31. #define GST_IS_PTP_CLOCK(obj) \
  32. (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_PTP_CLOCK))
  33. #define GST_IS_PTP_CLOCK_CLASS(klass) \
  34. (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_PTP_CLOCK))
  35. typedef struct _GstPtpClock GstPtpClock;
  36. typedef struct _GstPtpClockClass GstPtpClockClass;
  37. typedef struct _GstPtpClockPrivate GstPtpClockPrivate;
  38. /**
  39. * GstPtpClock:
  40. *
  41. * Opaque #GstPtpClock structure.
  42. */
  43. struct _GstPtpClock {
  44. GstSystemClock clock;
  45. /*< private >*/
  46. GstPtpClockPrivate *priv;
  47. gpointer _gst_reserved[GST_PADDING];
  48. };
  49. /**
  50. * GstPtpClockClass:
  51. * @parent_class: parented to #GstSystemClockClass
  52. *
  53. * Opaque #GstPtpClockClass structure.
  54. */
  55. struct _GstPtpClockClass {
  56. GstSystemClockClass parent_class;
  57. /*< private >*/
  58. gpointer _gst_reserved[GST_PADDING];
  59. };
  60. /**
  61. * GST_PTP_CLOCK_ID_NONE:
  62. * PTP clock identification that can be passed to gst_ptp_init() to
  63. * automatically select one based on the MAC address of interfaces
  64. */
  65. #define GST_PTP_CLOCK_ID_NONE ((guint64) -1)
  66. GType gst_ptp_clock_get_type (void);
  67. gboolean gst_ptp_is_supported (void);
  68. gboolean gst_ptp_is_initialized (void);
  69. gboolean gst_ptp_init (guint64 clock_id,
  70. gchar ** interfaces);
  71. void gst_ptp_deinit (void);
  72. #define GST_PTP_STATISTICS_NEW_DOMAIN_FOUND "GstPtpStatisticsNewDomainFound"
  73. #define GST_PTP_STATISTICS_BEST_MASTER_CLOCK_SELECTED "GstPtpStatisticsBestMasterClockSelected"
  74. #define GST_PTP_STATISTICS_PATH_DELAY_MEASURED "GstPtpStatisticsPathDelayMeasured"
  75. #define GST_PTP_STATISTICS_TIME_UPDATED "GstPtpStatisticsTimeUpdated"
  76. /**
  77. * GstPtpStatisticsCallback:
  78. * @domain: PTP domain identifier
  79. * @stats: New statistics
  80. * @user_data: Data passed to gst_ptp_statistics_callback_add()
  81. *
  82. * The statistics can be the following structures:
  83. *
  84. * GST_PTP_STATISTICS_NEW_DOMAIN_FOUND:
  85. * "domain" G_TYPE_UINT The domain identifier of the domain
  86. * "clock" GST_TYPE_CLOCK The internal clock that is slaved to the
  87. * PTP domain
  88. *
  89. * GST_PTP_STATISTICS_BEST_MASTER_CLOCK_SELECTED:
  90. * "domain" G_TYPE_UINT The domain identifier of the domain
  91. * "master-clock-id" G_TYPE_UINT64 PTP clock identifier of the selected master
  92. * clock
  93. * "master-clock-port" G_TYPE_UINT PTP port number of the selected master clock
  94. * "grandmaster-clock-id" G_TYPE_UINT64 PTP clock identifier of the grandmaster clock
  95. *
  96. * GST_PTP_STATISTICS_PATH_DELAY_MEASURED:
  97. * "domain" G_TYPE_UINT The domain identifier of the domain
  98. * "mean-path-delay-avg" GST_TYPE_CLOCK_TIME Average mean path delay
  99. * "mean-path-delay" GST_TYPE_CLOCK_TIME Latest mean path delay
  100. * "delay-request-delay" GST_TYPE_CLOCK_TIME Delay of DELAY_REQ / DELAY_RESP messages
  101. *
  102. * GST_PTP_STATISTICS_TIME_UPDATED:
  103. * "domain" G_TYPE_UINT The domain identifier of the domain
  104. * "mean-path-delay-avg" GST_TYPE_CLOCK_TIME Average mean path delay
  105. * "local-time" GST_TYPE_CLOCK_TIME Local time that corresponds to ptp-time
  106. * "ptp-time" GST_TYPE_CLOCK_TIME Newly measured PTP time at local-time
  107. * "estimated-ptp-time" GST_TYPE_CLOCK_TIME Estimated PTP time based on previous measurements
  108. * "discontinuity" G_TYPE_INT64 Difference between estimated and measured PTP time
  109. * "synced" G_TYPE_BOOLEAN Currently synced to the remote clock
  110. * "r-squared" G_TYPE_DOUBLE R² of clock estimation regression
  111. * "internal-time" GST_TYPE_CLOCK_TIME Internal time clock parameter
  112. * "external-time" GST_TYPE_CLOCK_TIME External time clock parameter
  113. * "rate-num" G_TYPE_UINT64 Internal/external rate numerator
  114. * "rate-den" G_TYPE_UINT64 Internal/external rate denominator
  115. * "rate" G_TYPE_DOUBLE Internal/external rate
  116. *
  117. * If %FALSE is returned, the callback is removed and never called again.
  118. *
  119. */
  120. typedef gboolean (*GstPtpStatisticsCallback) (guint8 domain,
  121. const GstStructure * stats,
  122. gpointer user_data);
  123. gulong gst_ptp_statistics_callback_add (GstPtpStatisticsCallback callback,
  124. gpointer user_data, GDestroyNotify destroy_data);
  125. void gst_ptp_statistics_callback_remove (gulong id);
  126. GstClock* gst_ptp_clock_new (const gchar *name,
  127. guint domain);
  128. #ifdef G_DEFINE_AUTOPTR_CLEANUP_FUNC
  129. G_DEFINE_AUTOPTR_CLEANUP_FUNC(GstPtpClock, gst_object_unref)
  130. #endif
  131. G_END_DECLS
  132. #endif /* __GST_PTP_CLOCK_H__ */