gstsdpmessage.h 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520
  1. /* GStreamer
  2. * Copyright (C) <2005,2006> 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. /*
  20. * Unless otherwise indicated, Source Code is licensed under MIT license.
  21. * See further explanation attached in License Statement (distributed in the file
  22. * LICENSE).
  23. *
  24. * Permission is hereby granted, free of charge, to any person obtaining a copy of
  25. * this software and associated documentation files (the "Software"), to deal in
  26. * the Software without restriction, including without limitation the rights to
  27. * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
  28. * of the Software, and to permit persons to whom the Software is furnished to do
  29. * so, subject to the following conditions:
  30. *
  31. * The above copyright notice and this permission notice shall be included in all
  32. * copies or substantial portions of the Software.
  33. *
  34. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  35. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  36. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  37. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  38. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  39. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  40. * SOFTWARE.
  41. */
  42. #ifndef __GST_SDP_MESSAGE_H__
  43. #define __GST_SDP_MESSAGE_H__
  44. #include "gstmikey.h"
  45. #include <glib.h>
  46. #include <gst/gst.h>
  47. #include <gst/sdp/gstsdp.h>
  48. G_BEGIN_DECLS
  49. /**
  50. * GstSDPOrigin:
  51. * @username: the user's login on the originating host, or it is "-"
  52. * if the originating host does not support the concept of user ids.
  53. * @sess_id: is a numeric string such that the tuple of @username, @sess_id,
  54. * @nettype, @addrtype and @addr form a globally unique identifier for the
  55. * session.
  56. * @sess_version: a version number for this announcement
  57. * @nettype: the type of network. "IN" is defined to have the meaning
  58. * "Internet".
  59. * @addrtype: the type of @addr.
  60. * @addr: the globally unique address of the machine from which the session was
  61. * created.
  62. *
  63. * The contents of the SDP "o=" field which gives the originator of the session
  64. * (their username and the address of the user's host) plus a session id and
  65. * session version number.
  66. */
  67. typedef struct {
  68. gchar *username;
  69. gchar *sess_id;
  70. gchar *sess_version;
  71. gchar *nettype;
  72. gchar *addrtype;
  73. gchar *addr;
  74. } GstSDPOrigin;
  75. /**
  76. * GstSDPConnection:
  77. * @nettype: the type of network. "IN" is defined to have the meaning
  78. * "Internet".
  79. * @addrtype: the type of @address.
  80. * @address: the address
  81. * @ttl: the time to live of the address
  82. * @addr_number: the number of layers
  83. *
  84. * The contents of the SDP "c=" field which contains connection data.
  85. */
  86. typedef struct {
  87. gchar *nettype;
  88. gchar *addrtype;
  89. gchar *address;
  90. guint ttl;
  91. guint addr_number;
  92. } GstSDPConnection;
  93. GstSDPResult gst_sdp_connection_set (GstSDPConnection *conn,
  94. const gchar *nettype,
  95. const gchar *addrtype,
  96. const gchar *address,
  97. guint ttl, guint addr_number);
  98. GstSDPResult gst_sdp_connection_clear (GstSDPConnection *conn);
  99. /**
  100. * GST_SDP_BWTYPE_CT:
  101. *
  102. * The Conference Total bandwidth modifier.
  103. */
  104. #define GST_SDP_BWTYPE_CT "CT"
  105. /**
  106. * GST_SDP_BWTYPE_AS:
  107. *
  108. * The Application-Specific Maximum bandwidth modifier.
  109. */
  110. #define GST_SDP_BWTYPE_AS "AS"
  111. /**
  112. * GST_SDP_BWTYPE_EXT_PREFIX:
  113. *
  114. * The extension prefix bandwidth modifier.
  115. */
  116. #define GST_SDP_BWTYPE_EXT_PREFIX "X-"
  117. /**
  118. * GST_SDP_BWTYPE_RS:
  119. *
  120. * RTCP bandwidth allocated to active data senders (RFC 3556).
  121. */
  122. #define GST_SDP_BWTYPE_RS "RS"
  123. /**
  124. * GST_SDP_BWTYPE_RR:
  125. *
  126. * RTCP bandwidth allocated to data receivers (RFC 3556).
  127. */
  128. #define GST_SDP_BWTYPE_RR "RR"
  129. /**
  130. * GST_SDP_BWTYPE_TIAS:
  131. *
  132. * Transport Independent Application Specific Maximum bandwidth (RFC 3890).
  133. */
  134. #define GST_SDP_BWTYPE_TIAS "TIAS"
  135. /**
  136. * GstSDPBandwidth:
  137. * @bwtype: the bandwidth modifier type
  138. * @bandwidth: the bandwidth in kilobits per second
  139. *
  140. * The contents of the SDP "b=" field which specifies the proposed bandwidth to
  141. * be used by the session or media.
  142. */
  143. typedef struct {
  144. gchar *bwtype;
  145. guint bandwidth;
  146. } GstSDPBandwidth;
  147. GstSDPResult gst_sdp_bandwidth_set (GstSDPBandwidth *bw, const gchar *bwtype,
  148. guint bandwidth);
  149. GstSDPResult gst_sdp_bandwidth_clear (GstSDPBandwidth *bw);
  150. /**
  151. * GstSDPTime:
  152. * @start: start time for the conference. The value is the decimal
  153. * representation of Network Time Protocol (NTP) time values in seconds
  154. * @stop: stop time for the conference. The value is the decimal
  155. * representation of Network Time Protocol (NTP) time values in seconds
  156. * @repeat: repeat times for a session
  157. *
  158. * The contents of the SDP "t=" field which specify the start and stop times for
  159. * a conference session.
  160. */
  161. typedef struct {
  162. gchar *start;
  163. gchar *stop;
  164. GArray *repeat;
  165. } GstSDPTime;
  166. GstSDPResult gst_sdp_time_set (GstSDPTime *t, const gchar *start,
  167. const gchar *stop, const gchar **repeat);
  168. GstSDPResult gst_sdp_time_clear (GstSDPTime *t);
  169. /**
  170. * GstSDPZone:
  171. * @time: the NTP time that a time zone adjustment happens
  172. * @typed_time: the offset from the time when the session was first scheduled
  173. *
  174. * The contents of the SDP "z=" field which allows the sender to
  175. * specify a list of time zone adjustments and offsets from the base
  176. * time.
  177. */
  178. typedef struct {
  179. gchar *time;
  180. gchar *typed_time;
  181. } GstSDPZone;
  182. GstSDPResult gst_sdp_zone_set (GstSDPZone *zone, const gchar *adj_time,
  183. const gchar *typed_time);
  184. GstSDPResult gst_sdp_zone_clear (GstSDPZone *zone);
  185. /**
  186. * GstSDPKey:
  187. * @type: the encryption type
  188. * @data: the encryption data
  189. *
  190. * The contents of the SDP "k=" field which is used to convey encryption
  191. * keys.
  192. */
  193. typedef struct {
  194. gchar *type;
  195. gchar *data;
  196. } GstSDPKey;
  197. /**
  198. * GstSDPAttribute:
  199. * @key: the attribute key
  200. * @value: the attribute value or NULL when it was a property attribute
  201. *
  202. * The contents of the SDP "a=" field which contains a key/value pair.
  203. */
  204. typedef struct {
  205. gchar *key;
  206. gchar *value;
  207. } GstSDPAttribute;
  208. GstSDPResult gst_sdp_attribute_set (GstSDPAttribute *attr, const gchar *key,
  209. const gchar *value);
  210. GstSDPResult gst_sdp_attribute_clear (GstSDPAttribute *attr);
  211. /**
  212. * GstSDPMedia:
  213. * @media: the media type
  214. * @port: the transport port to which the media stream will be sent
  215. * @num_ports: the number of ports or -1 if only one port was specified
  216. * @proto: the transport protocol
  217. * @fmts: an array of #gchar formats
  218. * @information: the media title
  219. * @connections: array of #GstSDPConnection with media connection information
  220. * @bandwidths: array of #GstSDPBandwidth with media bandwidth information
  221. * @key: the encryption key
  222. * @attributes: array of #GstSDPAttribute with the additional media attributes
  223. *
  224. * The contents of the SDP "m=" field with all related fields.
  225. */
  226. typedef struct {
  227. gchar *media;
  228. guint port;
  229. guint num_ports;
  230. gchar *proto;
  231. GArray *fmts;
  232. gchar *information;
  233. GArray *connections;
  234. GArray *bandwidths;
  235. GstSDPKey key;
  236. GArray *attributes;
  237. } GstSDPMedia;
  238. /**
  239. * GstSDPMessage:
  240. * @version: the protocol version
  241. * @origin: owner/creator and session identifier
  242. * @session_name: session name
  243. * @information: session information
  244. * @uri: URI of description
  245. * @emails: array of #gchar with email addresses
  246. * @phones: array of #gchar with phone numbers
  247. * @connection: connection information for the session
  248. * @bandwidths: array of #GstSDPBandwidth with bandwidth information
  249. * @times: array of #GstSDPTime with time descriptions
  250. * @zones: array of #GstSDPZone with time zone adjustments
  251. * @key: encryption key
  252. * @attributes: array of #GstSDPAttribute with session attributes
  253. * @medias: array of #GstSDPMedia with media descriptions
  254. *
  255. * The contents of the SDP message.
  256. */
  257. typedef struct {
  258. gchar *version;
  259. GstSDPOrigin origin;
  260. gchar *session_name;
  261. gchar *information;
  262. gchar *uri;
  263. GArray *emails;
  264. GArray *phones;
  265. GstSDPConnection connection;
  266. GArray *bandwidths;
  267. GArray *times;
  268. GArray *zones;
  269. GstSDPKey key;
  270. GArray *attributes;
  271. GArray *medias;
  272. } GstSDPMessage;
  273. GType gst_sdp_message_get_type (void);
  274. #define GST_TYPE_SDP_MESSAGE (gst_sdp_message_get_type())
  275. #define GST_SDP_MESSAGE_CAST(object) ((GstSDPMessage *)(object))
  276. #define GST_SDP_MESSAGE(object) (GST_SDP_MESSAGE_CAST(object))
  277. /* Session descriptions */
  278. GstSDPResult gst_sdp_message_new (GstSDPMessage **msg);
  279. GstSDPResult gst_sdp_message_init (GstSDPMessage *msg);
  280. GstSDPResult gst_sdp_message_uninit (GstSDPMessage *msg);
  281. GstSDPResult gst_sdp_message_free (GstSDPMessage *msg);
  282. GstSDPResult gst_sdp_message_copy (const GstSDPMessage *msg, GstSDPMessage **copy);
  283. GstSDPResult gst_sdp_message_parse_buffer (const guint8 *data, guint size, GstSDPMessage *msg);
  284. gchar* gst_sdp_message_as_text (const GstSDPMessage *msg);
  285. /* convert from/to uri */
  286. GstSDPResult gst_sdp_message_parse_uri (const gchar *uri, GstSDPMessage *msg);
  287. gchar* gst_sdp_message_as_uri (const gchar *scheme, const GstSDPMessage *msg);
  288. /* utils */
  289. gboolean gst_sdp_address_is_multicast (const gchar *nettype, const gchar *addrtype,
  290. const gchar *addr);
  291. /* v=.. */
  292. const gchar* gst_sdp_message_get_version (const GstSDPMessage *msg);
  293. GstSDPResult gst_sdp_message_set_version (GstSDPMessage *msg, const gchar *version);
  294. /* o=<username> <sess-id> <sess-version> <nettype> <addrtype> <unicast-address> */
  295. const GstSDPOrigin* gst_sdp_message_get_origin (const GstSDPMessage *msg);
  296. GstSDPResult gst_sdp_message_set_origin (GstSDPMessage *msg, const gchar *username,
  297. const gchar *sess_id, const gchar *sess_version,
  298. const gchar *nettype, const gchar *addrtype,
  299. const gchar *addr);
  300. /* s=<session name> */
  301. const gchar* gst_sdp_message_get_session_name (const GstSDPMessage *msg);
  302. GstSDPResult gst_sdp_message_set_session_name (GstSDPMessage *msg, const gchar *session_name);
  303. /* i=<session description> */
  304. const gchar* gst_sdp_message_get_information (const GstSDPMessage *msg);
  305. GstSDPResult gst_sdp_message_set_information (GstSDPMessage *msg, const gchar *information);
  306. /* u=<uri> */
  307. const gchar* gst_sdp_message_get_uri (const GstSDPMessage *msg);
  308. GstSDPResult gst_sdp_message_set_uri (GstSDPMessage *msg, const gchar *uri);
  309. /* e=<email-address> */
  310. guint gst_sdp_message_emails_len (const GstSDPMessage *msg);
  311. const gchar* gst_sdp_message_get_email (const GstSDPMessage *msg, guint idx);
  312. GstSDPResult gst_sdp_message_insert_email (GstSDPMessage *msg, gint idx,
  313. const gchar *email);
  314. GstSDPResult gst_sdp_message_replace_email (GstSDPMessage *msg, guint idx,
  315. const gchar *email);
  316. GstSDPResult gst_sdp_message_remove_email (GstSDPMessage *msg, guint idx);
  317. GstSDPResult gst_sdp_message_add_email (GstSDPMessage *msg, const gchar *email);
  318. /* p=<phone-number> */
  319. guint gst_sdp_message_phones_len (const GstSDPMessage *msg);
  320. const gchar* gst_sdp_message_get_phone (const GstSDPMessage *msg, guint idx);
  321. GstSDPResult gst_sdp_message_insert_phone (GstSDPMessage *msg, gint idx,
  322. const gchar *phone);
  323. GstSDPResult gst_sdp_message_replace_phone (GstSDPMessage *msg, guint idx,
  324. const gchar *phone);
  325. GstSDPResult gst_sdp_message_remove_phone (GstSDPMessage *msg, guint idx);
  326. GstSDPResult gst_sdp_message_add_phone (GstSDPMessage *msg, const gchar *phone);
  327. /* c=<nettype> <addrtype> <connection-address>[/<ttl>][/<number of addresses>] */
  328. const GstSDPConnection* gst_sdp_message_get_connection (const GstSDPMessage *msg);
  329. GstSDPResult gst_sdp_message_set_connection (GstSDPMessage *msg, const gchar *nettype,
  330. const gchar *addrtype, const gchar *address,
  331. guint ttl, guint addr_number);
  332. /* b=<bwtype>:<bandwidth> */
  333. guint gst_sdp_message_bandwidths_len (const GstSDPMessage *msg);
  334. const GstSDPBandwidth* gst_sdp_message_get_bandwidth (const GstSDPMessage *msg, guint idx);
  335. GstSDPResult gst_sdp_message_insert_bandwidth (GstSDPMessage * msg, gint idx,
  336. GstSDPBandwidth * bw);
  337. GstSDPResult gst_sdp_message_replace_bandwidth (GstSDPMessage * msg, guint idx,
  338. GstSDPBandwidth * bw);
  339. GstSDPResult gst_sdp_message_remove_bandwidth (GstSDPMessage * msg, guint idx);
  340. GstSDPResult gst_sdp_message_add_bandwidth (GstSDPMessage *msg, const gchar *bwtype,
  341. guint bandwidth);
  342. /* t=<start-time> <stop-time> and
  343. * r=<repeat interval> <active duration> <offsets from start-time> */
  344. guint gst_sdp_message_times_len (const GstSDPMessage *msg);
  345. const GstSDPTime* gst_sdp_message_get_time (const GstSDPMessage *msg, guint idx);
  346. GstSDPResult gst_sdp_message_insert_time (GstSDPMessage *msg, gint idx,
  347. GstSDPTime *t);
  348. GstSDPResult gst_sdp_message_replace_time (GstSDPMessage *msg, guint idx,
  349. GstSDPTime *t);
  350. GstSDPResult gst_sdp_message_remove_time (GstSDPMessage *msg, guint idx);
  351. GstSDPResult gst_sdp_message_add_time (GstSDPMessage *msg, const gchar *start,
  352. const gchar *stop, const gchar **repeat);
  353. /* z=<adjustment time> <offset> <adjustment time> <offset> .... */
  354. guint gst_sdp_message_zones_len (const GstSDPMessage *msg);
  355. const GstSDPZone* gst_sdp_message_get_zone (const GstSDPMessage *msg, guint idx);
  356. GstSDPResult gst_sdp_message_insert_zone (GstSDPMessage *msg, gint idx,
  357. GstSDPZone *zone);
  358. GstSDPResult gst_sdp_message_replace_zone (GstSDPMessage *msg, guint idx,
  359. GstSDPZone *zone);
  360. GstSDPResult gst_sdp_message_remove_zone (GstSDPMessage *msg, guint idx);
  361. GstSDPResult gst_sdp_message_add_zone (GstSDPMessage *msg, const gchar *adj_time,
  362. const gchar *typed_time);
  363. /* k=<method>[:<encryption key>] */
  364. const GstSDPKey* gst_sdp_message_get_key (const GstSDPMessage *msg);
  365. GstSDPResult gst_sdp_message_set_key (GstSDPMessage *msg, const gchar *type,
  366. const gchar *data);
  367. /* a=... */
  368. guint gst_sdp_message_attributes_len (const GstSDPMessage *msg);
  369. const GstSDPAttribute* gst_sdp_message_get_attribute (const GstSDPMessage *msg, guint idx);
  370. const gchar* gst_sdp_message_get_attribute_val (const GstSDPMessage *msg,
  371. const gchar *key);
  372. const gchar* gst_sdp_message_get_attribute_val_n (const GstSDPMessage *msg,
  373. const gchar *key, guint nth);
  374. GstSDPResult gst_sdp_message_insert_attribute (GstSDPMessage *msg, gint idx,
  375. GstSDPAttribute *attr);
  376. GstSDPResult gst_sdp_message_replace_attribute (GstSDPMessage *msg, guint idx,
  377. GstSDPAttribute *attr);
  378. GstSDPResult gst_sdp_message_remove_attribute (GstSDPMessage *msg, guint idx);
  379. GstSDPResult gst_sdp_message_add_attribute (GstSDPMessage *msg, const gchar *key,
  380. const gchar *value);
  381. /* m=.. sections */
  382. guint gst_sdp_message_medias_len (const GstSDPMessage *msg);
  383. const GstSDPMedia* gst_sdp_message_get_media (const GstSDPMessage *msg, guint idx);
  384. GstSDPResult gst_sdp_message_add_media (GstSDPMessage *msg, GstSDPMedia *media);
  385. GstSDPResult gst_sdp_message_dump (const GstSDPMessage *msg);
  386. /* Media descriptions */
  387. GstSDPResult gst_sdp_media_new (GstSDPMedia **media);
  388. GstSDPResult gst_sdp_media_init (GstSDPMedia *media);
  389. GstSDPResult gst_sdp_media_uninit (GstSDPMedia *media);
  390. GstSDPResult gst_sdp_media_free (GstSDPMedia *media);
  391. GstSDPResult gst_sdp_media_copy (const GstSDPMedia *media, GstSDPMedia **copy);
  392. gchar* gst_sdp_media_as_text (const GstSDPMedia *media);
  393. /* m=<media> <port>/<number of ports> <proto> <fmt> ... */
  394. const gchar* gst_sdp_media_get_media (const GstSDPMedia *media);
  395. GstSDPResult gst_sdp_media_set_media (GstSDPMedia *media, const gchar *med);
  396. guint gst_sdp_media_get_port (const GstSDPMedia *media);
  397. guint gst_sdp_media_get_num_ports (const GstSDPMedia *media);
  398. GstSDPResult gst_sdp_media_set_port_info (GstSDPMedia *media, guint port,
  399. guint num_ports);
  400. const gchar* gst_sdp_media_get_proto (const GstSDPMedia *media);
  401. GstSDPResult gst_sdp_media_set_proto (GstSDPMedia *media, const gchar *proto);
  402. guint gst_sdp_media_formats_len (const GstSDPMedia *media);
  403. const gchar* gst_sdp_media_get_format (const GstSDPMedia *media, guint idx);
  404. GstSDPResult gst_sdp_media_insert_format (GstSDPMedia *media, gint idx,
  405. const gchar *format);
  406. GstSDPResult gst_sdp_media_replace_format (GstSDPMedia *media, guint idx,
  407. const gchar *format);
  408. GstSDPResult gst_sdp_media_remove_format (GstSDPMedia *media, guint idx);
  409. GstSDPResult gst_sdp_media_add_format (GstSDPMedia *media, const gchar *format);
  410. /* i=<session description> */
  411. const gchar* gst_sdp_media_get_information (const GstSDPMedia *media);
  412. GstSDPResult gst_sdp_media_set_information (GstSDPMedia *media, const gchar *information);
  413. /* c=<nettype> <addrtype> <connection-address>[/<ttl>][/<number of addresses>] */
  414. guint gst_sdp_media_connections_len (const GstSDPMedia *media);
  415. const GstSDPConnection* gst_sdp_media_get_connection (const GstSDPMedia *media, guint idx);
  416. GstSDPResult gst_sdp_media_insert_connection (GstSDPMedia *media, gint idx,
  417. GstSDPConnection *conn);
  418. GstSDPResult gst_sdp_media_replace_connection (GstSDPMedia *media, guint idx,
  419. GstSDPConnection *conn);
  420. GstSDPResult gst_sdp_media_remove_connection (GstSDPMedia *media, guint idx);
  421. GstSDPResult gst_sdp_media_add_connection (GstSDPMedia *media,
  422. const gchar *nettype,
  423. const gchar *addrtype,
  424. const gchar *address,
  425. guint ttl, guint addr_number);
  426. /* b=<bwtype>:<bandwidth> */
  427. guint gst_sdp_media_bandwidths_len (const GstSDPMedia *media);
  428. const GstSDPBandwidth* gst_sdp_media_get_bandwidth (const GstSDPMedia *media, guint idx);
  429. GstSDPResult gst_sdp_media_insert_bandwidth (GstSDPMedia *media, gint idx,
  430. GstSDPBandwidth *bw);
  431. GstSDPResult gst_sdp_media_replace_bandwidth (GstSDPMedia *media, guint idx,
  432. GstSDPBandwidth *bw);
  433. GstSDPResult gst_sdp_media_remove_bandwidth (GstSDPMedia *media, guint idx);
  434. GstSDPResult gst_sdp_media_add_bandwidth (GstSDPMedia *media, const gchar *bwtype,
  435. guint bandwidth);
  436. /* k=<method>:<encryption key> */
  437. const GstSDPKey* gst_sdp_media_get_key (const GstSDPMedia *media);
  438. GstSDPResult gst_sdp_media_set_key (GstSDPMedia *media, const gchar *type,
  439. const gchar *data);
  440. /* a=... */
  441. guint gst_sdp_media_attributes_len (const GstSDPMedia *media);
  442. const GstSDPAttribute * gst_sdp_media_get_attribute (const GstSDPMedia *media, guint idx);
  443. const gchar* gst_sdp_media_get_attribute_val (const GstSDPMedia *media, const gchar *key);
  444. const gchar* gst_sdp_media_get_attribute_val_n (const GstSDPMedia *media, const gchar *key,
  445. guint nth);
  446. GstSDPResult gst_sdp_media_insert_attribute (GstSDPMedia *media, gint idx,
  447. GstSDPAttribute *attr);
  448. GstSDPResult gst_sdp_media_replace_attribute (GstSDPMedia *media, guint idx,
  449. GstSDPAttribute *attr);
  450. GstSDPResult gst_sdp_media_remove_attribute (GstSDPMedia *media, guint idx);
  451. GstSDPResult gst_sdp_media_add_attribute (GstSDPMedia *media, const gchar *key,
  452. const gchar *value);
  453. GstCaps* gst_sdp_media_get_caps_from_media (const GstSDPMedia *media, gint pt);
  454. GstSDPResult gst_sdp_media_set_media_from_caps (const GstCaps* caps, GstSDPMedia *media);
  455. gchar * gst_sdp_make_keymgmt (const gchar *uri, const gchar *base64);
  456. GstSDPResult gst_sdp_message_parse_keymgmt (const GstSDPMessage *msg, GstMIKEYMessage **mikey);
  457. GstSDPResult gst_sdp_media_parse_keymgmt (const GstSDPMedia *media, GstMIKEYMessage **mikey);
  458. GstSDPResult gst_sdp_message_attributes_to_caps (const GstSDPMessage *msg, GstCaps *caps);
  459. GstSDPResult gst_sdp_media_attributes_to_caps (const GstSDPMedia *media, GstCaps *caps);
  460. #ifdef G_DEFINE_AUTOPTR_CLEANUP_FUNC
  461. G_DEFINE_AUTOPTR_CLEANUP_FUNC(GstSDPMessage, gst_sdp_message_free)
  462. #endif
  463. G_END_DECLS
  464. #endif /* __GST_SDP_MESSAGE_H__ */