gstrtpbasedepayload.h 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. /* GStreamer
  2. * Copyright (C) <2005> Philippe Khalaf <burger@speedy.org>
  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_DEPAYLOAD_H__
  20. #define __GST_RTP_BASE_DEPAYLOAD_H__
  21. #include <gst/gst.h>
  22. #include <gst/rtp/gstrtpbuffer.h>
  23. G_BEGIN_DECLS
  24. #define GST_TYPE_RTP_BASE_DEPAYLOAD (gst_rtp_base_depayload_get_type())
  25. #define GST_RTP_BASE_DEPAYLOAD(obj) \
  26. (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_RTP_BASE_DEPAYLOAD,GstRTPBaseDepayload))
  27. #define GST_RTP_BASE_DEPAYLOAD_CLASS(klass) \
  28. (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_RTP_BASE_DEPAYLOAD,GstRTPBaseDepayloadClass))
  29. #define GST_RTP_BASE_DEPAYLOAD_GET_CLASS(obj) \
  30. (G_TYPE_INSTANCE_GET_CLASS ((obj),GST_TYPE_RTP_BASE_DEPAYLOAD,GstRTPBaseDepayloadClass))
  31. #define GST_IS_RTP_BASE_DEPAYLOAD(obj) \
  32. (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_RTP_BASE_DEPAYLOAD))
  33. #define GST_IS_RTP_BASE_DEPAYLOAD_CLASS(klass) \
  34. (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_RTP_BASE_DEPAYLOAD))
  35. #define GST_RTP_BASE_DEPAYLOAD_CAST(obj) ((GstRTPBaseDepayload *)(obj))
  36. #define GST_RTP_BASE_DEPAYLOAD_SINKPAD(depayload) (GST_RTP_BASE_DEPAYLOAD_CAST (depayload)->sinkpad)
  37. #define GST_RTP_BASE_DEPAYLOAD_SRCPAD(depayload) (GST_RTP_BASE_DEPAYLOAD_CAST (depayload)->srcpad)
  38. typedef struct _GstRTPBaseDepayload GstRTPBaseDepayload;
  39. typedef struct _GstRTPBaseDepayloadClass GstRTPBaseDepayloadClass;
  40. typedef struct _GstRTPBaseDepayloadPrivate GstRTPBaseDepayloadPrivate;
  41. struct _GstRTPBaseDepayload
  42. {
  43. GstElement parent;
  44. GstPad *sinkpad, *srcpad;
  45. /* this attribute must be set by the child */
  46. guint clock_rate;
  47. GstSegment segment;
  48. gboolean need_newsegment;
  49. /*< private >*/
  50. GstRTPBaseDepayloadPrivate *priv;
  51. gpointer _gst_reserved[GST_PADDING];
  52. };
  53. /**
  54. * GstRTPBaseDepayloadClass:
  55. * @parent_class: the parent class
  56. * @set_caps: configure the depayloader
  57. * @process: process incoming rtp packets
  58. * @packet_lost: signal the depayloader about packet loss
  59. * @handle_event: custom event handling
  60. *
  61. * Base class for audio RTP payloader.
  62. */
  63. struct _GstRTPBaseDepayloadClass
  64. {
  65. GstElementClass parent_class;
  66. /* virtuals, inform the subclass of the caps. */
  67. gboolean (*set_caps) (GstRTPBaseDepayload *filter, GstCaps *caps);
  68. /* pure virtual function, child must implement either this method
  69. * or the process_rtp_packet virtual method to process incoming
  70. * rtp packets. If the child returns a buffer without a valid timestamp,
  71. * the timestamp of @in will be applied to the result buffer and the
  72. * buffer will be pushed. If this function returns %NULL, nothing is
  73. * pushed. */
  74. GstBuffer * (*process) (GstRTPBaseDepayload *base, GstBuffer *in);
  75. /* non-pure function used to to signal the depayloader about packet loss. the
  76. * timestamp and duration are the estimated values of the lost packet.
  77. * The default implementation of this message pushes a segment update. */
  78. gboolean (*packet_lost) (GstRTPBaseDepayload *filter, GstEvent *event);
  79. /* the default implementation does the default actions for events but
  80. * implementation can override. */
  81. gboolean (*handle_event) (GstRTPBaseDepayload * filter, GstEvent * event);
  82. /* Optional. Same as the process virtual function, but slightly more
  83. * efficient, since it is passed the rtp buffer structure that has already
  84. * been mapped (with GST_MAP_READ) by the base class and thus does not have
  85. * to be mapped again by the subclass. Can be used by the subclass to process
  86. * incoming rtp packets. If the subclass returns a buffer without a valid
  87. * timestamp, the timestamp of the input buffer will be applied to the result
  88. * buffer and the output buffer will be pushed out. If this function returns
  89. * %NULL, nothing is pushed out.
  90. *
  91. * Since: 1.6
  92. */
  93. GstBuffer * (*process_rtp_packet) (GstRTPBaseDepayload *base, GstRTPBuffer * rtp_buffer);
  94. /*< private >*/
  95. gpointer _gst_reserved[GST_PADDING - 1];
  96. };
  97. GType gst_rtp_base_depayload_get_type (void);
  98. GstFlowReturn gst_rtp_base_depayload_push (GstRTPBaseDepayload *filter, GstBuffer *out_buf);
  99. GstFlowReturn gst_rtp_base_depayload_push_list (GstRTPBaseDepayload *filter, GstBufferList *out_list);
  100. #ifdef G_DEFINE_AUTOPTR_CLEANUP_FUNC
  101. G_DEFINE_AUTOPTR_CLEANUP_FUNC(GstRTPBaseDepayload, gst_object_unref)
  102. #endif
  103. G_END_DECLS
  104. #endif /* __GST_RTP_BASE_DEPAYLOAD_H__ */