gstnetclientclock.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. /* GStreamer
  2. * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
  3. * 2005 Wim Taymans <wim@fluendo.com>
  4. * 2005 Andy Wingo <wingo@pobox.com>
  5. * Copyright (C) 2012 Collabora Ltd. <tim.muller@collabora.co.uk>
  6. *
  7. * gstnetclientclock.h: clock that synchronizes itself to a time provider over
  8. * the network
  9. *
  10. * This library is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU Library General Public
  12. * License as published by the Free Software Foundation; either
  13. * version 2 of the License, or (at your option) any later version.
  14. *
  15. * This library is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  18. * Library General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU Library General Public
  21. * License along with this library; if not, write to the
  22. * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  23. * Boston, MA 02110-1301, USA.
  24. */
  25. #ifndef __GST_NET_CLIENT_CLOCK_H__
  26. #define __GST_NET_CLIENT_CLOCK_H__
  27. #include <gst/gst.h>
  28. #include <gst/gstsystemclock.h>
  29. G_BEGIN_DECLS
  30. #define GST_TYPE_NET_CLIENT_CLOCK \
  31. (gst_net_client_clock_get_type())
  32. #define GST_NET_CLIENT_CLOCK(obj) \
  33. (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_NET_CLIENT_CLOCK,GstNetClientClock))
  34. #define GST_NET_CLIENT_CLOCK_CLASS(klass) \
  35. (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_NET_CLIENT_CLOCK,GstNetClientClockClass))
  36. #define GST_IS_NET_CLIENT_CLOCK(obj) \
  37. (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_NET_CLIENT_CLOCK))
  38. #define GST_IS_NET_CLIENT_CLOCK_CLASS(klass) \
  39. (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_NET_CLIENT_CLOCK))
  40. typedef struct _GstNetClientClock GstNetClientClock;
  41. typedef struct _GstNetClientClockClass GstNetClientClockClass;
  42. typedef struct _GstNetClientClockPrivate GstNetClientClockPrivate;
  43. /**
  44. * GstNetClientClock:
  45. *
  46. * Opaque #GstNetClientClock structure.
  47. */
  48. struct _GstNetClientClock {
  49. GstSystemClock clock;
  50. /*< private >*/
  51. GstNetClientClockPrivate *priv;
  52. gpointer _gst_reserved[GST_PADDING];
  53. };
  54. struct _GstNetClientClockClass {
  55. GstSystemClockClass parent_class;
  56. /*< private >*/
  57. gpointer _gst_reserved[GST_PADDING];
  58. };
  59. GType gst_net_client_clock_get_type (void);
  60. GstClock* gst_net_client_clock_new (const gchar *name, const gchar *remote_address,
  61. gint remote_port, GstClockTime base_time);
  62. #define GST_TYPE_NTP_CLOCK \
  63. (gst_ntp_clock_get_type())
  64. #define GST_NTP_CLOCK(obj) \
  65. (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_NTP_CLOCK,GstNtpClock))
  66. #define GST_NTP_CLOCK_CLASS(klass) \
  67. (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_NTP_CLOCK,GstNtpClockClass))
  68. #define GST_IS_NTP_CLOCK(obj) \
  69. (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_NTP_CLOCK))
  70. #define GST_IS_NTP_CLOCK_CLASS(klass) \
  71. (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_NTP_CLOCK))
  72. typedef struct _GstNetClientClock GstNtpClock;
  73. typedef struct _GstNetClientClockClass GstNtpClockClass;
  74. GType gst_ntp_clock_get_type (void);
  75. GstClock* gst_ntp_clock_new (const gchar *name, const gchar *remote_address,
  76. gint remote_port, GstClockTime base_time);
  77. #ifdef G_DEFINE_AUTOPTR_CLEANUP_FUNC
  78. G_DEFINE_AUTOPTR_CLEANUP_FUNC(GstNetClientClock, gst_object_unref)
  79. #endif
  80. #ifdef G_DEFINE_AUTOPTR_CLEANUP_FUNC
  81. G_DEFINE_AUTOPTR_CLEANUP_FUNC(GstNtpClock, gst_object_unref)
  82. #endif
  83. G_END_DECLS
  84. #endif /* __GST_NET_CLIENT_CLOCK_H__ */