Fork me on GitHub
Loading...
Searching...
No Matches
sdp-utils.h
Go to the documentation of this file.
1
15#ifndef JANUS_SDP_UTILS_H
16#define JANUS_SDP_UTILS_H
17
18
19#include <inttypes.h>
20#include <glib.h>
21
22#include "rtp.h"
23#include "refcount.h"
24
26typedef struct janus_sdp {
30 char *o_name;
32 guint64 o_sessid;
34 guint64 o_version;
36 gboolean o_ipv4;
38 char *o_addr;
40 char *s_name;
42 guint64 t_start;
44 guint64 t_stop;
46 gboolean c_ipv4;
48 char *c_addr;
50 GList *attributes;
52 GList *m_lines;
54 volatile gint destroyed;
58
77const char *janus_sdp_mtype_str(janus_sdp_mtype type);
78
102
112void janus_sdp_find_preferred_codec(janus_sdp *sdp, janus_sdp_mtype type, int index, const char **codec);
122void janus_sdp_find_first_codec(janus_sdp *sdp, janus_sdp_mtype type, int index, const char **codec);
128const char *janus_sdp_match_preferred_codec(janus_sdp_mtype type, char *codec);
129
172janus_sdp_mline *janus_sdp_mline_create(janus_sdp_mtype type, guint16 port, const char *proto, janus_sdp_mdirection direction);
196
214janus_sdp_attribute *janus_sdp_attribute_create(const char *name, const char *value, ...) G_GNUC_PRINTF(2, 3);
224
231janus_sdp *janus_sdp_parse(const char *sdp, char *error, size_t errlen);
232
238int janus_sdp_remove_payload_type(janus_sdp *sdp, int index, int pt);
239
243char *janus_sdp_write(janus_sdp *sdp);
244
251janus_sdp *janus_sdp_new(const char *name, const char *address);
252
256
300
325janus_sdp *janus_sdp_generate_offer(const char *name, const char *address, ...);
376int janus_sdp_generate_answer_mline(janus_sdp *offer, janus_sdp *answer, janus_sdp_mline *offered, ...);
377
387int janus_sdp_get_codec_pt(janus_sdp *sdp, int index, const char *codec);
388
399int janus_sdp_get_codec_pt_full(janus_sdp *sdp, int index, const char *codec, const char *profile);
400
406const char *janus_sdp_get_codec_name(janus_sdp *sdp, int index, int pt);
407
411const char *janus_sdp_get_rtpmap_codec(const char *rtpmap);
412
416const char *janus_sdp_get_codec_rtpmap(const char *codec);
417
423const char *janus_sdp_get_fmtp(janus_sdp *sdp, int index, int pt);
424
430char *janus_sdp_get_video_profile(janus_videocodec codec, const char *fmtp);
431
436int janus_sdp_get_opusred_pt(janus_sdp *sdp, int index);
437
438#endif
Reference counter mechanism.
RTP processing (headers)
janus_videocodec
Definition rtp.h:136
void janus_sdp_find_preferred_codec(janus_sdp *sdp, janus_sdp_mtype type, int index, const char **codec)
Helper method to return the preferred audio or video codec in an SDP offer or answer,...
Definition sdp-utils.c:1252
void janus_sdp_destroy(janus_sdp *sdp)
Method to destroy a Janus SDP object.
Definition sdp-utils.c:33
struct janus_sdp_mline janus_sdp_mline
SDP m-line representation.
janus_sdp_attribute void janus_sdp_attribute_destroy(janus_sdp_attribute *attr)
Helper method to free a janus_sdp_attribute instance.
Definition sdp-utils.c:45
int janus_sdp_mline_remove(janus_sdp *sdp, janus_sdp_mtype type)
Helper method to remove the janus_sdp_mline associated to a media type from the SDP.
Definition sdp-utils.c:152
const char * janus_sdp_mdirection_str(janus_sdp_mdirection direction)
Helper method to get the string associated to a janus_sdp_mdirection value.
Definition sdp-utils.c:238
janus_sdp_attribute * janus_sdp_attribute_create(const char *name, const char *value,...) G_GNUC_PRINTF(2
Helper method to quickly create a janus_sdp_attribute instance.
janus_sdp * janus_sdp_parse(const char *sdp, char *error, size_t errlen)
Method to parse an SDP string to a janus_sdp object.
Definition sdp-utils.c:298
janus_sdp_mline * janus_sdp_mline_find(janus_sdp *sdp, janus_sdp_mtype type)
Helper method to get the janus_sdp_mline associated to a media type.
Definition sdp-utils.c:126
int janus_sdp_remove_payload_type(janus_sdp *sdp, int index, int pt)
Helper method to quickly remove all traces (m-line, rtpmap, fmtp, etc.) of a payload type.
Definition sdp-utils.c:682
int janus_sdp_attribute_add_to_mline(janus_sdp_mline *mline, janus_sdp_attribute *attr)
Helper method to add an attribute to a media line.
Definition sdp-utils.c:190
const char * janus_sdp_get_codec_name(janus_sdp *sdp, int index, int pt)
Helper to get the codec name associated to a specific payload type in an m-line.
Definition sdp-utils.c:875
janus_sdp_mline * janus_sdp_mline_find_by_index(janus_sdp *sdp, int index)
Helper method to get the janus_sdp_mline by its index.
Definition sdp-utils.c:139
const char * janus_sdp_oa_type_str(janus_sdp_oa_type type)
Definition sdp-utils.c:256
const char * janus_sdp_mtype_str(janus_sdp_mtype type)
Helper method to get the string associated to a janus_sdp_mtype value.
Definition sdp-utils.c:209
const char * janus_sdp_match_preferred_codec(janus_sdp_mtype type, char *codec)
Helper method to match a codec to one of the preferred codecs.
Definition sdp-utils.c:1319
int janus_sdp_generate_answer_mline(janus_sdp *offer, janus_sdp *answer, janus_sdp_mline *offered,...)
Method to respond to a single m-line in an offer, using the same variable arguments janus_sdp_generat...
Definition sdp-utils.c:1915
int janus_sdp_get_codec_pt_full(janus_sdp *sdp, int index, const char *codec, const char *profile)
Helper to get the payload type associated to a specific codec, in an m-line, taking into account a co...
Definition sdp-utils.c:717
struct janus_sdp_attribute janus_sdp_attribute
SDP a= attribute representation.
janus_sdp * janus_sdp_generate_offer(const char *name, const char *address,...)
Method to generate a janus_sdp offer, using variable arguments to dictate what to negotiate (e....
Definition sdp-utils.c:1360
const char * janus_sdp_get_fmtp(janus_sdp *sdp, int index, int pt)
Helper to get the fmtp associated to a specific payload type.
Definition sdp-utils.c:1024
struct janus_sdp janus_sdp
Janus SDP internal object representation.
janus_sdp_mtype janus_sdp_parse_mtype(const char *type)
Helper method to get a janus_sdp_mtype from a string.
Definition sdp-utils.c:197
int janus_sdp_generate_offer_mline(janus_sdp *offer,...)
Method to add a single m-line to a new offer, using the same variable arguments janus_sdp_generate_of...
Definition sdp-utils.c:1574
janus_sdp_mdirection
Helper enumeration to quickly identify m-line directions.
Definition sdp-utils.h:80
@ JANUS_SDP_SENDONLY
sendonly
Definition sdp-utils.h:86
@ JANUS_SDP_RECVONLY
recvonly
Definition sdp-utils.h:88
@ JANUS_SDP_INVALID
invalid direction (when parsing)
Definition sdp-utils.h:92
@ JANUS_SDP_DEFAULT
default=sendrecv
Definition sdp-utils.h:82
@ JANUS_SDP_SENDRECV
sendrecv
Definition sdp-utils.h:84
@ JANUS_SDP_INACTIVE
inactive
Definition sdp-utils.h:90
janus_sdp_mline * janus_sdp_mline_create(janus_sdp_mtype type, guint16 port, const char *proto, janus_sdp_mdirection direction)
Helper method to quickly create a janus_sdp_mline instance.
Definition sdp-utils.c:109
janus_sdp * janus_sdp_new(const char *name, const char *address)
Method to quickly generate a janus_sdp instance from a few selected fields.
Definition sdp-utils.c:1335
janus_sdp_mtype
Helper enumeration to quickly identify m-line media types.
Definition sdp-utils.h:60
@ JANUS_SDP_APPLICATION
m=application
Definition sdp-utils.h:66
@ JANUS_SDP_VIDEO
m=video
Definition sdp-utils.h:64
@ JANUS_SDP_OTHER
m=whatever (we don't care, unsupported)
Definition sdp-utils.h:68
@ JANUS_SDP_AUDIO
m=audio
Definition sdp-utils.h:62
janus_sdp_oa_type
Definition sdp-utils.h:257
@ JANUS_SDP_OA_EXTENSIONS
When generating an offer (this is ignored for answers), negotiate these extensions: needs a hashtable...
Definition sdp-utils.h:274
@ JANUS_SDP_OA_ACCEPT_EXTMAP
When generating an answer (this is ignored for offers), accept this extension (by default,...
Definition sdp-utils.h:276
@ JANUS_SDP_OA_DONE
MUST be used as the last argument in janus_sdp_generate_offer, janus_sdp_generate_offer_mline and jan...
Definition sdp-utils.h:297
@ JANUS_SDP_OA_MID
When generating an offer automatically, use this mid (depends on value that follows,...
Definition sdp-utils.h:265
@ JANUS_SDP_OA_VIDEO_RTCPFB_DEFAULTS
When generating an offer or answer automatically, do or do not add the rtcpfb attributes we typically...
Definition sdp-utils.h:293
@ JANUS_SDP_OA_FMTP
When generating an offer or answer automatically, add this custom fmtp string.
Definition sdp-utils.h:281
@ JANUS_SDP_OA_ENABLED
Whether we should enable a specific m-line when offering/answering (depends on what follows,...
Definition sdp-utils.h:261
@ JANUS_SDP_OA_EXTENSION
When generating an offer (this is ignored for answers), negotiate this extension: needs two arguments...
Definition sdp-utils.h:271
@ JANUS_SDP_OA_DIRECTION
When generating an offer or answer automatically, use this direction for media (depends on value that...
Definition sdp-utils.h:263
@ JANUS_SDP_OA_ACCEPT_OPUSRED
When generating an answer (this is ignored for offers), accept opus/red if offered.
Definition sdp-utils.h:287
@ JANUS_SDP_OA_PT
When generating an offer (this is ignored for answers), use this payload type (depends on value that ...
Definition sdp-utils.h:278
@ JANUS_SDP_OA_MLINE
Add a new m-line of the specific kind (used as a separator for audio, video and data details passed t...
Definition sdp-utils.h:259
@ JANUS_SDP_OA_H264_PROFILE
When generating an offer or answer automatically, use this profile for H.264 (depends on value that f...
Definition sdp-utils.h:291
@ JANUS_SDP_OA_DATA_LEGACY
When generating an offer (this is ignored for answers), use the old "DTLS/SCTP" instead of the new "U...
Definition sdp-utils.h:295
@ JANUS_SDP_OA_OPUSRED_PT
When generating an offer (this is ignored for answers), use this payload type for RED/Opus (depends o...
Definition sdp-utils.h:285
@ JANUS_SDP_OA_VP9_PROFILE
When generating an offer or answer automatically, use this profile for VP9 (depends on value that fol...
Definition sdp-utils.h:289
@ JANUS_SDP_OA_MSID
When generating an offer or answer automatically, use this msid (depends on the two strings that foll...
Definition sdp-utils.h:267
@ JANUS_SDP_OA_AUDIO_DTMF
When generating an offer or answer automatically, do or do not negotiate telephone events (FIXME tele...
Definition sdp-utils.h:283
@ JANUS_SDP_OA_CODEC
When generating an offer or answer automatically, use this codec (depends on value that follows,...
Definition sdp-utils.h:269
janus_sdp * janus_sdp_generate_answer(janus_sdp *offer)
Method to generate a janus_sdp answer to a provided janus_sdp offer. Notice that this doesn't address...
Definition sdp-utils.c:1856
const char * janus_sdp_get_rtpmap_codec(const char *rtpmap)
Helper to get the codec name associated to a specific rtpmap.
Definition sdp-utils.c:945
char * janus_sdp_get_video_profile(janus_videocodec codec, const char *fmtp)
Helper to extract the H.264 or VP9 profile from a fmtp string.
Definition sdp-utils.c:1057
void janus_sdp_mline_destroy(janus_sdp_mline *mline)
Helper method to free a janus_sdp_mline instance.
Definition sdp-utils.c:39
void janus_sdp_find_first_codec(janus_sdp *sdp, janus_sdp_mtype type, int index, const char **codec)
Helper method to return the first audio or video codec in an SDP offer or answer, (no matter whether ...
Definition sdp-utils.c:1284
int janus_sdp_get_opusred_pt(janus_sdp *sdp, int index)
Helper to get the opus/red payload type from an SDP, if present.
Definition sdp-utils.c:1088
janus_sdp_mdirection janus_sdp_parse_mdirection(const char *direction)
Helper method to get a janus_sdp_mdirection from a string.
Definition sdp-utils.c:224
const char * janus_sdp_get_codec_rtpmap(const char *codec)
Helper to get the rtpmap associated to a specific codec.
Definition sdp-utils.c:986
int janus_sdp_get_codec_pt(janus_sdp *sdp, int index, const char *codec)
Helper to get the payload type associated to a specific codec in an m-line.
Definition sdp-utils.c:713
char * janus_sdp_write(janus_sdp *sdp)
Method to serialize a janus_sdp object to an SDP string.
Definition sdp-utils.c:1121
Definition refcount.h:78
SDP a= attribute representation.
Definition sdp-utils.h:198
janus_sdp_mdirection direction
Attribute direction (e.g., for extmap)
Definition sdp-utils.h:204
char * value
Attribute value.
Definition sdp-utils.h:202
volatile gint destroyed
Atomic flag to check if this instance has been destroyed.
Definition sdp-utils.h:206
char * name
Attribute name.
Definition sdp-utils.h:200
janus_refcount ref
Reference counter for this instance.
Definition sdp-utils.h:208
SDP m-line representation.
Definition sdp-utils.h:131
gboolean c_ipv4
Media c= protocol.
Definition sdp-utils.h:147
guint16 port
Media port.
Definition sdp-utils.h:139
uint32_t b_value
Media b= value.
Definition sdp-utils.h:153
janus_sdp_mtype type
Media type as a janus_sdp_mtype enumerator.
Definition sdp-utils.h:135
char * type_str
Media type (string)
Definition sdp-utils.h:137
GList * fmts
List of formats.
Definition sdp-utils.h:143
int index
Media index in the SDP.
Definition sdp-utils.h:133
janus_refcount ref
Reference counter for this instance.
Definition sdp-utils.h:161
volatile gint destroyed
Atomic flag to check if this instance has been destroyed.
Definition sdp-utils.h:159
char * b_name
Media b= type.
Definition sdp-utils.h:151
GList * ptypes
List of payload types.
Definition sdp-utils.h:145
char * proto
Media protocol.
Definition sdp-utils.h:141
char * c_addr
Media c= address.
Definition sdp-utils.h:149
janus_sdp_mdirection direction
Media direction.
Definition sdp-utils.h:155
GList * attributes
List of m-line attributes.
Definition sdp-utils.h:157
Janus SDP internal object representation.
Definition sdp-utils.h:26
gboolean o_ipv4
o= protocol
Definition sdp-utils.h:36
guint64 o_sessid
o= session ID
Definition sdp-utils.h:32
char * o_name
o= name
Definition sdp-utils.h:30
guint64 t_start
t= start
Definition sdp-utils.h:42
volatile gint destroyed
Atomic flag to check if this instance has been destroyed.
Definition sdp-utils.h:54
guint64 t_stop
t= stop
Definition sdp-utils.h:44
char * c_addr
c= address (not rendered for WebRTC usage)
Definition sdp-utils.h:48
janus_refcount ref
Reference counter for this instance.
Definition sdp-utils.h:56
int version
v=
Definition sdp-utils.h:28
gboolean c_ipv4
c= protocol (not rendered for WebRTC usage)
Definition sdp-utils.h:46
GList * attributes
List of global a= attributes.
Definition sdp-utils.h:50
char * o_addr
o= address
Definition sdp-utils.h:38
GList * m_lines
List of m= m-lines.
Definition sdp-utils.h:52
char * s_name
s=
Definition sdp-utils.h:40
guint64 o_version
o= version
Definition sdp-utils.h:34