gstrtpbasepayload.h 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. /* GStreamer
  2. * Copyright (C) <2005> Wim Taymans <wim@fluendo.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_RTP_BASE_PAYLOAD_H__
  20. #define __GST_RTP_BASE_PAYLOAD_H__
  21. #include <gst/gst.h>
  22. G_BEGIN_DECLS
  23. #define GST_TYPE_RTP_BASE_PAYLOAD \
  24. (gst_rtp_base_payload_get_type())
  25. #define GST_RTP_BASE_PAYLOAD(obj) \
  26. (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_RTP_BASE_PAYLOAD,GstRTPBasePayload))
  27. #define GST_RTP_BASE_PAYLOAD_CLASS(klass) \
  28. (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_RTP_BASE_PAYLOAD,GstRTPBasePayloadClass))
  29. #define GST_RTP_BASE_PAYLOAD_GET_CLASS(obj) \
  30. (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_RTP_BASE_PAYLOAD, GstRTPBasePayloadClass))
  31. #define GST_IS_RTP_BASE_PAYLOAD(obj) \
  32. (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_RTP_BASE_PAYLOAD))
  33. #define GST_IS_RTP_BASE_PAYLOAD_CLASS(klass) \
  34. (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_RTP_BASE_PAYLOAD))
  35. #define GST_RTP_BASE_PAYLOAD_CAST(obj) \
  36. ((GstRTPBasePayload*)(obj))
  37. typedef struct _GstRTPBasePayload GstRTPBasePayload;
  38. typedef struct _GstRTPBasePayloadPrivate GstRTPBasePayloadPrivate;
  39. typedef struct _GstRTPBasePayloadClass GstRTPBasePayloadClass;
  40. /**
  41. * GST_RTP_BASE_PAYLOAD_SINKPAD:
  42. * @payload: a #GstRTPBasePayload
  43. *
  44. * Get access to the sinkpad of @payload.
  45. */
  46. #define GST_RTP_BASE_PAYLOAD_SINKPAD(payload) (GST_RTP_BASE_PAYLOAD (payload)->sinkpad)
  47. /**
  48. * GST_RTP_BASE_PAYLOAD_SRCPAD:
  49. * @payload: a #GstRTPBasePayload
  50. *
  51. * Get access to the srcpad of @payload.
  52. */
  53. #define GST_RTP_BASE_PAYLOAD_SRCPAD(payload) (GST_RTP_BASE_PAYLOAD (payload)->srcpad)
  54. /**
  55. * GST_RTP_BASE_PAYLOAD_PT:
  56. * @payload: a #GstRTPBasePayload
  57. *
  58. * Get access to the configured payload type of @payload.
  59. */
  60. #define GST_RTP_BASE_PAYLOAD_PT(payload) (GST_RTP_BASE_PAYLOAD (payload)->pt)
  61. /**
  62. * GST_RTP_BASE_PAYLOAD_MTU:
  63. * @payload: a #GstRTPBasePayload
  64. *
  65. * Get access to the configured MTU of @payload.
  66. */
  67. #define GST_RTP_BASE_PAYLOAD_MTU(payload) (GST_RTP_BASE_PAYLOAD (payload)->mtu)
  68. struct _GstRTPBasePayload
  69. {
  70. GstElement element;
  71. /*< private >*/
  72. GstPad *sinkpad;
  73. GstPad *srcpad;
  74. guint32 ts_base;
  75. guint16 seqnum_base;
  76. gchar *media;
  77. gchar *encoding_name;
  78. gboolean dynamic;
  79. guint32 clock_rate;
  80. gint32 ts_offset;
  81. guint32 timestamp;
  82. gint16 seqnum_offset;
  83. guint16 seqnum;
  84. gint64 max_ptime;
  85. guint pt;
  86. guint ssrc;
  87. guint current_ssrc;
  88. guint mtu;
  89. GstSegment segment;
  90. guint64 min_ptime;
  91. guint64 ptime; /* in ns */
  92. guint64 ptime_multiple; /* in ns */
  93. /*< private >*/
  94. GstRTPBasePayloadPrivate *priv;
  95. gpointer _gst_reserved[GST_PADDING];
  96. };
  97. /**
  98. * GstRTPBasePayloadClass:
  99. * @parent_class: the parent class
  100. * @get_caps: get desired caps
  101. * @set_caps: configure the payloader
  102. * @handle_buffer: process data
  103. * @sink_event: custom event handling on the sinkpad
  104. * @src_event: custom event handling on the srcpad
  105. * @query: custom query handling
  106. *
  107. * Base class for audio RTP payloader.
  108. */
  109. struct _GstRTPBasePayloadClass
  110. {
  111. GstElementClass parent_class;
  112. /* query accepted caps */
  113. GstCaps * (*get_caps) (GstRTPBasePayload *payload, GstPad * pad, GstCaps * filter);
  114. /* receive caps on the sink pad, configure the payloader. */
  115. gboolean (*set_caps) (GstRTPBasePayload *payload, GstCaps *caps);
  116. /* handle a buffer, perform 0 or more gst_rtp_base_payload_push() on
  117. * the RTP buffers. This function takes ownership of the buffer. */
  118. GstFlowReturn (*handle_buffer) (GstRTPBasePayload *payload,
  119. GstBuffer *buffer);
  120. /* handle events and queries */
  121. gboolean (*sink_event) (GstRTPBasePayload *payload, GstEvent * event);
  122. gboolean (*src_event) (GstRTPBasePayload *payload, GstEvent * event);
  123. gboolean (*query) (GstRTPBasePayload *payload, GstPad *pad, GstQuery * query);
  124. /*< private >*/
  125. gpointer _gst_reserved[GST_PADDING];
  126. };
  127. GType gst_rtp_base_payload_get_type (void);
  128. void gst_rtp_base_payload_set_options (GstRTPBasePayload *payload,
  129. const gchar *media,
  130. gboolean dynamic,
  131. const gchar *encoding_name,
  132. guint32 clock_rate);
  133. gboolean gst_rtp_base_payload_set_outcaps (GstRTPBasePayload *payload,
  134. const gchar *fieldname, ...);
  135. gboolean gst_rtp_base_payload_is_filled (GstRTPBasePayload *payload,
  136. guint size, GstClockTime duration);
  137. GstFlowReturn gst_rtp_base_payload_push (GstRTPBasePayload *payload,
  138. GstBuffer *buffer);
  139. GstFlowReturn gst_rtp_base_payload_push_list (GstRTPBasePayload *payload,
  140. GstBufferList *list);
  141. #ifdef G_DEFINE_AUTOPTR_CLEANUP_FUNC
  142. G_DEFINE_AUTOPTR_CLEANUP_FUNC(GstRTPBasePayload, gst_object_unref)
  143. #endif
  144. G_END_DECLS
  145. #endif /* __GST_RTP_BASE_PAYLOAD_H__ */