gstrtpbuffer.h 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. /* GStreamer
  2. * Copyright (C) <2005> Philippe Khalaf <burger@speedy.org>
  3. * <2005> Wim Taymans <wim@fluendo.com>
  4. *
  5. * gstrtpbuffer.h: various helper functions to manipulate buffers
  6. * with RTP payload.
  7. *
  8. * This library is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Library General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2 of the License, or (at your option) any later version.
  12. *
  13. * This library is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Library General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Library General Public
  19. * License along with this library; if not, write to the
  20. * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  21. * Boston, MA 02110-1301, USA.
  22. */
  23. #ifndef __GST_RTPBUFFER_H__
  24. #define __GST_RTPBUFFER_H__
  25. #include <gst/gst.h>
  26. #include <gst/rtp/gstrtppayloads.h>
  27. G_BEGIN_DECLS
  28. /**
  29. * GST_RTP_VERSION:
  30. *
  31. * The supported RTP version 2.
  32. */
  33. #define GST_RTP_VERSION 2
  34. typedef struct _GstRTPBuffer GstRTPBuffer;
  35. /**
  36. * GstRTPBuffer:
  37. * @buffer: pointer to RTP buffer
  38. * @state: internal state
  39. * @data: array of data
  40. * @size: array of size
  41. * @map: array of #GstMapInfo
  42. *
  43. * Data structure that points to an RTP packet.
  44. * The size of the structure is made public to allow stack allocations.
  45. */
  46. struct _GstRTPBuffer
  47. {
  48. GstBuffer *buffer;
  49. guint state;
  50. gpointer data[4];
  51. gsize size[4];
  52. GstMapInfo map[4];
  53. };
  54. #define GST_RTP_BUFFER_INIT { NULL, 0, { NULL, NULL, NULL, NULL}, { 0, 0, 0, 0 }, \
  55. { GST_MAP_INFO_INIT, GST_MAP_INFO_INIT, GST_MAP_INFO_INIT, GST_MAP_INFO_INIT} }
  56. /* creating buffers */
  57. void gst_rtp_buffer_allocate_data (GstBuffer *buffer, guint payload_len,
  58. guint8 pad_len, guint8 csrc_count);
  59. GstBuffer* gst_rtp_buffer_new_take_data (gpointer data, gsize len);
  60. GstBuffer* gst_rtp_buffer_new_copy_data (gpointer data, gsize len);
  61. GstBuffer* gst_rtp_buffer_new_allocate (guint payload_len, guint8 pad_len, guint8 csrc_count);
  62. GstBuffer* gst_rtp_buffer_new_allocate_len (guint packet_len, guint8 pad_len, guint8 csrc_count);
  63. guint gst_rtp_buffer_calc_header_len (guint8 csrc_count);
  64. guint gst_rtp_buffer_calc_packet_len (guint payload_len, guint8 pad_len, guint8 csrc_count);
  65. guint gst_rtp_buffer_calc_payload_len (guint packet_len, guint8 pad_len, guint8 csrc_count);
  66. gboolean gst_rtp_buffer_map (GstBuffer *buffer, GstMapFlags flags, GstRTPBuffer *rtp);
  67. void gst_rtp_buffer_unmap (GstRTPBuffer *rtp);
  68. void gst_rtp_buffer_set_packet_len (GstRTPBuffer *rtp, guint len);
  69. guint gst_rtp_buffer_get_packet_len (GstRTPBuffer *rtp);
  70. guint gst_rtp_buffer_get_header_len (GstRTPBuffer *rtp);
  71. guint8 gst_rtp_buffer_get_version (GstRTPBuffer *rtp);
  72. void gst_rtp_buffer_set_version (GstRTPBuffer *rtp, guint8 version);
  73. gboolean gst_rtp_buffer_get_padding (GstRTPBuffer *rtp);
  74. void gst_rtp_buffer_set_padding (GstRTPBuffer *rtp, gboolean padding);
  75. void gst_rtp_buffer_pad_to (GstRTPBuffer *rtp, guint len);
  76. gboolean gst_rtp_buffer_get_extension (GstRTPBuffer *rtp);
  77. void gst_rtp_buffer_set_extension (GstRTPBuffer *rtp, gboolean extension);
  78. gboolean gst_rtp_buffer_get_extension_data (GstRTPBuffer *rtp, guint16 *bits,
  79. gpointer *data, guint *wordlen);
  80. GBytes* gst_rtp_buffer_get_extension_bytes (GstRTPBuffer *rtp, guint16 *bits);
  81. gboolean gst_rtp_buffer_set_extension_data (GstRTPBuffer *rtp, guint16 bits, guint16 length);
  82. guint32 gst_rtp_buffer_get_ssrc (GstRTPBuffer *rtp);
  83. void gst_rtp_buffer_set_ssrc (GstRTPBuffer *rtp, guint32 ssrc);
  84. guint8 gst_rtp_buffer_get_csrc_count (GstRTPBuffer *rtp);
  85. guint32 gst_rtp_buffer_get_csrc (GstRTPBuffer *rtp, guint8 idx);
  86. void gst_rtp_buffer_set_csrc (GstRTPBuffer *rtp, guint8 idx, guint32 csrc);
  87. gboolean gst_rtp_buffer_get_marker (GstRTPBuffer *rtp);
  88. void gst_rtp_buffer_set_marker (GstRTPBuffer *rtp, gboolean marker);
  89. guint8 gst_rtp_buffer_get_payload_type (GstRTPBuffer *rtp);
  90. void gst_rtp_buffer_set_payload_type (GstRTPBuffer *rtp, guint8 payload_type);
  91. guint16 gst_rtp_buffer_get_seq (GstRTPBuffer *rtp);
  92. void gst_rtp_buffer_set_seq (GstRTPBuffer *rtp, guint16 seq);
  93. guint32 gst_rtp_buffer_get_timestamp (GstRTPBuffer *rtp);
  94. void gst_rtp_buffer_set_timestamp (GstRTPBuffer *rtp, guint32 timestamp);
  95. GstBuffer* gst_rtp_buffer_get_payload_buffer (GstRTPBuffer *rtp);
  96. GstBuffer* gst_rtp_buffer_get_payload_subbuffer (GstRTPBuffer *rtp, guint offset, guint len);
  97. guint gst_rtp_buffer_get_payload_len (GstRTPBuffer *rtp);
  98. gpointer gst_rtp_buffer_get_payload (GstRTPBuffer *rtp);
  99. GBytes* gst_rtp_buffer_get_payload_bytes (GstRTPBuffer *rtp);
  100. /* some helpers */
  101. guint32 gst_rtp_buffer_default_clock_rate (guint8 payload_type);
  102. gint gst_rtp_buffer_compare_seqnum (guint16 seqnum1, guint16 seqnum2);
  103. guint64 gst_rtp_buffer_ext_timestamp (guint64 *exttimestamp, guint32 timestamp);
  104. gboolean gst_rtp_buffer_get_extension_onebyte_header (GstRTPBuffer *rtp,
  105. guint8 id,
  106. guint nth,
  107. gpointer * data,
  108. guint * size);
  109. gboolean gst_rtp_buffer_get_extension_twobytes_header (GstRTPBuffer *rtp,
  110. guint8 * appbits,
  111. guint8 id,
  112. guint nth,
  113. gpointer * data,
  114. guint * size);
  115. gboolean gst_rtp_buffer_add_extension_onebyte_header (GstRTPBuffer *rtp,
  116. guint8 id,
  117. gpointer data,
  118. guint size);
  119. gboolean gst_rtp_buffer_add_extension_twobytes_header (GstRTPBuffer *rtp,
  120. guint8 appbits,
  121. guint8 id,
  122. gpointer data,
  123. guint size);
  124. /**
  125. * GstRTPBufferMapFlags:
  126. * @GST_RTP_BUFFER_MAP_FLAG_SKIP_PADDING: Skip mapping and validation of RTP
  127. * padding and RTP pad count when present. Useful for buffers where
  128. * the padding may be encrypted.
  129. * @GST_RTP_BUFFER_MAP_FLAG_LAST: Offset to define more flags
  130. *
  131. * Additional mapping flags for gst_rtp_buffer_map().
  132. *
  133. * Since: 1.6.1
  134. */
  135. typedef enum {
  136. GST_RTP_BUFFER_MAP_FLAG_SKIP_PADDING = (GST_MAP_FLAG_LAST << 0),
  137. GST_RTP_BUFFER_MAP_FLAG_LAST = (GST_MAP_FLAG_LAST << 8)
  138. /* 8 more flags possible afterwards */
  139. } GstRTPBufferMapFlags;
  140. G_END_DECLS
  141. #endif /* __GST_RTPBUFFER_H__ */