gstnettimepacket.h 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /* GStreamer
  2. * Copyright (C) 2005 Andy Wingo <wingo@pobox.com>
  3. *
  4. * This library is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Library General Public
  6. * License as published by the Free Software Foundation; either
  7. * version 2 of the License, or (at your option) any later version.
  8. *
  9. * This library is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * Library General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Library General Public
  15. * License along with this library; if not, write to the
  16. * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  17. * Boston, MA 02110-1301, USA.
  18. */
  19. #ifndef __GST_NET_TIME_PACKET_H__
  20. #define __GST_NET_TIME_PACKET_H__
  21. #include <gst/gst.h>
  22. #include <gio/gio.h>
  23. G_BEGIN_DECLS
  24. /**
  25. * GST_NET_TIME_PACKET_SIZE:
  26. *
  27. * The size of the packets sent between network clocks.
  28. */
  29. #define GST_NET_TIME_PACKET_SIZE 16
  30. typedef struct _GstNetTimePacket GstNetTimePacket;
  31. /**
  32. * GstNetTimePacket:
  33. * @local_time: the local time when this packet was sent
  34. * @remote_time: the remote time observation
  35. *
  36. * Content of a #GstNetTimePacket.
  37. */
  38. struct _GstNetTimePacket {
  39. GstClockTime local_time;
  40. GstClockTime remote_time;
  41. };
  42. GType gst_net_time_packet_get_type(void);
  43. GstNetTimePacket* gst_net_time_packet_new (const guint8 *buffer);
  44. GstNetTimePacket* gst_net_time_packet_copy (const GstNetTimePacket *packet);
  45. void gst_net_time_packet_free (GstNetTimePacket *packet);
  46. guint8* gst_net_time_packet_serialize (const GstNetTimePacket *packet);
  47. GstNetTimePacket* gst_net_time_packet_receive (GSocket * socket,
  48. GSocketAddress ** src_address,
  49. GError ** error);
  50. gboolean gst_net_time_packet_send (const GstNetTimePacket * packet,
  51. GSocket * socket,
  52. GSocketAddress * dest_address,
  53. GError ** error);
  54. #ifdef G_DEFINE_AUTOPTR_CLEANUP_FUNC
  55. G_DEFINE_AUTOPTR_CLEANUP_FUNC(GstNetTimePacket, gst_net_time_packet_free)
  56. #endif
  57. G_END_DECLS
  58. #endif /* __GST_NET_TIME_PACKET_H__ */