gstrtcpbuffer.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330
  1. /* GStreamer
  2. * Copyright (C) <2007> Wim Taymans <wim@fluendo.com>
  3. *
  4. * gstrtcpbuffer.h: various helper functions to manipulate buffers
  5. * with RTCP payload.
  6. *
  7. * This library is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Library General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2 of the License, or (at your option) any later version.
  11. *
  12. * This library is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Library General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Library General Public
  18. * License along with this library; if not, write to the
  19. * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  20. * Boston, MA 02110-1301, USA.
  21. */
  22. #ifndef __GST_RTCPBUFFER_H__
  23. #define __GST_RTCPBUFFER_H__
  24. #include <gst/gst.h>
  25. G_BEGIN_DECLS
  26. /**
  27. * GST_RTCP_VERSION:
  28. *
  29. * The supported RTCP version 2.
  30. */
  31. #define GST_RTCP_VERSION 2
  32. /**
  33. * GstRTCPType:
  34. * @GST_RTCP_TYPE_INVALID: Invalid type
  35. * @GST_RTCP_TYPE_SR: Sender report
  36. * @GST_RTCP_TYPE_RR: Receiver report
  37. * @GST_RTCP_TYPE_SDES: Source description
  38. * @GST_RTCP_TYPE_BYE: Goodbye
  39. * @GST_RTCP_TYPE_APP: Application defined
  40. * @GST_RTCP_TYPE_RTPFB: Transport layer feedback.
  41. * @GST_RTCP_TYPE_PSFB: Payload-specific feedback.
  42. *
  43. * Different RTCP packet types.
  44. */
  45. typedef enum
  46. {
  47. GST_RTCP_TYPE_INVALID = 0,
  48. GST_RTCP_TYPE_SR = 200,
  49. GST_RTCP_TYPE_RR = 201,
  50. GST_RTCP_TYPE_SDES = 202,
  51. GST_RTCP_TYPE_BYE = 203,
  52. GST_RTCP_TYPE_APP = 204,
  53. GST_RTCP_TYPE_RTPFB = 205,
  54. GST_RTCP_TYPE_PSFB = 206
  55. } GstRTCPType;
  56. /* FIXME 2.0: backwards compatibility define for enum typo */
  57. #define GST_RTCP_RTPFB_TYPE_RCTP_SR_REQ GST_RTCP_RTPFB_TYPE_RTCP_SR_REQ
  58. /**
  59. * GstRTCPFBType:
  60. * @GST_RTCP_FB_TYPE_INVALID: Invalid type
  61. * @GST_RTCP_RTPFB_TYPE_NACK: Generic NACK
  62. * @GST_RTCP_RTPFB_TYPE_TMMBR: Temporary Maximum Media Stream Bit Rate Request
  63. * @GST_RTCP_RTPFB_TYPE_TMMBN: Temporary Maximum Media Stream Bit Rate
  64. * Notification
  65. * @GST_RTCP_RTPFB_TYPE_RTCP_SR_REQ: Request an SR packet for early
  66. * synchronization
  67. * @GST_RTCP_PSFB_TYPE_PLI: Picture Loss Indication
  68. * @GST_RTCP_PSFB_TYPE_SLI: Slice Loss Indication
  69. * @GST_RTCP_PSFB_TYPE_RPSI: Reference Picture Selection Indication
  70. * @GST_RTCP_PSFB_TYPE_AFB: Application layer Feedback
  71. * @GST_RTCP_PSFB_TYPE_FIR: Full Intra Request Command
  72. * @GST_RTCP_PSFB_TYPE_TSTR: Temporal-Spatial Trade-off Request
  73. * @GST_RTCP_PSFB_TYPE_TSTN: Temporal-Spatial Trade-off Notification
  74. * @GST_RTCP_PSFB_TYPE_VBCN: Video Back Channel Message
  75. *
  76. * Different types of feedback messages.
  77. */
  78. typedef enum
  79. {
  80. /* generic */
  81. GST_RTCP_FB_TYPE_INVALID = 0,
  82. /* RTPFB types */
  83. GST_RTCP_RTPFB_TYPE_NACK = 1,
  84. /* RTPFB types assigned in RFC 5104 */
  85. GST_RTCP_RTPFB_TYPE_TMMBR = 3,
  86. GST_RTCP_RTPFB_TYPE_TMMBN = 4,
  87. /* RTPFB types assigned in RFC 6051 */
  88. GST_RTCP_RTPFB_TYPE_RTCP_SR_REQ = 5,
  89. /* PSFB types */
  90. GST_RTCP_PSFB_TYPE_PLI = 1,
  91. GST_RTCP_PSFB_TYPE_SLI = 2,
  92. GST_RTCP_PSFB_TYPE_RPSI = 3,
  93. GST_RTCP_PSFB_TYPE_AFB = 15,
  94. /* PSFB types assigned in RFC 5104 */
  95. GST_RTCP_PSFB_TYPE_FIR = 4,
  96. GST_RTCP_PSFB_TYPE_TSTR = 5,
  97. GST_RTCP_PSFB_TYPE_TSTN = 6,
  98. GST_RTCP_PSFB_TYPE_VBCN = 7,
  99. } GstRTCPFBType;
  100. /**
  101. * GstRTCPSDESType:
  102. * @GST_RTCP_SDES_INVALID: Invalid SDES entry
  103. * @GST_RTCP_SDES_END: End of SDES list
  104. * @GST_RTCP_SDES_CNAME: Canonical name
  105. * @GST_RTCP_SDES_NAME: User name
  106. * @GST_RTCP_SDES_EMAIL: User's electronic mail address
  107. * @GST_RTCP_SDES_PHONE: User's phone number
  108. * @GST_RTCP_SDES_LOC: Geographic user location
  109. * @GST_RTCP_SDES_TOOL: Name of application or tool
  110. * @GST_RTCP_SDES_NOTE: Notice about the source
  111. * @GST_RTCP_SDES_PRIV: Private extensions
  112. *
  113. * Different types of SDES content.
  114. */
  115. typedef enum
  116. {
  117. GST_RTCP_SDES_INVALID = -1,
  118. GST_RTCP_SDES_END = 0,
  119. GST_RTCP_SDES_CNAME = 1,
  120. GST_RTCP_SDES_NAME = 2,
  121. GST_RTCP_SDES_EMAIL = 3,
  122. GST_RTCP_SDES_PHONE = 4,
  123. GST_RTCP_SDES_LOC = 5,
  124. GST_RTCP_SDES_TOOL = 6,
  125. GST_RTCP_SDES_NOTE = 7,
  126. GST_RTCP_SDES_PRIV = 8
  127. } GstRTCPSDESType;
  128. /**
  129. * GST_RTCP_MAX_SDES:
  130. *
  131. * The maximum text length for an SDES item.
  132. */
  133. #define GST_RTCP_MAX_SDES 255
  134. /**
  135. * GST_RTCP_MAX_RB_COUNT:
  136. *
  137. * The maximum amount of Receiver report blocks in RR and SR messages.
  138. */
  139. #define GST_RTCP_MAX_RB_COUNT 31
  140. /**
  141. * GST_RTCP_MAX_SDES_ITEM_COUNT:
  142. *
  143. * The maximum amount of SDES items.
  144. */
  145. #define GST_RTCP_MAX_SDES_ITEM_COUNT 31
  146. /**
  147. * GST_RTCP_MAX_BYE_SSRC_COUNT:
  148. *
  149. * The maximum amount of SSRCs in a BYE packet.
  150. */
  151. #define GST_RTCP_MAX_BYE_SSRC_COUNT 31
  152. /**
  153. * GST_RTCP_VALID_MASK:
  154. *
  155. * Mask for version, padding bit and packet type pair
  156. */
  157. #define GST_RTCP_VALID_MASK (0xc000 | 0x2000 | 0xfe)
  158. /**
  159. * GST_RTCP_REDUCED_SIZE_VALID_MASK:
  160. *
  161. * Mask for version, padding bit and packet type pair allowing reduced size
  162. * packets, basically it accepts other types than RR and SR
  163. */
  164. #define GST_RTCP_REDUCED_SIZE_VALID_MASK (0xc000 | 0x2000 | 0xf8)
  165. /**
  166. * GST_RTCP_VALID_VALUE:
  167. *
  168. * Valid value for the first two bytes of an RTCP packet after applying
  169. * #GST_RTCP_VALID_MASK to them.
  170. */
  171. #define GST_RTCP_VALID_VALUE ((GST_RTCP_VERSION << 14) | GST_RTCP_TYPE_SR)
  172. typedef struct _GstRTCPBuffer GstRTCPBuffer;
  173. typedef struct _GstRTCPPacket GstRTCPPacket;
  174. struct _GstRTCPBuffer
  175. {
  176. GstBuffer *buffer;
  177. GstMapInfo map;
  178. };
  179. #define GST_RTCP_BUFFER_INIT { NULL, GST_MAP_INFO_INIT }
  180. /**
  181. * GstRTCPPacket:
  182. * @rtcp: pointer to RTCP buffer
  183. * @offset: offset of packet in buffer data
  184. *
  185. * Data structure that points to a packet at @offset in @buffer.
  186. * The size of the structure is made public to allow stack allocations.
  187. */
  188. struct _GstRTCPPacket
  189. {
  190. GstRTCPBuffer *rtcp;
  191. guint offset;
  192. /*< private >*/
  193. gboolean padding; /* padding field of current packet */
  194. guint8 count; /* count field of current packet */
  195. GstRTCPType type; /* type of current packet */
  196. guint16 length; /* length of current packet in 32-bits words */
  197. guint item_offset; /* current item offset for navigating SDES */
  198. guint item_count; /* current item count */
  199. guint entry_offset; /* current entry offset for navigating SDES items */
  200. };
  201. /* creating buffers */
  202. GstBuffer* gst_rtcp_buffer_new_take_data (gpointer data, guint len);
  203. GstBuffer* gst_rtcp_buffer_new_copy_data (gpointer data, guint len);
  204. gboolean gst_rtcp_buffer_validate_data (guint8 *data, guint len);
  205. gboolean gst_rtcp_buffer_validate (GstBuffer *buffer);
  206. gboolean gst_rtcp_buffer_validate_data_reduced (guint8 *data, guint len);
  207. gboolean gst_rtcp_buffer_validate_reduced (GstBuffer *buffer);
  208. GstBuffer* gst_rtcp_buffer_new (guint mtu);
  209. gboolean gst_rtcp_buffer_map (GstBuffer *buffer, GstMapFlags flags, GstRTCPBuffer *rtcp);
  210. gboolean gst_rtcp_buffer_unmap (GstRTCPBuffer *rtcp);
  211. /* adding/retrieving packets */
  212. guint gst_rtcp_buffer_get_packet_count (GstRTCPBuffer *rtcp);
  213. gboolean gst_rtcp_buffer_get_first_packet (GstRTCPBuffer *rtcp, GstRTCPPacket *packet);
  214. gboolean gst_rtcp_packet_move_to_next (GstRTCPPacket *packet);
  215. gboolean gst_rtcp_buffer_add_packet (GstRTCPBuffer *rtcp, GstRTCPType type,
  216. GstRTCPPacket *packet);
  217. gboolean gst_rtcp_packet_remove (GstRTCPPacket *packet);
  218. /* working with packets */
  219. gboolean gst_rtcp_packet_get_padding (GstRTCPPacket *packet);
  220. guint8 gst_rtcp_packet_get_count (GstRTCPPacket *packet);
  221. GstRTCPType gst_rtcp_packet_get_type (GstRTCPPacket *packet);
  222. guint16 gst_rtcp_packet_get_length (GstRTCPPacket *packet);
  223. /* sender reports */
  224. void gst_rtcp_packet_sr_get_sender_info (GstRTCPPacket *packet, guint32 *ssrc,
  225. guint64 *ntptime, guint32 *rtptime,
  226. guint32 *packet_count, guint32 *octet_count);
  227. void gst_rtcp_packet_sr_set_sender_info (GstRTCPPacket *packet, guint32 ssrc,
  228. guint64 ntptime, guint32 rtptime,
  229. guint32 packet_count, guint32 octet_count);
  230. /* receiver reports */
  231. guint32 gst_rtcp_packet_rr_get_ssrc (GstRTCPPacket *packet);
  232. void gst_rtcp_packet_rr_set_ssrc (GstRTCPPacket *packet, guint32 ssrc);
  233. /* report blocks for SR and RR */
  234. guint gst_rtcp_packet_get_rb_count (GstRTCPPacket *packet);
  235. void gst_rtcp_packet_get_rb (GstRTCPPacket *packet, guint nth, guint32 *ssrc,
  236. guint8 *fractionlost, gint32 *packetslost,
  237. guint32 *exthighestseq, guint32 *jitter,
  238. guint32 *lsr, guint32 *dlsr);
  239. gboolean gst_rtcp_packet_add_rb (GstRTCPPacket *packet, guint32 ssrc,
  240. guint8 fractionlost, gint32 packetslost,
  241. guint32 exthighestseq, guint32 jitter,
  242. guint32 lsr, guint32 dlsr);
  243. void gst_rtcp_packet_set_rb (GstRTCPPacket *packet, guint nth, guint32 ssrc,
  244. guint8 fractionlost, gint32 packetslost,
  245. guint32 exthighestseq, guint32 jitter,
  246. guint32 lsr, guint32 dlsr);
  247. /* source description packet */
  248. guint gst_rtcp_packet_sdes_get_item_count (GstRTCPPacket *packet);
  249. gboolean gst_rtcp_packet_sdes_first_item (GstRTCPPacket *packet);
  250. gboolean gst_rtcp_packet_sdes_next_item (GstRTCPPacket *packet);
  251. guint32 gst_rtcp_packet_sdes_get_ssrc (GstRTCPPacket *packet);
  252. gboolean gst_rtcp_packet_sdes_first_entry (GstRTCPPacket *packet);
  253. gboolean gst_rtcp_packet_sdes_next_entry (GstRTCPPacket *packet);
  254. gboolean gst_rtcp_packet_sdes_get_entry (GstRTCPPacket *packet,
  255. GstRTCPSDESType *type, guint8 *len,
  256. guint8 **data);
  257. gboolean gst_rtcp_packet_sdes_copy_entry (GstRTCPPacket *packet,
  258. GstRTCPSDESType *type, guint8 *len,
  259. guint8 **data);
  260. gboolean gst_rtcp_packet_sdes_add_item (GstRTCPPacket *packet, guint32 ssrc);
  261. gboolean gst_rtcp_packet_sdes_add_entry (GstRTCPPacket *packet, GstRTCPSDESType type,
  262. guint8 len, const guint8 *data);
  263. /* bye packet */
  264. guint gst_rtcp_packet_bye_get_ssrc_count (GstRTCPPacket *packet);
  265. guint32 gst_rtcp_packet_bye_get_nth_ssrc (GstRTCPPacket *packet, guint nth);
  266. gboolean gst_rtcp_packet_bye_add_ssrc (GstRTCPPacket *packet, guint32 ssrc);
  267. gboolean gst_rtcp_packet_bye_add_ssrcs (GstRTCPPacket *packet, guint32 *ssrc, guint len);
  268. guint8 gst_rtcp_packet_bye_get_reason_len (GstRTCPPacket *packet);
  269. gchar* gst_rtcp_packet_bye_get_reason (GstRTCPPacket *packet);
  270. gboolean gst_rtcp_packet_bye_set_reason (GstRTCPPacket *packet, const gchar *reason);
  271. /* feedback packets */
  272. guint32 gst_rtcp_packet_fb_get_sender_ssrc (GstRTCPPacket *packet);
  273. void gst_rtcp_packet_fb_set_sender_ssrc (GstRTCPPacket *packet, guint32 ssrc);
  274. guint32 gst_rtcp_packet_fb_get_media_ssrc (GstRTCPPacket *packet);
  275. void gst_rtcp_packet_fb_set_media_ssrc (GstRTCPPacket *packet, guint32 ssrc);
  276. GstRTCPFBType gst_rtcp_packet_fb_get_type (GstRTCPPacket *packet);
  277. void gst_rtcp_packet_fb_set_type (GstRTCPPacket *packet, GstRTCPFBType type);
  278. guint16 gst_rtcp_packet_fb_get_fci_length (GstRTCPPacket *packet);
  279. gboolean gst_rtcp_packet_fb_set_fci_length (GstRTCPPacket *packet, guint16 wordlen);
  280. guint8 * gst_rtcp_packet_fb_get_fci (GstRTCPPacket *packet);
  281. /* helper functions */
  282. guint64 gst_rtcp_ntp_to_unix (guint64 ntptime);
  283. guint64 gst_rtcp_unix_to_ntp (guint64 unixtime);
  284. const gchar * gst_rtcp_sdes_type_to_name (GstRTCPSDESType type);
  285. GstRTCPSDESType gst_rtcp_sdes_name_to_type (const gchar *name);
  286. G_END_DECLS
  287. #endif /* __GST_RTCPBUFFER_H__ */